48 lines
1.5 KiB
JavaScript
48 lines
1.5 KiB
JavaScript
import * as Blockly from 'blockly/core';
|
|
|
|
const COMMUNICATE_HUE = 140;
|
|
|
|
export const serialBT_Init = {
|
|
init: function () {
|
|
this.setColour(COMMUNICATE_HUE);
|
|
this.appendValueInput("CONTENT", String)
|
|
.appendField(Blockly.Msg.MIXLY_SERIALBT_INIT)
|
|
.setCheck(String);
|
|
this.setPreviousStatement(true, null);
|
|
this.setNextStatement(true, null);
|
|
this.setInputsInline(true);
|
|
this.setTooltip(Blockly.Msg.MIXLY_TOOLTIP_SERIAL_BEGIN);
|
|
}
|
|
};
|
|
|
|
export const serialBT_available = {
|
|
init: function () {
|
|
this.setColour(COMMUNICATE_HUE);
|
|
this.appendDummyInput()
|
|
.appendField(Blockly.Msg.MIXLY_SERIALBT_AVAILABLE);
|
|
this.setOutput(true, Boolean);
|
|
this.setTooltip(Blockly.Msg.MIXLY_TOOLTIP_BLOCKGROUP_SERIAL_AVAILABLE);
|
|
}
|
|
};
|
|
|
|
export const serialBT_read = {
|
|
init: function () {
|
|
this.setColour(COMMUNICATE_HUE);
|
|
this.appendDummyInput()
|
|
.appendField(Blockly.Msg.MIXLY_SERIALBT_READ);
|
|
this.setOutput(true, Boolean);
|
|
this.setTooltip(Blockly.Msg.MIXLY_TOOLTIP_BLOCKGROUP_SERIAL_AVAILABLE);
|
|
|
|
}
|
|
};
|
|
|
|
export const serialBT_write = {
|
|
init: function () {
|
|
this.setColour(COMMUNICATE_HUE);
|
|
this.appendValueInput("CONTENT", String)
|
|
.appendField(Blockly.Msg.MIXLY_SERIALBT_WRITE);
|
|
this.setPreviousStatement(true, null);
|
|
this.setNextStatement(true, null);
|
|
this.setTooltip(Blockly.Msg.TEXT_WRITE_TOOLTIP);
|
|
}
|
|
}; |