Add small ledstrip blocky editor
This commit is contained in:
parent
e8448893fd
commit
a40d4126cb
5 changed files with 212 additions and 1 deletions
6
.gitignore
vendored
6
.gitignore
vendored
|
@ -1 +1,5 @@
|
|||
build/
|
||||
.build/
|
||||
editor/.idea/
|
||||
editor/.cache
|
||||
editor/dist
|
||||
editor/node_modules
|
||||
|
|
170
editor/LedBlocks.ts
Normal file
170
editor/LedBlocks.ts
Normal file
|
@ -0,0 +1,170 @@
|
|||
import Blockly from "blockly";
|
||||
import lua from "blockly/lua"
|
||||
|
||||
export default class LedBlocks {
|
||||
|
||||
static AddBlocks() {
|
||||
|
||||
this.add_delay_block()
|
||||
this.add_waitframes_block()
|
||||
this.add_wled_block()
|
||||
this.add_led_amount();
|
||||
}
|
||||
private static add_wled_block() {
|
||||
const delay_json = {
|
||||
"type": "led",
|
||||
"message0": "%1 %2 %3 %4 %5",
|
||||
"previousStatement": null,
|
||||
"nextStatement": null,
|
||||
"args0": [
|
||||
{
|
||||
"type": "field_label_serializable",
|
||||
"name": "NAME",
|
||||
"text": "led"
|
||||
},
|
||||
{
|
||||
"type": "input_value",
|
||||
"name": "index",
|
||||
"check": "Number"
|
||||
},
|
||||
{
|
||||
"type": "input_value",
|
||||
"name": "red",
|
||||
"check": "Number"
|
||||
},
|
||||
{
|
||||
"type": "input_value",
|
||||
"name": "green",
|
||||
"check": "Number"
|
||||
},
|
||||
{
|
||||
"type": "input_value",
|
||||
"name": "blue",
|
||||
"check": "Number"
|
||||
}
|
||||
],
|
||||
"colour": 345,
|
||||
"tooltip": "Sets the led at index 'index' to the specified RGB-value ",
|
||||
"helpUrl": ""
|
||||
}
|
||||
|
||||
Blockly.Blocks['led'] = {
|
||||
init: function () {
|
||||
this.jsonInit(delay_json);
|
||||
}
|
||||
};
|
||||
|
||||
lua['led'] = function (block) {
|
||||
const value = lua.valueToCode(block, 'index', lua["ORDER_ATOMIC"]);
|
||||
const r = lua.valueToCode(block, 'red', lua["ORDER_ATOMIC"]);
|
||||
const g = lua.valueToCode(block, 'green', lua["ORDER_ATOMIC"]);
|
||||
const b = lua.valueToCode(block, 'blue', lua["ORDER_ATOMIC"]);
|
||||
return `led(${value},${r},${g},${b})
|
||||
`;
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
private static add_waitframes_block() {
|
||||
const delay_json = {
|
||||
"type": "waitframes",
|
||||
"previousStatement": null,
|
||||
"nextStatement": null,
|
||||
"message0": "%1 %2",
|
||||
"args0": [
|
||||
{
|
||||
"type": "field_label_serializable",
|
||||
"name": "NAME",
|
||||
"text": "waitframes"
|
||||
},
|
||||
{
|
||||
"type": "input_value",
|
||||
"name": "framewait",
|
||||
"check": "Number"
|
||||
}
|
||||
],
|
||||
"colour": 345,
|
||||
"tooltip": "Waits the given amount of frames",
|
||||
"helpUrl": ""
|
||||
}
|
||||
|
||||
Blockly.Blocks['waitframes'] = {
|
||||
init: function () {
|
||||
this.jsonInit(delay_json);
|
||||
}
|
||||
};
|
||||
|
||||
lua['waitframes'] = function (block) {
|
||||
// @ts-ignore
|
||||
const value = lua.valueToCode(block, 'framewait', lua.ORDER_ATOMIC);
|
||||
return 'waitframes(' + value + ')\n';
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
private static add_led_amount(){
|
||||
const def = {
|
||||
"type": "ledamount",
|
||||
"message0": "%1",
|
||||
"args0": [
|
||||
{
|
||||
"type": "field_label_serializable",
|
||||
"name": "NAME",
|
||||
"text": "ledamount in strip"
|
||||
}],
|
||||
"output": null,
|
||||
"colour": 345,
|
||||
"tooltip": "Gives the number of leds in the ledstrip",
|
||||
"helpUrl": ""
|
||||
}
|
||||
|
||||
Blockly.Blocks['ledamount'] = {
|
||||
init: function () {
|
||||
this.jsonInit(def);
|
||||
}
|
||||
};
|
||||
|
||||
lua['ledamount'] = function(block) {
|
||||
// @ts-ignore
|
||||
return ["ledamount()", lua.ORDER_NONE];
|
||||
};
|
||||
}
|
||||
|
||||
private static add_delay_block() {
|
||||
const delay_json = {
|
||||
"type": "delay",
|
||||
"message0": "%1 %2",
|
||||
"previousStatement": null,
|
||||
"nextStatement": null,
|
||||
"args0": [
|
||||
{
|
||||
"type": "field_label_serializable",
|
||||
"name": "NAME",
|
||||
"text": "delay (ms)"
|
||||
},
|
||||
{
|
||||
"type": "input_value",
|
||||
"name": "wait_time_millisecs",
|
||||
"check": "Number"
|
||||
}
|
||||
],
|
||||
"colour": 345,
|
||||
"tooltip": "Waits the given amount of time in milliseconds",
|
||||
"helpUrl": ""
|
||||
}
|
||||
|
||||
Blockly.Blocks['delay'] = {
|
||||
init: function () {
|
||||
this.jsonInit(delay_json);
|
||||
}
|
||||
};
|
||||
|
||||
lua['delay'] = function (block) {
|
||||
// @ts-ignore
|
||||
const value = lua.valueToCode(block, 'wait_time_millisecs', lua.ORDER_ATOMIC);
|
||||
return 'delay(' + value + ')\n';
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
}
|
17
editor/Utils.ts
Normal file
17
editor/Utils.ts
Normal file
|
@ -0,0 +1,17 @@
|
|||
export default class Utils{
|
||||
public static offerContentsAsDownloadableFile(contents: string | Blob, fileName: string = "download.txt",
|
||||
options?: { mimetype: string }) {
|
||||
const element = document.createElement("a");
|
||||
let file;
|
||||
if (typeof (contents) === "string") {
|
||||
file = new Blob([contents], {type: options?.mimetype ?? 'text/plain'});
|
||||
} else {
|
||||
file = contents;
|
||||
}
|
||||
element.href = URL.createObjectURL(file);
|
||||
element.download = fileName;
|
||||
document.body.appendChild(element); // Required for this to work in FireFox
|
||||
element.click();
|
||||
}
|
||||
|
||||
}
|
18
editor/tsconfig.json
Normal file
18
editor/tsconfig.json
Normal file
|
@ -0,0 +1,18 @@
|
|||
{
|
||||
"compilerOptions": {
|
||||
"module": "commonjs",
|
||||
"target": "es5",
|
||||
"sourceMap": true,
|
||||
"resolveJsonModule": true,
|
||||
"esModuleInterop": true,
|
||||
"lib": [
|
||||
"DOM",
|
||||
"es5",
|
||||
"scripthost",
|
||||
"es2015.collection"
|
||||
]
|
||||
},
|
||||
"exclude": [
|
||||
"node_modules"
|
||||
]
|
||||
}
|
2
test.lua
2
test.lua
|
@ -1,3 +1,5 @@
|
|||
print("hello world")
|
||||
led(1, 255, 255, 3)
|
||||
print("There are " .. tostring(ledamount()) .. " leds")
|
||||
delay(500) -- Waits X millissecs
|
||||
waitframes(5) -- waits X frames, where a 'frame' is defined in full refreshes
|
||||
|
|
Loading…
Reference in a new issue