add first phyphox blocks
This commit is contained in:
parent
bc5cbb6b33
commit
47984fa66c
@ -1,24 +1,25 @@
|
|||||||
import './loops';
|
import "./loops";
|
||||||
import './sensebox';
|
import "./sensebox";
|
||||||
import './logic';
|
import "./logic";
|
||||||
import './sensebox-sensors';
|
import "./sensebox-sensors";
|
||||||
import './sensebox-telegram';
|
import "./sensebox-telegram";
|
||||||
import './sensebox-osem';
|
import "./sensebox-osem";
|
||||||
import './sensebox-web';
|
import "./sensebox-web";
|
||||||
import './sensebox-display';
|
import "./sensebox-display";
|
||||||
import './sensebox-lora';
|
import "./sensebox-lora";
|
||||||
import './sensebox-led';
|
import "./sensebox-led";
|
||||||
import './sensebox-sd';
|
import "./sensebox-ble";
|
||||||
import './mqtt';
|
import "./sensebox-sd";
|
||||||
import './text';
|
import "./mqtt";
|
||||||
import './io';
|
import "./text";
|
||||||
import './audio';
|
import "./io";
|
||||||
import './math';
|
import "./audio";
|
||||||
import './map';
|
import "./math";
|
||||||
import './procedures';
|
import "./map";
|
||||||
import './time';
|
import "./procedures";
|
||||||
import './variables';
|
import "./time";
|
||||||
import './lists';
|
import "./variables";
|
||||||
import './webserver';
|
import "./lists";
|
||||||
|
import "./webserver";
|
||||||
|
|
||||||
import '../helpers/types'
|
import "../helpers/types";
|
||||||
|
60
src/components/Blockly/blocks/sensebox-ble.js
Normal file
60
src/components/Blockly/blocks/sensebox-ble.js
Normal file
@ -0,0 +1,60 @@
|
|||||||
|
import * as Blockly from "blockly";
|
||||||
|
import { getColour } from "../helpers/colour";
|
||||||
|
import { selectedBoard } from "../helpers/board";
|
||||||
|
import * as Types from "../helpers/types";
|
||||||
|
|
||||||
|
Blockly.Blocks["sensebox_phyphox_init"] = {
|
||||||
|
init: function () {
|
||||||
|
this.setColour(getColour().phyphox);
|
||||||
|
this.appendDummyInput()
|
||||||
|
.appendField(Blockly.Msg.sensebox_phyphox_init)
|
||||||
|
.appendField(new Blockly.FieldTextInput("Geräte Name"), "devicename");
|
||||||
|
|
||||||
|
this.setPreviousStatement(true, null);
|
||||||
|
this.setNextStatement(true, null);
|
||||||
|
this.setTooltip(Blockly.Msg.senseBox_led_tooltip);
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
Blockly.Blocks["sensebox_phyphox_experiment"] = {
|
||||||
|
init: function () {
|
||||||
|
this.setColour(getColour().phyphox);
|
||||||
|
this.appendDummyInput()
|
||||||
|
.appendField(Blockly.Msg.sensebox_phyphox_createExperiment)
|
||||||
|
.appendField(
|
||||||
|
new Blockly.FieldTextInput("Experiment Name"),
|
||||||
|
"exeperimentname"
|
||||||
|
);
|
||||||
|
this.appendDummyInput()
|
||||||
|
.appendField(Blockly.Msg.sensebox_phyphox_experimentTitle)
|
||||||
|
.appendField(new Blockly.FieldTextInput("Experiment Title"), "title");
|
||||||
|
this.appendDummyInput()
|
||||||
|
.appendField(Blockly.Msg.sensebox_phyphox_experimentCategory)
|
||||||
|
.appendField(
|
||||||
|
new Blockly.FieldTextInput("senseBox Experiments"),
|
||||||
|
"category"
|
||||||
|
);
|
||||||
|
this.appendDummyInput()
|
||||||
|
.appendField(Blockly.Msg.sensebox_phyphox_experimentDescription)
|
||||||
|
.appendField(
|
||||||
|
new Blockly.FieldTextInput("Experiment Beschreibung"),
|
||||||
|
"description"
|
||||||
|
);
|
||||||
|
this.setPreviousStatement(true, null);
|
||||||
|
this.setNextStatement(true, null);
|
||||||
|
this.setTooltip(Blockly.Msg.senseBox_led_tooltip);
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
Blockly.Blocks["sensebox_phyphox_experiment_send"] = {
|
||||||
|
init: function () {
|
||||||
|
this.setColour(getColour().phyphox);
|
||||||
|
this.appendDummyInput().appendField(
|
||||||
|
Blockly.Msg.sensebox_phyphox_writeValues
|
||||||
|
);
|
||||||
|
|
||||||
|
this.setPreviousStatement(true, null);
|
||||||
|
this.setNextStatement(true, null);
|
||||||
|
this.setTooltip(Blockly.Msg.senseBox_led_tooltip);
|
||||||
|
},
|
||||||
|
};
|
@ -24,13 +24,13 @@
|
|||||||
// More on generating code:
|
// More on generating code:
|
||||||
// https://developers.google.com/blockly/guides/create-custom-blocks/generating-code
|
// https://developers.google.com/blockly/guides/create-custom-blocks/generating-code
|
||||||
|
|
||||||
import * as Blockly from 'blockly/core';
|
import * as Blockly from "blockly/core";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Arduino code generator.
|
* Arduino code generator.
|
||||||
* @type !Blockly.Generator
|
* @type !Blockly.Generator
|
||||||
*/
|
*/
|
||||||
Blockly['Arduino'] = new Blockly.Generator('Arduino');
|
Blockly["Arduino"] = new Blockly.Generator("Arduino");
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* List of illegal variable names.
|
* List of illegal variable names.
|
||||||
@ -39,49 +39,46 @@ Blockly['Arduino'] = new Blockly.Generator('Arduino');
|
|||||||
* accidentally clobbering a built-in object or function.
|
* accidentally clobbering a built-in object or function.
|
||||||
* @private
|
* @private
|
||||||
*/
|
*/
|
||||||
Blockly['Arduino'].addReservedWords(
|
Blockly["Arduino"].addReservedWords(
|
||||||
// http://arduino.cc/en/Reference/HomePage
|
// http://arduino.cc/en/Reference/HomePage
|
||||||
'setup,loop,if,else,for,switch,case,while,' +
|
"setup,loop,if,else,for,switch,case,while," +
|
||||||
'do,break,continue,return,goto,define,include,' +
|
"do,break,continue,return,goto,define,include," +
|
||||||
'HIGH,LOW,INPUT,OUTPUT,INPUT_PULLUP,true,false,' +
|
"HIGH,LOW,INPUT,OUTPUT,INPUT_PULLUP,true,false," +
|
||||||
'interger, constants,floating,point,void,boolean,char,' +
|
"interger, constants,floating,point,void,boolean,char," +
|
||||||
'unsigned,byte,int,word,long,float,double,string,String,array,' +
|
"unsigned,byte,int,word,long,float,double,string,String,array," +
|
||||||
'static, volatile,const,sizeof,pinMode,digitalWrite,digitalRead,' +
|
"static, volatile,const,sizeof,pinMode,digitalWrite,digitalRead," +
|
||||||
'analogReference,analogRead,analogWrite,tone,noTone,shiftOut,shitIn,' +
|
"analogReference,analogRead,analogWrite,tone,noTone,shiftOut,shitIn," +
|
||||||
'pulseIn,millis,micros,delay,delayMicroseconds,min,max,abs,constrain,' +
|
"pulseIn,millis,micros,delay,delayMicroseconds,min,max,abs,constrain," +
|
||||||
'map,pow,sqrt,sin,cos,tan,randomSeed,random,lowByte,highByte,bitRead,' +
|
"map,pow,sqrt,sin,cos,tan,randomSeed,random,lowByte,highByte,bitRead," +
|
||||||
'bitWrite,bitSet,bitClear,ultraSonicDistance,parseDouble,setNeoPixelColor,' +
|
"bitWrite,bitSet,bitClear,ultraSonicDistance,parseDouble,setNeoPixelColor," +
|
||||||
'bit,attachInterrupt,detachInterrupt,interrupts,noInterrupts',
|
"bit,attachInterrupt,detachInterrupt,interrupts,noInterrupts",
|
||||||
'short',
|
"short",
|
||||||
'isBtnPressed'
|
"isBtnPressed"
|
||||||
);
|
);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Order of operation ENUMs.
|
* Order of operation ENUMs.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
Blockly['Arduino'].ORDER_ATOMIC = 0; // 0 "" ...
|
Blockly["Arduino"].ORDER_ATOMIC = 0; // 0 "" ...
|
||||||
Blockly['Arduino'].ORDER_UNARY_POSTFIX = 1; // expr++ expr-- () [] .
|
Blockly["Arduino"].ORDER_UNARY_POSTFIX = 1; // expr++ expr-- () [] .
|
||||||
Blockly['Arduino'].ORDER_UNARY_PREFIX = 2; // -expr !expr ~expr ++expr --expr
|
Blockly["Arduino"].ORDER_UNARY_PREFIX = 2; // -expr !expr ~expr ++expr --expr
|
||||||
Blockly['Arduino'].ORDER_MULTIPLICATIVE = 3; // * / % ~/
|
Blockly["Arduino"].ORDER_MULTIPLICATIVE = 3; // * / % ~/
|
||||||
Blockly['Arduino'].ORDER_ADDITIVE = 4; // + -
|
Blockly["Arduino"].ORDER_ADDITIVE = 4; // + -
|
||||||
Blockly['Arduino'].ORDER_LOGICAL_NOT = 4.4; // !
|
Blockly["Arduino"].ORDER_LOGICAL_NOT = 4.4; // !
|
||||||
Blockly['Arduino'].ORDER_SHIFT = 5; // << >>
|
Blockly["Arduino"].ORDER_SHIFT = 5; // << >>
|
||||||
Blockly['Arduino'].ORDER_MODULUS = 5.3; // %
|
Blockly["Arduino"].ORDER_MODULUS = 5.3; // %
|
||||||
Blockly['Arduino'].ORDER_RELATIONAL = 6; // is is! >= > <= <
|
Blockly["Arduino"].ORDER_RELATIONAL = 6; // is is! >= > <= <
|
||||||
Blockly['Arduino'].ORDER_EQUALITY = 7; // === !== === !==
|
Blockly["Arduino"].ORDER_EQUALITY = 7; // === !== === !==
|
||||||
Blockly['Arduino'].ORDER_BITWISE_AND = 8; // &
|
Blockly["Arduino"].ORDER_BITWISE_AND = 8; // &
|
||||||
Blockly['Arduino'].ORDER_BITWISE_XOR = 9; // ^
|
Blockly["Arduino"].ORDER_BITWISE_XOR = 9; // ^
|
||||||
Blockly['Arduino'].ORDER_BITWISE_OR = 10; // |
|
Blockly["Arduino"].ORDER_BITWISE_OR = 10; // |
|
||||||
Blockly['Arduino'].ORDER_LOGICAL_AND = 11; // &&
|
Blockly["Arduino"].ORDER_LOGICAL_AND = 11; // &&
|
||||||
Blockly['Arduino'].ORDER_LOGICAL_OR = 12; // ||
|
Blockly["Arduino"].ORDER_LOGICAL_OR = 12; // ||
|
||||||
Blockly['Arduino'].ORDER_CONDITIONAL = 13; // expr ? expr : expr
|
Blockly["Arduino"].ORDER_CONDITIONAL = 13; // expr ? expr : expr
|
||||||
Blockly['Arduino'].ORDER_ASSIGNMENT = 14; // = *= /= ~/= %= += -= <<= >>= &= ^= |=
|
Blockly["Arduino"].ORDER_ASSIGNMENT = 14; // = *= /= ~/= %= += -= <<= >>= &= ^= |=
|
||||||
Blockly['Arduino'].ORDER_COMMA = 18; // ,
|
Blockly["Arduino"].ORDER_COMMA = 18; // ,
|
||||||
Blockly['Arduino'].ORDER_NONE = 99; // (...)
|
Blockly["Arduino"].ORDER_NONE = 99; // (...)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
@ -90,49 +87,46 @@ Blockly['Arduino'].ORDER_NONE = 99; // (...)
|
|||||||
* Blockly Types
|
* Blockly Types
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Initialise the database of variable names.
|
* Initialise the database of variable names.
|
||||||
* @param {!Blockly.Workspace} workspace Workspace to generate code from.
|
* @param {!Blockly.Workspace} workspace Workspace to generate code from.
|
||||||
*/
|
*/
|
||||||
Blockly['Arduino'].init = function (workspace) {
|
Blockly["Arduino"].init = function (workspace) {
|
||||||
// Create a dictionary of definitions to be printed before the code.
|
// Create a dictionary of definitions to be printed before the code.
|
||||||
Blockly['Arduino'].libraries_ = Object.create(null);
|
Blockly["Arduino"].libraries_ = Object.create(null);
|
||||||
|
|
||||||
Blockly['Arduino'].definitions_ = Object.create(null);
|
Blockly["Arduino"].definitions_ = Object.create(null);
|
||||||
|
|
||||||
// creates a list of code to be setup before the setup block
|
// creates a list of code to be setup before the setup block
|
||||||
Blockly['Arduino'].setupCode_ = Object.create(null);
|
Blockly["Arduino"].setupCode_ = Object.create(null);
|
||||||
|
|
||||||
// creates a list of code to be setup before the setup block
|
// creates a list of code to be setup before the setup block
|
||||||
Blockly['Arduino'].loraSetupCode_ = Object.create(null);
|
Blockly["Arduino"].loraSetupCode_ = Object.create(null);
|
||||||
|
|
||||||
// creates a list of code for the loop to be runned once
|
// creates a list of code for the loop to be runned once
|
||||||
Blockly['Arduino'].loopCodeOnce_ = Object.create(null)
|
Blockly["Arduino"].loopCodeOnce_ = Object.create(null);
|
||||||
|
|
||||||
// creates a list of code for the loop to be runned once
|
// creates a list of code for the loop to be runned once
|
||||||
Blockly['Arduino'].codeFunctions_ = Object.create(null)
|
Blockly["Arduino"].codeFunctions_ = Object.create(null);
|
||||||
|
|
||||||
// creates a list of code variables
|
// creates a list of code variables
|
||||||
Blockly['Arduino'].variables_ = Object.create(null)
|
Blockly["Arduino"].variables_ = Object.create(null);
|
||||||
|
|
||||||
// Create a dictionary mapping desired function names in definitions_
|
// Create a dictionary mapping desired function names in definitions_
|
||||||
// to actual function names (to avoid collisions with user functions).
|
// to actual function names (to avoid collisions with user functions).
|
||||||
Blockly['Arduino'].functionNames_ = Object.create(null);
|
Blockly["Arduino"].functionNames_ = Object.create(null);
|
||||||
|
|
||||||
Blockly['Arduino'].variablesInitCode_ = '';
|
Blockly["Arduino"].variablesInitCode_ = "";
|
||||||
|
|
||||||
if (!Blockly['Arduino'].variableDB_) {
|
if (!Blockly["Arduino"].variableDB_) {
|
||||||
Blockly['Arduino'].variableDB_ = new Blockly.Names(
|
Blockly["Arduino"].variableDB_ = new Blockly.Names(
|
||||||
Blockly['Arduino'].RESERVED_WORDS_
|
Blockly["Arduino"].RESERVED_WORDS_
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
Blockly['Arduino'].variableDB_.reset();
|
Blockly["Arduino"].variableDB_.reset();
|
||||||
}
|
}
|
||||||
|
|
||||||
Blockly['Arduino'].variableDB_.setVariableMap(workspace.getVariableMap());
|
Blockly["Arduino"].variableDB_.setVariableMap(workspace.getVariableMap());
|
||||||
|
|
||||||
// We don't have developer variables for now
|
// We don't have developer variables for now
|
||||||
// // Add developer variables (not created or named by the user).
|
// // Add developer variables (not created or named by the user).
|
||||||
@ -142,53 +136,53 @@ Blockly['Arduino'].init = function (workspace) {
|
|||||||
// Blockly.Names.DEVELOPER_VARIABLE_TYPE));
|
// Blockly.Names.DEVELOPER_VARIABLE_TYPE));
|
||||||
// }
|
// }
|
||||||
|
|
||||||
const doubleVariables = workspace.getVariablesOfType('Number');
|
const doubleVariables = workspace.getVariablesOfType("Number");
|
||||||
let i = 0;
|
let i = 0;
|
||||||
let variableCode = '';
|
let variableCode = "";
|
||||||
for (i = 0; i < doubleVariables.length; i += 1) {
|
for (i = 0; i < doubleVariables.length; i += 1) {
|
||||||
variableCode +=
|
variableCode +=
|
||||||
'double ' +
|
"double " +
|
||||||
Blockly['Arduino'].variableDB_.getName(
|
Blockly["Arduino"].variableDB_.getName(
|
||||||
doubleVariables[i].getId(),
|
doubleVariables[i].getId(),
|
||||||
Blockly.Variables.NAME_TYPE
|
Blockly.Variables.NAME_TYPE
|
||||||
) +
|
) +
|
||||||
' = 0; \n\n';
|
" = 0; \n\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
const stringVariables = workspace.getVariablesOfType('String');
|
const stringVariables = workspace.getVariablesOfType("String");
|
||||||
for (i = 0; i < stringVariables.length; i += 1) {
|
for (i = 0; i < stringVariables.length; i += 1) {
|
||||||
variableCode +=
|
variableCode +=
|
||||||
'String ' +
|
"String " +
|
||||||
Blockly['Arduino'].variableDB_.getName(
|
Blockly["Arduino"].variableDB_.getName(
|
||||||
stringVariables[i].getId(),
|
stringVariables[i].getId(),
|
||||||
Blockly.Variables.NAME_TYPE
|
Blockly.Variables.NAME_TYPE
|
||||||
) +
|
) +
|
||||||
' = ""; \n\n';
|
' = ""; \n\n';
|
||||||
}
|
}
|
||||||
|
|
||||||
const booleanVariables = workspace.getVariablesOfType('Boolean');
|
const booleanVariables = workspace.getVariablesOfType("Boolean");
|
||||||
for (i = 0; i < booleanVariables.length; i += 1) {
|
for (i = 0; i < booleanVariables.length; i += 1) {
|
||||||
variableCode +=
|
variableCode +=
|
||||||
'boolean ' +
|
"boolean " +
|
||||||
Blockly['Arduino'].variableDB_.getDistinctName(
|
Blockly["Arduino"].variableDB_.getDistinctName(
|
||||||
booleanVariables[i].getId(),
|
booleanVariables[i].getId(),
|
||||||
Blockly.Variables.NAME_TYPE
|
Blockly.Variables.NAME_TYPE
|
||||||
) +
|
) +
|
||||||
' = false; \n\n';
|
" = false; \n\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
const colourVariables = workspace.getVariablesOfType('Colour');
|
const colourVariables = workspace.getVariablesOfType("Colour");
|
||||||
for (i = 0; i < colourVariables.length; i += 1) {
|
for (i = 0; i < colourVariables.length; i += 1) {
|
||||||
variableCode +=
|
variableCode +=
|
||||||
'RGB ' +
|
"RGB " +
|
||||||
Blockly['Arduino'].variableDB_.getName(
|
Blockly["Arduino"].variableDB_.getName(
|
||||||
colourVariables[i].getId(),
|
colourVariables[i].getId(),
|
||||||
Blockly.Variables.NAME_TYPE
|
Blockly.Variables.NAME_TYPE
|
||||||
) +
|
) +
|
||||||
' = {0, 0, 0}; \n\n';
|
" = {0, 0, 0}; \n\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
Blockly['Arduino'].variablesInitCode_ = variableCode;
|
Blockly["Arduino"].variablesInitCode_ = variableCode;
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -196,86 +190,82 @@ Blockly['Arduino'].init = function (workspace) {
|
|||||||
* @param {string} code Generated code.
|
* @param {string} code Generated code.
|
||||||
* @return {string} Completed code.
|
* @return {string} Completed code.
|
||||||
*/
|
*/
|
||||||
Blockly['Arduino'].finish = function (code) {
|
Blockly["Arduino"].finish = function (code) {
|
||||||
let libraryCode = '';
|
let libraryCode = "";
|
||||||
let variablesCode = '';
|
let variablesCode = "";
|
||||||
let codeFunctions = '';
|
let codeFunctions = "";
|
||||||
let functionsCode = '';
|
let functionsCode = "";
|
||||||
let definitionsCode = '';
|
let definitionsCode = "";
|
||||||
let loopCodeOnce = '';
|
let loopCodeOnce = "";
|
||||||
let setupCode = '';
|
let setupCode = "";
|
||||||
let preSetupCode = '';
|
let preSetupCode = "";
|
||||||
let loraSetupCode = '';
|
let loraSetupCode = "";
|
||||||
let devVariables = '\n';
|
let devVariables = "\n";
|
||||||
|
|
||||||
for (const key in Blockly['Arduino'].libraries_) {
|
for (const key in Blockly["Arduino"].libraries_) {
|
||||||
libraryCode += Blockly['Arduino'].libraries_[key] + '\n';
|
libraryCode += Blockly["Arduino"].libraries_[key] + "\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
for (const key in Blockly['Arduino'].variables_) {
|
for (const key in Blockly["Arduino"].variables_) {
|
||||||
variablesCode += Blockly['Arduino'].variables_[key] + '\n';
|
variablesCode += Blockly["Arduino"].variables_[key] + "\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
for (const key in Blockly['Arduino'].definitions_) {
|
for (const key in Blockly["Arduino"].definitions_) {
|
||||||
definitionsCode += Blockly['Arduino'].definitions_[key] + '\n';
|
definitionsCode += Blockly["Arduino"].definitions_[key] + "\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
for (const key in Blockly['Arduino'].loopCodeOnce_) {
|
for (const key in Blockly["Arduino"].loopCodeOnce_) {
|
||||||
loopCodeOnce += Blockly['Arduino'].loopCodeOnce_[key] + '\n';
|
loopCodeOnce += Blockly["Arduino"].loopCodeOnce_[key] + "\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
for (const key in Blockly['Arduino'].codeFunctions_) {
|
for (const key in Blockly["Arduino"].codeFunctions_) {
|
||||||
codeFunctions += Blockly['Arduino'].codeFunctions_[key] + '\n';
|
codeFunctions += Blockly["Arduino"].codeFunctions_[key] + "\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
for (const key in Blockly['Arduino'].functionNames_) {
|
for (const key in Blockly["Arduino"].functionNames_) {
|
||||||
functionsCode += Blockly['Arduino'].functionNames_[key] + '\n';
|
functionsCode += Blockly["Arduino"].functionNames_[key] + "\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
for (const key in Blockly["Arduino"].setupCode_) {
|
||||||
|
preSetupCode += Blockly["Arduino"].setupCode_[key] + "\n" || "";
|
||||||
for (const key in Blockly['Arduino'].setupCode_) {
|
|
||||||
preSetupCode += Blockly['Arduino'].setupCode_[key] || '';
|
|
||||||
}
|
}
|
||||||
|
|
||||||
for (const key in Blockly['Arduino'].loraSetupCode_) {
|
for (const key in Blockly["Arduino"].loraSetupCode_) {
|
||||||
loraSetupCode += Blockly['Arduino'].loraSetupCode_[key] || '';
|
loraSetupCode += Blockly["Arduino"].loraSetupCode_[key] + "\n" || "";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
setupCode =
|
||||||
|
"\nvoid setup() { \n" + preSetupCode + "\n" + loraSetupCode + "\n}\n";
|
||||||
|
|
||||||
setupCode = '\nvoid setup() { \n' + preSetupCode + '\n' + loraSetupCode + '\n}\n';
|
let loopCode = "\nvoid loop() { \n" + loopCodeOnce + code + "\n}\n";
|
||||||
|
|
||||||
let loopCode = '\nvoid loop() { \n' + loopCodeOnce + code + '\n}\n';
|
|
||||||
|
|
||||||
|
|
||||||
// Convert the definitions dictionary into a list.
|
// Convert the definitions dictionary into a list.
|
||||||
code =
|
code =
|
||||||
devVariables +
|
devVariables +
|
||||||
'\n' +
|
"\n" +
|
||||||
libraryCode +
|
libraryCode +
|
||||||
'\n' +
|
"\n" +
|
||||||
variablesCode +
|
variablesCode +
|
||||||
'\n' +
|
"\n" +
|
||||||
definitionsCode +
|
definitionsCode +
|
||||||
'\n' +
|
"\n" +
|
||||||
codeFunctions +
|
codeFunctions +
|
||||||
'\n' +
|
"\n" +
|
||||||
Blockly['Arduino'].variablesInitCode_ +
|
Blockly["Arduino"].variablesInitCode_ +
|
||||||
'\n' +
|
"\n" +
|
||||||
functionsCode +
|
functionsCode +
|
||||||
'\n' +
|
"\n" +
|
||||||
setupCode +
|
setupCode +
|
||||||
'\n' +
|
"\n" +
|
||||||
loopCode
|
loopCode;
|
||||||
;
|
|
||||||
|
|
||||||
// Clean up temporary data.
|
// Clean up temporary data.
|
||||||
delete Blockly['Arduino'].definitions_;
|
delete Blockly["Arduino"].definitions_;
|
||||||
delete Blockly['Arduino'].functionNames_;
|
delete Blockly["Arduino"].functionNames_;
|
||||||
delete Blockly['Arduino'].loopCodeOnce_;
|
delete Blockly["Arduino"].loopCodeOnce_;
|
||||||
delete Blockly['Arduino'].variablesInitCode_;
|
delete Blockly["Arduino"].variablesInitCode_;
|
||||||
delete Blockly['Arduino'].libraries_;
|
delete Blockly["Arduino"].libraries_;
|
||||||
Blockly['Arduino'].variableDB_.reset();
|
Blockly["Arduino"].variableDB_.reset();
|
||||||
|
|
||||||
return code;
|
return code;
|
||||||
};
|
};
|
||||||
@ -286,8 +276,8 @@ Blockly['Arduino'].finish = function (code) {
|
|||||||
* @param {string} line Line of generated code.
|
* @param {string} line Line of generated code.
|
||||||
* @return {string} Legal line of code.
|
* @return {string} Legal line of code.
|
||||||
*/
|
*/
|
||||||
Blockly['Arduino'].scrubNakedValue = function (line) {
|
Blockly["Arduino"].scrubNakedValue = function (line) {
|
||||||
return line + ';\n';
|
return line + ";\n";
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -297,12 +287,12 @@ Blockly['Arduino'].scrubNakedValue = function (line) {
|
|||||||
* @return {string} Arduino string.
|
* @return {string} Arduino string.
|
||||||
* @private
|
* @private
|
||||||
*/
|
*/
|
||||||
Blockly['Arduino'].quote_ = function (string) {
|
Blockly["Arduino"].quote_ = function (string) {
|
||||||
// Can't use goog.string.quote since Google's style guide recommends
|
// Can't use goog.string.quote since Google's style guide recommends
|
||||||
// JS string literals use single quotes.
|
// JS string literals use single quotes.
|
||||||
string = string
|
string = string
|
||||||
.replace(/\\/g, '\\\\')
|
.replace(/\\/g, "\\\\")
|
||||||
.replace(/\n/g, '\\\n')
|
.replace(/\n/g, "\\\n")
|
||||||
.replace(/'/g, "\\'");
|
.replace(/'/g, "\\'");
|
||||||
return '"' + string + '"';
|
return '"' + string + '"';
|
||||||
};
|
};
|
||||||
@ -317,26 +307,25 @@ Blockly['Arduino'].quote_ = function (string) {
|
|||||||
* @return {string} Arduino code with comments and subsequent blocks added.
|
* @return {string} Arduino code with comments and subsequent blocks added.
|
||||||
* @private
|
* @private
|
||||||
*/
|
*/
|
||||||
Blockly['Arduino'].scrub_ = function (block, code) {
|
Blockly["Arduino"].scrub_ = function (block, code) {
|
||||||
let commentCode = '';
|
let commentCode = "";
|
||||||
// Only collect comments for blocks that aren't inline.
|
// Only collect comments for blocks that aren't inline.
|
||||||
if (!block.outputConnection || !block.outputConnection.targetConnection) {
|
if (!block.outputConnection || !block.outputConnection.targetConnection) {
|
||||||
// Collect comment for this block.
|
// Collect comment for this block.
|
||||||
let comment = block.getCommentText();
|
let comment = block.getCommentText();
|
||||||
//@ts-ignore
|
//@ts-ignore
|
||||||
comment = comment ? Blockly.utils.string.wrap(
|
comment = comment
|
||||||
comment,
|
? Blockly.utils.string.wrap(comment, Blockly["Arduino"].COMMENT_WRAP - 3)
|
||||||
Blockly['Arduino'].COMMENT_WRAP - 3
|
: null;
|
||||||
) : null;
|
|
||||||
if (comment) {
|
if (comment) {
|
||||||
if (block.getProcedureDef) {
|
if (block.getProcedureDef) {
|
||||||
// Use a comment block for function comments.
|
// Use a comment block for function comments.
|
||||||
commentCode +=
|
commentCode +=
|
||||||
'/**\n' +
|
"/**\n" +
|
||||||
Blockly['Arduino'].prefixLines(comment + '\n', ' * ') +
|
Blockly["Arduino"].prefixLines(comment + "\n", " * ") +
|
||||||
' */\n';
|
" */\n";
|
||||||
} else {
|
} else {
|
||||||
commentCode += Blockly['Arduino'].prefixLines(comment + '\n', '// ');
|
commentCode += Blockly["Arduino"].prefixLines(comment + "\n", "// ");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Collect comments for all value arguments.
|
// Collect comments for all value arguments.
|
||||||
@ -345,15 +334,15 @@ Blockly['Arduino'].scrub_ = function (block, code) {
|
|||||||
if (block.inputList[i].type === Blockly.INPUT_VALUE) {
|
if (block.inputList[i].type === Blockly.INPUT_VALUE) {
|
||||||
const childBlock = block.inputList[i].connection.targetBlock();
|
const childBlock = block.inputList[i].connection.targetBlock();
|
||||||
if (childBlock) {
|
if (childBlock) {
|
||||||
const comment = Blockly['Arduino'].allNestedComments(childBlock);
|
const comment = Blockly["Arduino"].allNestedComments(childBlock);
|
||||||
if (comment) {
|
if (comment) {
|
||||||
commentCode += Blockly['Arduino'].prefixLines(comment, '// ');
|
commentCode += Blockly["Arduino"].prefixLines(comment, "// ");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
const nextBlock = block.nextConnection && block.nextConnection.targetBlock();
|
const nextBlock = block.nextConnection && block.nextConnection.targetBlock();
|
||||||
const nextCode = Blockly['Arduino'].blockToCode(nextBlock);
|
const nextCode = Blockly["Arduino"].blockToCode(nextBlock);
|
||||||
return commentCode + code + nextCode;
|
return commentCode + code + nextCode;
|
||||||
};
|
};
|
@ -1,24 +1,23 @@
|
|||||||
import './generator';
|
import "./generator";
|
||||||
import './loops';
|
import "./loops";
|
||||||
import './sensebox-sensors';
|
import "./sensebox-sensors";
|
||||||
import './sensebox-telegram';
|
import "./sensebox-telegram";
|
||||||
import './sensebox-osem';
|
import "./sensebox-osem";
|
||||||
import './sensebox-web';
|
import "./sensebox-web";
|
||||||
import './sensebox-display';
|
import "./sensebox-display";
|
||||||
import './sensebox-lora';
|
import "./sensebox-lora";
|
||||||
import './sensebox-led';
|
import "./sensebox-led";
|
||||||
import './sensebox-sd';
|
import "./sensebox-ble";
|
||||||
import './mqtt';
|
import "./sensebox-sd";
|
||||||
import './logic';
|
import "./mqtt";
|
||||||
import './text';
|
import "./logic";
|
||||||
import './math';
|
import "./text";
|
||||||
import './map';
|
import "./math";
|
||||||
import './io';
|
import "./map";
|
||||||
import './audio';
|
import "./io";
|
||||||
import './procedures';
|
import "./audio";
|
||||||
import './time';
|
import "./procedures";
|
||||||
import './variables';
|
import "./time";
|
||||||
import './lists';
|
import "./variables";
|
||||||
import './webserver';
|
import "./lists";
|
||||||
|
import "./webserver";
|
||||||
|
|
||||||
|
39
src/components/Blockly/generator/sensebox-ble.js
Normal file
39
src/components/Blockly/generator/sensebox-ble.js
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
import * as Blockly from "blockly/core";
|
||||||
|
|
||||||
|
Blockly.Arduino.sensebox_phyphox_init = function () {
|
||||||
|
var name = this.getFieldValue("devicename");
|
||||||
|
Blockly.Arduino.libraries_["phyphox_library"] = `#include <phyphoxBle.h>`;
|
||||||
|
Blockly.Arduino.libraries_["library_senseBoxMCU"] =
|
||||||
|
'#include "SenseBoxMCU.h"';
|
||||||
|
Blockly.Arduino.setupCode_["phyphox_start"] = `PhyphoxBLE::start("${name}");`;
|
||||||
|
var code = ``;
|
||||||
|
return code;
|
||||||
|
};
|
||||||
|
|
||||||
|
Blockly.Arduino.sensebox_phyphox_experiment = function () {
|
||||||
|
var experimentname = this.getFieldValue("exeperimentname");
|
||||||
|
var title = this.getFieldValue("title");
|
||||||
|
var category = this.getFieldValue("category");
|
||||||
|
var description = this.getFieldValue("description");
|
||||||
|
Blockly.Arduino.setupCode_[
|
||||||
|
`PhyphoxBleExperiment_${experimentname}`
|
||||||
|
] = `PhyphoxBleExperiment ${experimentname};`;
|
||||||
|
Blockly.Arduino.setupCode_[
|
||||||
|
`setTitle_${title}`
|
||||||
|
] = `${experimentname}.setTitle("${title}")`;
|
||||||
|
Blockly.Arduino.setupCode_[
|
||||||
|
`setCategory_${category}`
|
||||||
|
] = `${experimentname}.setCategory("${category}")`;
|
||||||
|
Blockly.Arduino.setupCode_[
|
||||||
|
`setDescription_${description}`
|
||||||
|
] = `${experimentname}.setDescription("${description}")`;
|
||||||
|
var code = ``;
|
||||||
|
return code;
|
||||||
|
};
|
||||||
|
|
||||||
|
Blockly.Arduino.sensebox_phyphox_experiment_send = function () {
|
||||||
|
var data = "";
|
||||||
|
Blockly.Arduino.loopCodeOnce_["phyphox_poll"] = `PhyphoxBLE::poll()`;
|
||||||
|
var code = `PhyphoxBLE::write()`;
|
||||||
|
return code;
|
||||||
|
};
|
@ -1,4 +1,3 @@
|
|||||||
|
|
||||||
const colours = {
|
const colours = {
|
||||||
sensebox: 120,
|
sensebox: 120,
|
||||||
logic: 210,
|
logic: 210,
|
||||||
@ -12,11 +11,10 @@ const colours = {
|
|||||||
audio: 250,
|
audio: 250,
|
||||||
arrays: 33,
|
arrays: 33,
|
||||||
mqtt: 90,
|
mqtt: 90,
|
||||||
webserver: 40
|
webserver: 40,
|
||||||
}
|
phyphox: 25,
|
||||||
|
};
|
||||||
|
|
||||||
export const getColour = () => {
|
export const getColour = () => {
|
||||||
return colours;
|
return colours;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -1,29 +1,30 @@
|
|||||||
|
import { AUDIO } from "./de/audio";
|
||||||
import { AUDIO } from './de/audio';
|
import { BLE } from "./de/sensebox-ble";
|
||||||
import { FAQ } from './de/faq';
|
import { FAQ } from "./de/faq";
|
||||||
import { IO } from './de/io';
|
import { IO } from "./de/io";
|
||||||
import { LOGIC } from './de/logic';
|
import { LOGIC } from "./de/logic";
|
||||||
import { LOOPS } from './de/loops';
|
import { LOOPS } from "./de/loops";
|
||||||
import { MATH } from './de/math';
|
import { MATH } from "./de/math";
|
||||||
import { MQTT } from './de/mqtt';
|
import { MQTT } from "./de/mqtt";
|
||||||
import { DISPLAY } from './de/sensebox-display';
|
import { DISPLAY } from "./de/sensebox-display";
|
||||||
import { LED } from './de/sensebox-led';
|
import { LED } from "./de/sensebox-led";
|
||||||
import { LORA } from './de/sensebox-lora';
|
import { LORA } from "./de/sensebox-lora";
|
||||||
import { OSEM } from './de/sensebox-osem';
|
import { OSEM } from "./de/sensebox-osem";
|
||||||
import { SD } from './de/sensebox-sd';
|
import { SD } from "./de/sensebox-sd";
|
||||||
import { SENSORS } from './de/sensebox-sensors';
|
import { SENSORS } from "./de/sensebox-sensors";
|
||||||
import { TELEGRAM } from './de/sensebox-telegram';
|
import { TELEGRAM } from "./de/sensebox-telegram";
|
||||||
import { WEB } from './de/sensebox-web';
|
import { WEB } from "./de/sensebox-web";
|
||||||
import { TEXT } from './de/text';
|
import { TEXT } from "./de/text";
|
||||||
import { TIME } from './de/time';
|
import { TIME } from "./de/time";
|
||||||
import { TOURS } from './de/tours';
|
import { TOURS } from "./de/tours";
|
||||||
import { TRANSLATIONS } from './de/translations';
|
import { TRANSLATIONS } from "./de/translations";
|
||||||
import { UI } from './de/ui';
|
import { UI } from "./de/ui";
|
||||||
import { VARIABLES } from './de/variables';
|
import { VARIABLES } from "./de/variables";
|
||||||
import { WEBSERVER } from './de/webserver';
|
import { WEBSERVER } from "./de/webserver";
|
||||||
|
|
||||||
export const De = {
|
export const De = {
|
||||||
...AUDIO,
|
...AUDIO,
|
||||||
|
...BLE,
|
||||||
...FAQ,
|
...FAQ,
|
||||||
...IO,
|
...IO,
|
||||||
...LOGIC,
|
...LOGIC,
|
||||||
@ -44,5 +45,5 @@ export const De = {
|
|||||||
...TRANSLATIONS,
|
...TRANSLATIONS,
|
||||||
...UI,
|
...UI,
|
||||||
...VARIABLES,
|
...VARIABLES,
|
||||||
...WEBSERVER
|
...WEBSERVER,
|
||||||
}
|
};
|
||||||
|
12
src/components/Blockly/msg/de/sensebox-ble.js
Normal file
12
src/components/Blockly/msg/de/sensebox-ble.js
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
export const BLE = {
|
||||||
|
/**
|
||||||
|
* Phyphox Init
|
||||||
|
*/
|
||||||
|
sensebox_phyphox_init: "Phyphox Experiment",
|
||||||
|
sensebox_phyphox_createExperiment: "Erstelle Experiment",
|
||||||
|
sensebox_phyphox_experimentName: "Name des Experiments",
|
||||||
|
sensebox_phyphox_experimentTitle: "Titel",
|
||||||
|
sensebox_phyphox_experimentCategory: "Kategorie",
|
||||||
|
sensebox_phyphox_experimentDescription: "Beschreibung",
|
||||||
|
sensebox_phyphox_writeValues: "Sende Werte",
|
||||||
|
};
|
@ -6,8 +6,10 @@ export const LED = {
|
|||||||
senseBox_ws2818_rgb_led_init: "RGB LED (WS2818) initialisieren",
|
senseBox_ws2818_rgb_led_init: "RGB LED (WS2818) initialisieren",
|
||||||
senseBox_ws2818_rgb_led_position: "Position",
|
senseBox_ws2818_rgb_led_position: "Position",
|
||||||
senseBox_ws2818_rgb_led_brightness: "Helligkeit",
|
senseBox_ws2818_rgb_led_brightness: "Helligkeit",
|
||||||
senseBox_ws2818_rgb_led_tooltip: "Verändere mit diesem Block die Farbe deiner RGB-LED. Verbinde einen Block für die Farbe. Wenn mehrere RGB-LEDs miteinander verkettet werden kannst du über die Position bestimmen welche LED angesteuert wird. ",
|
senseBox_ws2818_rgb_led_tooltip:
|
||||||
senseBox_ws2818_rgb_led_init_tooltip: "Schließe die RGB-LED an einen der drei **digital/analog Ports** an. Wenn mehrere RGB-LEDs miteinander verkettet werden kannst du über die Position bestimmen welche LED angesteuert wird. ",
|
"Verändere mit diesem Block die Farbe deiner RGB-LED. Verbinde einen Block für die Farbe. Wenn mehrere RGB-LEDs miteinander verkettet werden kannst du über die Position bestimmen welche LED angesteuert wird. ",
|
||||||
|
senseBox_ws2818_rgb_led_init_tooltip:
|
||||||
|
"Schließe die RGB-LED an einen der drei **digital/analog Ports** an. Wenn mehrere RGB-LEDs miteinander verkettet werden kannst du über die Position bestimmen welche LED angesteuert wird. ",
|
||||||
senseBox_ws2818_rgb_led_color: "Farbe",
|
senseBox_ws2818_rgb_led_color: "Farbe",
|
||||||
senseBox_ws2818_rgb_led_number: "Anzahl",
|
senseBox_ws2818_rgb_led_number: "Anzahl",
|
||||||
|
|
||||||
@ -20,9 +22,11 @@ export const LED = {
|
|||||||
COLOUR_BLEND_HELPURL: "http://meyerweb.com/eric/tools/color-blend/",
|
COLOUR_BLEND_HELPURL: "http://meyerweb.com/eric/tools/color-blend/",
|
||||||
COLOUR_BLEND_RATIO: "im Verhältnis",
|
COLOUR_BLEND_RATIO: "im Verhältnis",
|
||||||
COLOUR_BLEND_TITLE: "mische",
|
COLOUR_BLEND_TITLE: "mische",
|
||||||
COLOUR_BLEND_TOOLTIP: "Vermische 2 Farben mit konfigurierbaren Farbverhältnis (0.0 - 1.0).",
|
COLOUR_BLEND_TOOLTIP:
|
||||||
|
"Vermische 2 Farben mit konfigurierbaren Farbverhältnis (0.0 - 1.0).",
|
||||||
COLOUR_PICKER_HELPURL: "https://de.wikipedia.org/wiki/Farbe",
|
COLOUR_PICKER_HELPURL: "https://de.wikipedia.org/wiki/Farbe",
|
||||||
COLOUR_PICKER_TOOLTIP: "Wähle eine Farbe aus der Palette. Die Farbe wird automatisch in RGB-Werte konvertiert.",
|
COLOUR_PICKER_TOOLTIP:
|
||||||
|
"Wähle eine Farbe aus der Palette. Die Farbe wird automatisch in RGB-Werte konvertiert.",
|
||||||
COLOUR_RANDOM_HELPURL: "http://randomcolour.com", // untranslated
|
COLOUR_RANDOM_HELPURL: "http://randomcolour.com", // untranslated
|
||||||
COLOUR_RANDOM_TITLE: "zufällige Farbe",
|
COLOUR_RANDOM_TITLE: "zufällige Farbe",
|
||||||
COLOUR_RANDOM_TOOLTIP: "Erstelle eine Farbe nach dem Zufallsprinzip.",
|
COLOUR_RANDOM_TOOLTIP: "Erstelle eine Farbe nach dem Zufallsprinzip.",
|
||||||
@ -31,6 +35,6 @@ export const LED = {
|
|||||||
COLOUR_RGB_HELPURL: "https://de.wikipedia.org/wiki/RGB-Farbraum",
|
COLOUR_RGB_HELPURL: "https://de.wikipedia.org/wiki/RGB-Farbraum",
|
||||||
COLOUR_RGB_RED: "rot",
|
COLOUR_RGB_RED: "rot",
|
||||||
COLOUR_RGB_TITLE: "Farbe mit",
|
COLOUR_RGB_TITLE: "Farbe mit",
|
||||||
COLOUR_RGB_TOOLTIP: "Erstelle eine Farbe mit selbst definierten Rot-, Grün- und Blauwerten. Alle Werte müssen zwischen 0 und 255 liegen. 0 ist hierbei die geringte Intensität der Farbe 255 die höchste.",
|
COLOUR_RGB_TOOLTIP:
|
||||||
|
"Erstelle eine Farbe mit selbst definierten Rot-, Grün- und Blauwerten. Alle Werte müssen zwischen 0 und 255 liegen. 0 ist hierbei die geringte Intensität der Farbe 255 die höchste.",
|
||||||
}
|
};
|
||||||
|
@ -1,30 +1,42 @@
|
|||||||
import React from 'react';
|
import React from "react";
|
||||||
import { Block, Value, Field, Shadow, Category } from '../';
|
import { Block, Value, Field, Shadow, Category } from "../";
|
||||||
import { getColour } from '../helpers/colour'
|
import { getColour } from "../helpers/colour";
|
||||||
import '@blockly/block-plus-minus';
|
import "@blockly/block-plus-minus";
|
||||||
import { TypedVariableModal } from '@blockly/plugin-typed-variable-modal';
|
import { TypedVariableModal } from "@blockly/plugin-typed-variable-modal";
|
||||||
import * as Blockly from 'blockly/core';
|
import * as Blockly from "blockly/core";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
class Toolbox extends React.Component {
|
class Toolbox extends React.Component {
|
||||||
|
|
||||||
componentDidUpdate() {
|
componentDidUpdate() {
|
||||||
this.props.workspace.registerToolboxCategoryCallback('CREATE_TYPED_VARIABLE', this.createFlyout);
|
this.props.workspace.registerToolboxCategoryCallback(
|
||||||
|
"CREATE_TYPED_VARIABLE",
|
||||||
|
this.createFlyout
|
||||||
|
);
|
||||||
|
|
||||||
const typedVarModal = new TypedVariableModal(this.props.workspace, 'callbackName', [['SHORT_NUMBER', 'char'], ['NUMBER', 'int'], ['DECIMAL', 'float'], ['TEXT', 'String'], ['ARRAY', 'Array'], ['CHARACTER', 'char'], ['BOOLEAN', 'boolean'], ['NULL', 'void'], ['UNDEF', 'undefined']]);
|
const typedVarModal = new TypedVariableModal(
|
||||||
|
this.props.workspace,
|
||||||
|
"callbackName",
|
||||||
|
[
|
||||||
|
["SHORT_NUMBER", "char"],
|
||||||
|
["NUMBER", "int"],
|
||||||
|
["DECIMAL", "float"],
|
||||||
|
["TEXT", "String"],
|
||||||
|
["ARRAY", "Array"],
|
||||||
|
["CHARACTER", "char"],
|
||||||
|
["BOOLEAN", "boolean"],
|
||||||
|
["NULL", "void"],
|
||||||
|
["UNDEF", "undefined"],
|
||||||
|
]
|
||||||
|
);
|
||||||
typedVarModal.init();
|
typedVarModal.init();
|
||||||
}
|
}
|
||||||
|
|
||||||
createFlyout(workspace) {
|
createFlyout(workspace) {
|
||||||
|
|
||||||
let xmlList = [];
|
let xmlList = [];
|
||||||
|
|
||||||
// Add your button and give it a callback name.
|
// Add your button and give it a callback name.
|
||||||
const button = document.createElement('button');
|
const button = document.createElement("button");
|
||||||
button.setAttribute('text', 'Create Typed Variable');
|
button.setAttribute("text", "Create Typed Variable");
|
||||||
button.setAttribute('callbackKey', 'callbackName');
|
button.setAttribute("callbackKey", "callbackName");
|
||||||
|
|
||||||
xmlList.push(button);
|
xmlList.push(button);
|
||||||
|
|
||||||
@ -33,12 +45,20 @@ class Toolbox extends React.Component {
|
|||||||
const blockList = Blockly.VariablesDynamic.flyoutCategoryBlocks(workspace);
|
const blockList = Blockly.VariablesDynamic.flyoutCategoryBlocks(workspace);
|
||||||
xmlList = xmlList.concat(blockList);
|
xmlList = xmlList.concat(blockList);
|
||||||
return xmlList;
|
return xmlList;
|
||||||
};
|
}
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
return (
|
return (
|
||||||
<xml xmlns="https://developers.google.com/blockly/xml" id="blockly" style={{ display: 'none' }} ref={this.props.toolbox}>
|
<xml
|
||||||
<Category name={Blockly.Msg.toolbox_sensors} colour={getColour().sensebox}>
|
xmlns="https://developers.google.com/blockly/xml"
|
||||||
|
id="blockly"
|
||||||
|
style={{ display: "none" }}
|
||||||
|
ref={this.props.toolbox}
|
||||||
|
>
|
||||||
|
<Category
|
||||||
|
name={Blockly.Msg.toolbox_sensors}
|
||||||
|
colour={getColour().sensebox}
|
||||||
|
>
|
||||||
<Block type="sensebox_sensor_temp_hum" />
|
<Block type="sensebox_sensor_temp_hum" />
|
||||||
<Block type="sensebox_sensor_uv_light" />
|
<Block type="sensebox_sensor_uv_light" />
|
||||||
<Block type="sensebox_sensor_bmx055_accelerometer" />
|
<Block type="sensebox_sensor_bmx055_accelerometer" />
|
||||||
@ -54,7 +74,7 @@ class Toolbox extends React.Component {
|
|||||||
<Block type="sensebox_sensor_watertemperature" />
|
<Block type="sensebox_sensor_watertemperature" />
|
||||||
{/* <Block type="sensebox_windspeed" /> */}
|
{/* <Block type="sensebox_windspeed" /> */}
|
||||||
<Block type="sensebox_soundsensor_dfrobot" />
|
<Block type="sensebox_soundsensor_dfrobot" />
|
||||||
</Category >
|
</Category>
|
||||||
<Category name="WIFI" colour={getColour().sensebox}>
|
<Category name="WIFI" colour={getColour().sensebox}>
|
||||||
<Block type="sensebox_wifi" />
|
<Block type="sensebox_wifi" />
|
||||||
<Block type="sensebox_startap" />
|
<Block type="sensebox_startap" />
|
||||||
@ -157,19 +177,16 @@ class Toolbox extends React.Component {
|
|||||||
<Field name="TEXT">Unit</Field>
|
<Field name="TEXT">Unit</Field>
|
||||||
</Block>
|
</Block>
|
||||||
</Value>
|
</Value>
|
||||||
</Block >
|
</Block>
|
||||||
<Block type="sensebox_display_plotDisplay">
|
<Block type="sensebox_display_plotDisplay">
|
||||||
<Value name="Title">
|
<Value name="Title">
|
||||||
<Block type="text">
|
<Block type="text"></Block>
|
||||||
</Block>
|
|
||||||
</Value>
|
</Value>
|
||||||
<Value name="YLabel">
|
<Value name="YLabel">
|
||||||
<Block type="text">
|
<Block type="text"></Block>
|
||||||
</Block>
|
|
||||||
</Value>
|
</Value>
|
||||||
<Value name="XLabel">
|
<Value name="XLabel">
|
||||||
<Block type="text">
|
<Block type="text"></Block>
|
||||||
</Block>
|
|
||||||
</Value>
|
</Value>
|
||||||
<Value name="XRange1">
|
<Value name="XRange1">
|
||||||
<Block type="math_number">
|
<Block type="math_number">
|
||||||
@ -261,16 +278,32 @@ class Toolbox extends React.Component {
|
|||||||
</Block>
|
</Block>
|
||||||
<Block type="sensebox_send_to_osem" />
|
<Block type="sensebox_send_to_osem" />
|
||||||
</Category>
|
</Category>
|
||||||
<Category id="catSenseBoxOutput_LoRa" name=" LoRa" colour={getColour().sensebox}>
|
<Category
|
||||||
<Category id="catSenseBoxOutput_LoRa_activation" name=" Aktivierung" colour={getColour().sensebox}>
|
id="catSenseBoxOutput_LoRa"
|
||||||
|
name=" LoRa"
|
||||||
|
colour={getColour().sensebox}
|
||||||
|
>
|
||||||
|
<Category
|
||||||
|
id="catSenseBoxOutput_LoRa_activation"
|
||||||
|
name=" Aktivierung"
|
||||||
|
colour={getColour().sensebox}
|
||||||
|
>
|
||||||
<Block type="sensebox_lora_initialize_otaa" />
|
<Block type="sensebox_lora_initialize_otaa" />
|
||||||
<Block type="sensebox_lora_initialize_abp" />
|
<Block type="sensebox_lora_initialize_abp" />
|
||||||
</Category>
|
</Category>
|
||||||
<Category id="catSenseBoxOutput_LoRa_loramessage" name=" Lora Message" colour={getColour().sensebox}>
|
<Category
|
||||||
|
id="catSenseBoxOutput_LoRa_loramessage"
|
||||||
|
name=" Lora Message"
|
||||||
|
colour={getColour().sensebox}
|
||||||
|
>
|
||||||
<Block type="sensebox_lora_message_send" />
|
<Block type="sensebox_lora_message_send" />
|
||||||
<Block type="sensebox_send_lora_sensor_value" />
|
<Block type="sensebox_send_lora_sensor_value" />
|
||||||
</Category>
|
</Category>
|
||||||
<Category id="catSenseBoxOutput_Map" name=" TTN Mapper" colour={getColour().sensebox}>
|
<Category
|
||||||
|
id="catSenseBoxOutput_Map"
|
||||||
|
name=" TTN Mapper"
|
||||||
|
colour={getColour().sensebox}
|
||||||
|
>
|
||||||
<Block type="sensebox_lora_ttn_mapper">
|
<Block type="sensebox_lora_ttn_mapper">
|
||||||
<Value name="Latitude">
|
<Value name="Latitude">
|
||||||
<Block type="sensebox_gps">
|
<Block type="sensebox_gps">
|
||||||
@ -299,7 +332,11 @@ class Toolbox extends React.Component {
|
|||||||
</Value>
|
</Value>
|
||||||
</Block>
|
</Block>
|
||||||
</Category>
|
</Category>
|
||||||
<Category id="catSenseBoxOutput_LoRa_cayenne" name=" Cayenne LPP" colour={getColour().sensebox}>
|
<Category
|
||||||
|
id="catSenseBoxOutput_LoRa_cayenne"
|
||||||
|
name=" Cayenne LPP"
|
||||||
|
colour={getColour().sensebox}
|
||||||
|
>
|
||||||
<Block type="sensebox_lora_cayenne_send" />
|
<Block type="sensebox_lora_cayenne_send" />
|
||||||
<Block type="sensebox_lora_cayenne_temperature" />
|
<Block type="sensebox_lora_cayenne_temperature" />
|
||||||
<Block type="sensebox_lora_cayenne_humidity" />
|
<Block type="sensebox_lora_cayenne_humidity" />
|
||||||
@ -310,7 +347,16 @@ class Toolbox extends React.Component {
|
|||||||
<Block type="sensebox_lora_cayenne_gps" />
|
<Block type="sensebox_lora_cayenne_gps" />
|
||||||
</Category>
|
</Category>
|
||||||
</Category>
|
</Category>
|
||||||
<Category id="webserver" name="Webserver" colour={getColour().webserver}>
|
<Category id="phyphox" name="Phyphox" colour={getColour().phyphox}>
|
||||||
|
<Block type="sensebox_phyphox_init"></Block>
|
||||||
|
<Block type="sensebox_phyphox_experiment"></Block>
|
||||||
|
<Block type="sensebox_phyphox_experiment_send"></Block>
|
||||||
|
</Category>
|
||||||
|
<Category
|
||||||
|
id="webserver"
|
||||||
|
name="Webserver"
|
||||||
|
colour={getColour().webserver}
|
||||||
|
>
|
||||||
<Block type="sensebox_initialize_http_server"></Block>
|
<Block type="sensebox_initialize_http_server"></Block>
|
||||||
<Block type="sensebox_http_on_client_connect"></Block>
|
<Block type="sensebox_http_on_client_connect"></Block>
|
||||||
<Block type="sensebox_ip_address"></Block>
|
<Block type="sensebox_ip_address"></Block>
|
||||||
@ -338,7 +384,11 @@ class Toolbox extends React.Component {
|
|||||||
<Block type="logic_boolean" />
|
<Block type="logic_boolean" />
|
||||||
<Block type="switch_case" />
|
<Block type="switch_case" />
|
||||||
</Category>
|
</Category>
|
||||||
<Category id="loops" name={Blockly.Msg.toolbox_loops} colour={getColour().loops}>
|
<Category
|
||||||
|
id="loops"
|
||||||
|
name={Blockly.Msg.toolbox_loops}
|
||||||
|
colour={getColour().loops}
|
||||||
|
>
|
||||||
<Block type="controls_repeat_ext">
|
<Block type="controls_repeat_ext">
|
||||||
<Value name="TIMES">
|
<Value name="TIMES">
|
||||||
<Block type="math_number">
|
<Block type="math_number">
|
||||||
@ -353,13 +403,13 @@ class Toolbox extends React.Component {
|
|||||||
<Field name="NUM">1</Field>
|
<Field name="NUM">1</Field>
|
||||||
</Block>
|
</Block>
|
||||||
</Value>
|
</Value>
|
||||||
<Value name="TO" >
|
<Value name="TO">
|
||||||
<Block type="math_number" >
|
<Block type="math_number">
|
||||||
<Field name="NUM">10</Field>
|
<Field name="NUM">10</Field>
|
||||||
</Block>
|
</Block>
|
||||||
</Value>
|
</Value>
|
||||||
<Value name="BY" >
|
<Value name="BY">
|
||||||
<Block Type="math_number" >
|
<Block Type="math_number">
|
||||||
<Field name="NUM">1</Field>
|
<Field name="NUM">1</Field>
|
||||||
</Block>
|
</Block>
|
||||||
</Value>
|
</Value>
|
||||||
@ -377,7 +427,11 @@ class Toolbox extends React.Component {
|
|||||||
<Block type="text_length" />
|
<Block type="text_length" />
|
||||||
<Block type="text_isEmpty" />
|
<Block type="text_isEmpty" />
|
||||||
</Category>
|
</Category>
|
||||||
<Category id="time" name={Blockly.Msg.toolbox_time} colour={getColour().time}>
|
<Category
|
||||||
|
id="time"
|
||||||
|
name={Blockly.Msg.toolbox_time}
|
||||||
|
colour={getColour().time}
|
||||||
|
>
|
||||||
<Block type="time_delay">
|
<Block type="time_delay">
|
||||||
<Value name="DELAY_TIME_MILI">
|
<Value name="DELAY_TIME_MILI">
|
||||||
<Block type="math_number">
|
<Block type="math_number">
|
||||||
@ -397,7 +451,11 @@ class Toolbox extends React.Component {
|
|||||||
<Block type="infinite_loop"></Block>
|
<Block type="infinite_loop"></Block>
|
||||||
<Block type="sensebox_interval_timer"></Block>
|
<Block type="sensebox_interval_timer"></Block>
|
||||||
</Category>
|
</Category>
|
||||||
<Category id="math" name={Blockly.Msg.toolbox_math} colour={getColour().math}>
|
<Category
|
||||||
|
id="math"
|
||||||
|
name={Blockly.Msg.toolbox_math}
|
||||||
|
colour={getColour().math}
|
||||||
|
>
|
||||||
<Block type="math_number"></Block>
|
<Block type="math_number"></Block>
|
||||||
<Block type="math_arithmetic"></Block>
|
<Block type="math_arithmetic"></Block>
|
||||||
<Block type="math_single"></Block>
|
<Block type="math_single"></Block>
|
||||||
@ -450,13 +508,21 @@ class Toolbox extends React.Component {
|
|||||||
</Block>
|
</Block>
|
||||||
<Block type="io_notone"></Block>
|
<Block type="io_notone"></Block>
|
||||||
</Category>
|
</Category>
|
||||||
<Category name={Blockly.Msg.toolbox_variables} colour={getColour().variables} custom="CREATE_TYPED_VARIABLE"></Category>
|
<Category
|
||||||
<Category name="Arrays" colour={getColour().arrays} >
|
name={Blockly.Msg.toolbox_variables}
|
||||||
|
colour={getColour().variables}
|
||||||
|
custom="CREATE_TYPED_VARIABLE"
|
||||||
|
></Category>
|
||||||
|
<Category name="Arrays" colour={getColour().arrays}>
|
||||||
<Block type="lists_create_empty" />
|
<Block type="lists_create_empty" />
|
||||||
<Block type="array_getIndex" />
|
<Block type="array_getIndex" />
|
||||||
<Block type="lists_length" />
|
<Block type="lists_length" />
|
||||||
</Category>
|
</Category>
|
||||||
<Category name={Blockly.Msg.toolbox_functions} colour={getColour().procedures} custom="PROCEDURE"></Category>
|
<Category
|
||||||
|
name={Blockly.Msg.toolbox_functions}
|
||||||
|
colour={getColour().procedures}
|
||||||
|
custom="PROCEDURE"
|
||||||
|
></Category>
|
||||||
<sep></sep>
|
<sep></sep>
|
||||||
<Category name={Blockly.Msg.toolbox_io} colour={getColour().io}>
|
<Category name={Blockly.Msg.toolbox_io} colour={getColour().io}>
|
||||||
<Block type="io_digitalwrite"></Block>
|
<Block type="io_digitalwrite"></Block>
|
||||||
@ -489,7 +555,7 @@ class Toolbox extends React.Component {
|
|||||||
*/}
|
*/}
|
||||||
</xml>
|
</xml>
|
||||||
);
|
);
|
||||||
};
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default Toolbox;
|
export default Toolbox;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user