-
Notifications
You must be signed in to change notification settings - Fork 293
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #131 from karlTH/master
new block for duinoedu and add anol and digital connector
- Loading branch information
Showing
48 changed files
with
1,412 additions
and
147 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
src/main/java/com/ardublock/translator/block/Duinoedu/A0.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package com.ardublock.translator.block.Duinoedu; | ||
|
||
import com.ardublock.translator.Translator; | ||
import com.ardublock.translator.block.TranslatorBlock; | ||
import com.ardublock.translator.block.exception.SocketNullException; | ||
|
||
public class A0 extends TranslatorBlock | ||
{ | ||
|
||
public A0(Long blockId, Translator translator, String codePrefix, String codeSuffix, String label) { | ||
super(blockId, translator, codePrefix, codeSuffix, label); | ||
} | ||
|
||
@Override | ||
public String toCode() throws SocketNullException { | ||
return codePrefix + "0" + codeSuffix; | ||
} | ||
|
||
} |
19 changes: 19 additions & 0 deletions
19
src/main/java/com/ardublock/translator/block/Duinoedu/A1.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package com.ardublock.translator.block.Duinoedu; | ||
|
||
import com.ardublock.translator.Translator; | ||
import com.ardublock.translator.block.TranslatorBlock; | ||
import com.ardublock.translator.block.exception.SocketNullException; | ||
|
||
public class A1 extends TranslatorBlock | ||
{ | ||
|
||
public A1(Long blockId, Translator translator, String codePrefix, String codeSuffix, String label) { | ||
super(blockId, translator, codePrefix, codeSuffix, label); | ||
} | ||
|
||
@Override | ||
public String toCode() throws SocketNullException { | ||
return codePrefix + "1" + codeSuffix; | ||
} | ||
|
||
} |
19 changes: 19 additions & 0 deletions
19
src/main/java/com/ardublock/translator/block/Duinoedu/A10.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package com.ardublock.translator.block.Duinoedu; | ||
|
||
import com.ardublock.translator.Translator; | ||
import com.ardublock.translator.block.TranslatorBlock; | ||
import com.ardublock.translator.block.exception.SocketNullException; | ||
|
||
public class A10 extends TranslatorBlock | ||
{ | ||
|
||
public A10(Long blockId, Translator translator, String codePrefix, String codeSuffix, String label) { | ||
super(blockId, translator, codePrefix, codeSuffix, label); | ||
} | ||
|
||
@Override | ||
public String toCode() throws SocketNullException { | ||
return codePrefix + "10" + codeSuffix; | ||
} | ||
|
||
} |
19 changes: 19 additions & 0 deletions
19
src/main/java/com/ardublock/translator/block/Duinoedu/A11.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package com.ardublock.translator.block.Duinoedu; | ||
|
||
import com.ardublock.translator.Translator; | ||
import com.ardublock.translator.block.TranslatorBlock; | ||
import com.ardublock.translator.block.exception.SocketNullException; | ||
|
||
public class A11 extends TranslatorBlock | ||
{ | ||
|
||
public A11(Long blockId, Translator translator, String codePrefix, String codeSuffix, String label) { | ||
super(blockId, translator, codePrefix, codeSuffix, label); | ||
} | ||
|
||
@Override | ||
public String toCode() throws SocketNullException { | ||
return codePrefix + "11" + codeSuffix; | ||
} | ||
|
||
} |
19 changes: 19 additions & 0 deletions
19
src/main/java/com/ardublock/translator/block/Duinoedu/A12.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package com.ardublock.translator.block.Duinoedu; | ||
|
||
import com.ardublock.translator.Translator; | ||
import com.ardublock.translator.block.TranslatorBlock; | ||
import com.ardublock.translator.block.exception.SocketNullException; | ||
|
||
public class A12 extends TranslatorBlock | ||
{ | ||
|
||
public A12(Long blockId, Translator translator, String codePrefix, String codeSuffix, String label) { | ||
super(blockId, translator, codePrefix, codeSuffix, label); | ||
} | ||
|
||
@Override | ||
public String toCode() throws SocketNullException { | ||
return codePrefix + "12" + codeSuffix; | ||
} | ||
|
||
} |
19 changes: 19 additions & 0 deletions
19
src/main/java/com/ardublock/translator/block/Duinoedu/A13.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package com.ardublock.translator.block.Duinoedu; | ||
|
||
import com.ardublock.translator.Translator; | ||
import com.ardublock.translator.block.TranslatorBlock; | ||
import com.ardublock.translator.block.exception.SocketNullException; | ||
|
||
public class A13 extends TranslatorBlock | ||
{ | ||
|
||
public A13(Long blockId, Translator translator, String codePrefix, String codeSuffix, String label) { | ||
super(blockId, translator, codePrefix, codeSuffix, label); | ||
} | ||
|
||
@Override | ||
public String toCode() throws SocketNullException { | ||
return codePrefix + "13" + codeSuffix; | ||
} | ||
|
||
} |
19 changes: 19 additions & 0 deletions
19
src/main/java/com/ardublock/translator/block/Duinoedu/A14.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package com.ardublock.translator.block.Duinoedu; | ||
|
||
import com.ardublock.translator.Translator; | ||
import com.ardublock.translator.block.TranslatorBlock; | ||
import com.ardublock.translator.block.exception.SocketNullException; | ||
|
||
public class A14 extends TranslatorBlock | ||
{ | ||
|
||
public A14(Long blockId, Translator translator, String codePrefix, String codeSuffix, String label) { | ||
super(blockId, translator, codePrefix, codeSuffix, label); | ||
} | ||
|
||
@Override | ||
public String toCode() throws SocketNullException { | ||
return codePrefix + "14" + codeSuffix; | ||
} | ||
|
||
} |
19 changes: 19 additions & 0 deletions
19
src/main/java/com/ardublock/translator/block/Duinoedu/A15.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package com.ardublock.translator.block.Duinoedu; | ||
|
||
import com.ardublock.translator.Translator; | ||
import com.ardublock.translator.block.TranslatorBlock; | ||
import com.ardublock.translator.block.exception.SocketNullException; | ||
|
||
public class A15 extends TranslatorBlock | ||
{ | ||
|
||
public A15(Long blockId, Translator translator, String codePrefix, String codeSuffix, String label) { | ||
super(blockId, translator, codePrefix, codeSuffix, label); | ||
} | ||
|
||
@Override | ||
public String toCode() throws SocketNullException { | ||
return codePrefix + "15" + codeSuffix; | ||
} | ||
|
||
} |
19 changes: 19 additions & 0 deletions
19
src/main/java/com/ardublock/translator/block/Duinoedu/A2.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package com.ardublock.translator.block.Duinoedu; | ||
|
||
import com.ardublock.translator.Translator; | ||
import com.ardublock.translator.block.TranslatorBlock; | ||
import com.ardublock.translator.block.exception.SocketNullException; | ||
|
||
public class A2 extends TranslatorBlock | ||
{ | ||
|
||
public A2(Long blockId, Translator translator, String codePrefix, String codeSuffix, String label) { | ||
super(blockId, translator, codePrefix, codeSuffix, label); | ||
} | ||
|
||
@Override | ||
public String toCode() throws SocketNullException { | ||
return codePrefix + "2" + codeSuffix; | ||
} | ||
|
||
} |
19 changes: 19 additions & 0 deletions
19
src/main/java/com/ardublock/translator/block/Duinoedu/A3.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package com.ardublock.translator.block.Duinoedu; | ||
|
||
import com.ardublock.translator.Translator; | ||
import com.ardublock.translator.block.TranslatorBlock; | ||
import com.ardublock.translator.block.exception.SocketNullException; | ||
|
||
public class A3 extends TranslatorBlock | ||
{ | ||
|
||
public A3(Long blockId, Translator translator, String codePrefix, String codeSuffix, String label) { | ||
super(blockId, translator, codePrefix, codeSuffix, label); | ||
} | ||
|
||
@Override | ||
public String toCode() throws SocketNullException { | ||
return codePrefix + "3" + codeSuffix; | ||
} | ||
|
||
} |
19 changes: 19 additions & 0 deletions
19
src/main/java/com/ardublock/translator/block/Duinoedu/A4.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package com.ardublock.translator.block.Duinoedu; | ||
|
||
import com.ardublock.translator.Translator; | ||
import com.ardublock.translator.block.TranslatorBlock; | ||
import com.ardublock.translator.block.exception.SocketNullException; | ||
|
||
public class A4 extends TranslatorBlock | ||
{ | ||
|
||
public A4(Long blockId, Translator translator, String codePrefix, String codeSuffix, String label) { | ||
super(blockId, translator, codePrefix, codeSuffix, label); | ||
} | ||
|
||
@Override | ||
public String toCode() throws SocketNullException { | ||
return codePrefix + "4" + codeSuffix; | ||
} | ||
|
||
} |
19 changes: 19 additions & 0 deletions
19
src/main/java/com/ardublock/translator/block/Duinoedu/A5.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package com.ardublock.translator.block.Duinoedu; | ||
|
||
import com.ardublock.translator.Translator; | ||
import com.ardublock.translator.block.TranslatorBlock; | ||
import com.ardublock.translator.block.exception.SocketNullException; | ||
|
||
public class A5 extends TranslatorBlock | ||
{ | ||
|
||
public A5(Long blockId, Translator translator, String codePrefix, String codeSuffix, String label) { | ||
super(blockId, translator, codePrefix, codeSuffix, label); | ||
} | ||
|
||
@Override | ||
public String toCode() throws SocketNullException { | ||
return codePrefix + "6" + codeSuffix; | ||
} | ||
|
||
} |
19 changes: 19 additions & 0 deletions
19
src/main/java/com/ardublock/translator/block/Duinoedu/A6.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package com.ardublock.translator.block.Duinoedu; | ||
|
||
import com.ardublock.translator.Translator; | ||
import com.ardublock.translator.block.TranslatorBlock; | ||
import com.ardublock.translator.block.exception.SocketNullException; | ||
|
||
public class A6 extends TranslatorBlock | ||
{ | ||
|
||
public A6(Long blockId, Translator translator, String codePrefix, String codeSuffix, String label) { | ||
super(blockId, translator, codePrefix, codeSuffix, label); | ||
} | ||
|
||
@Override | ||
public String toCode() throws SocketNullException { | ||
return codePrefix + "0" + codeSuffix; | ||
} | ||
|
||
} |
19 changes: 19 additions & 0 deletions
19
src/main/java/com/ardublock/translator/block/Duinoedu/A7.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package com.ardublock.translator.block.Duinoedu; | ||
|
||
import com.ardublock.translator.Translator; | ||
import com.ardublock.translator.block.TranslatorBlock; | ||
import com.ardublock.translator.block.exception.SocketNullException; | ||
|
||
public class A7 extends TranslatorBlock | ||
{ | ||
|
||
public A7(Long blockId, Translator translator, String codePrefix, String codeSuffix, String label) { | ||
super(blockId, translator, codePrefix, codeSuffix, label); | ||
} | ||
|
||
@Override | ||
public String toCode() throws SocketNullException { | ||
return codePrefix + "7" + codeSuffix; | ||
} | ||
|
||
} |
19 changes: 19 additions & 0 deletions
19
src/main/java/com/ardublock/translator/block/Duinoedu/A8.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package com.ardublock.translator.block.Duinoedu; | ||
|
||
import com.ardublock.translator.Translator; | ||
import com.ardublock.translator.block.TranslatorBlock; | ||
import com.ardublock.translator.block.exception.SocketNullException; | ||
|
||
public class A8 extends TranslatorBlock | ||
{ | ||
|
||
public A8(Long blockId, Translator translator, String codePrefix, String codeSuffix, String label) { | ||
super(blockId, translator, codePrefix, codeSuffix, label); | ||
} | ||
|
||
@Override | ||
public String toCode() throws SocketNullException { | ||
return codePrefix + "8" + codeSuffix; | ||
} | ||
|
||
} |
19 changes: 19 additions & 0 deletions
19
src/main/java/com/ardublock/translator/block/Duinoedu/A9.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package com.ardublock.translator.block.Duinoedu; | ||
|
||
import com.ardublock.translator.Translator; | ||
import com.ardublock.translator.block.TranslatorBlock; | ||
import com.ardublock.translator.block.exception.SocketNullException; | ||
|
||
public class A9 extends TranslatorBlock | ||
{ | ||
|
||
public A9(Long blockId, Translator translator, String codePrefix, String codeSuffix, String label) { | ||
super(blockId, translator, codePrefix, codeSuffix, label); | ||
} | ||
|
||
@Override | ||
public String toCode() throws SocketNullException { | ||
return codePrefix + "9" + codeSuffix; | ||
} | ||
|
||
} |
19 changes: 19 additions & 0 deletions
19
src/main/java/com/ardublock/translator/block/Duinoedu/D10.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package com.ardublock.translator.block.Duinoedu; | ||
|
||
import com.ardublock.translator.Translator; | ||
import com.ardublock.translator.block.TranslatorBlock; | ||
import com.ardublock.translator.block.exception.SocketNullException; | ||
|
||
public class D10 extends TranslatorBlock | ||
{ | ||
|
||
public D10(Long blockId, Translator translator, String codePrefix, String codeSuffix, String label) { | ||
super(blockId, translator, codePrefix, codeSuffix, label); | ||
} | ||
|
||
@Override | ||
public String toCode() throws SocketNullException { | ||
return codePrefix + "10" + codeSuffix; | ||
} | ||
|
||
} |
Oops, something went wrong.