added blocks for simple stepper motor

This commit is contained in:
Bjoern
2022-07-05 23:05:54 +02:00
parent ef72dc8033
commit dd82781939
7 changed files with 116 additions and 0 deletions
+2
View File
@@ -8,6 +8,7 @@ import { MATH } from "./en/math";
import { MQTT } from "./en/mqtt";
import { SENSEBOX } from "./en/sensebox";
import { DISPLAY } from "./en/sensebox-display";
import { MOTORS } from "./en/sensebox-motors";
import { LED } from "./en/sensebox-led";
import { LORA } from "./en/sensebox-lora";
import { OSEM } from "./en/sensebox-osem";
@@ -34,6 +35,7 @@ export const En = {
...MATH,
...MQTT,
...DISPLAY,
...MOTORS,
...LED,
...LORA,
...OSEM,
@@ -0,0 +1,18 @@
export const MOTORS = {
/**
* Motors
*/
sensebox_motors_beginStepperMotor: "Initialize Stepper Motor (28BYJ-48)",
sensebox_motors_beginStepperMotor_rpm: "Rotations per Minute",
sensebox_motors_beginStepperMotor_pins: "Input Pins",
sensebox_motors_beginStepperMotor_tooltip: "TODO",
sensebox_motors_beginStepperMotor_helpurl: "TODO",
sensebox_motors_beginStepperMotor_step: "TODO",
sensebox_motors_moveStepperMotor: "Move Stepper Motor (28BYJ-48)",
sensebox_motors_moveStepperMotor_step: "Steps:",
sensebox_motors_moveStepperMotor_tooltip: "TODO",
sensebox_motors_moveStepperMotor_helpurl: "TODO",
}