Package com.ardublock.translator.block.Duinoedu

Source Code of com.ardublock.translator.block.Duinoedu.Neopixel_Clear

package com.ardublock.translator.block.Duinoedu;

import com.ardublock.translator.Translator;
import com.ardublock.translator.block.TranslatorBlock;
import com.ardublock.translator.block.exception.SocketNullException;
import com.ardublock.translator.block.exception.SubroutineNotDeclaredException;

public class Neopixel_Clear  extends TranslatorBlock {

  public Neopixel_Clear (Long blockId, Translator translator, String codePrefix, String codeSuffix, String label)
  {
    super(blockId, translator, codePrefix, codeSuffix, label);
  }
 
  //@Override
    public String toCode() throws SocketNullException, SubroutineNotDeclaredException
    {
      String Pin ;

      TranslatorBlock translatorBlock = this.getRequiredTranslatorBlockAtSocket(0);
      Pin = translatorBlock.toCode();
     
     
      String ret = "monRuban_pin"+Pin+".effacerTout()\n";
     
      return codePrefix + ret + codeSuffix;
       
    }
}
TOP

Related Classes of com.ardublock.translator.block.Duinoedu.Neopixel_Clear

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.