adding example for lars blocks js

This commit is contained in:
Lukas Bachschwell 2017-12-04 11:25:44 +01:00
parent 18169dbe68
commit 5f79536b80
1 changed files with 26 additions and 0 deletions

View File

@ -1,3 +1,29 @@
/*
Blockly.Blocks['espui_prepare_fs'] = {
category: 'ESPUI',
colour: '#3357c7',
helpUrl: Facilino.getHelpUrl('espui'),
tags: ['webinterface'],
examples: ['lol.bly'],
init: function() {
var wifiOptions = [
['No', false],
['Yes', true]
];
this.appendDummyInput()
.appendField('Prepare FileSystem (upload once without other in setup code, then omit)');
}
};
Blockly.Arduino['espui_prepare_fs'] = function(block) {
var wifi_option = block.getFieldValue('wifi_option');
Blockly.Arduino.definitions_['define_espui_h'] = '#include <ESPUI.h>';
Blockly.Arduino.setups_['setup_espui'] = '\n';
Blockly.Arduino.setups_['setup_espui'] += ' ESPUI.prepareFileSystem();\n';
return null;
};
*/
Blockly.Blocks['walk_forward'] = {
category: Facilino.locales.getKey('LANG_CATEGORY_BLOCKS'),
helpUrl: Facilino.getHelpUrl('walk_forward'),