experimental block definitions for facilino

This commit is contained in:
Lukas Bachschwell 2017-11-27 12:20:33 +01:00
parent 264fd0a772
commit 1bb01d6dd2
1 changed files with 46 additions and 0 deletions

View File

@ -0,0 +1,46 @@
Blockly.Blocks['show_mouth'] = {
category: 'SimpleExpressions',
colour: '#fbb117',
helpUrl: Facilino.getHelpUrl('show_mouth'),
tags: [],
examples: [],
init: function() {
this.appendDummyInput()
.appendField("showMouth");
this.appendValueInput("Color")
.setCheck(null)
.appendField("Color");
this.setColour("#fbb117");
this.setTooltip("");
}
};
Blockly.Arduino['show_mouth'] = function(block) {
var input_color = Blockly.Arduino.valueToCode(block, 'Color', Blockly.Arduino.ORDER_ATOMIC);
var code='SimpleExpressions.showMouth("+'mouth_name'+", '+color+')';
code+= '\n';
return code;
};
Blockly.Blocks['play_sound'] = {
category: 'SimpleExpressions',
colour: '#fbb117',
helpUrl: Facilino.getHelpUrl('play_sound'),
tags: [],
examples: [],
init: function() {
this.appendDummyInput()
.appendField("play Sound");
this.setColour("#fbb117");
this.setTooltip("");
}
};
Blockly.Arduino['play_sound'] = function(block) {
var input_color = Blockly.Arduino.valueToCode(block, 'Color', Blockly.Arduino.ORDER_ATOMIC);
var code='';
code+= '\n';
return code;
};