commit 9575ec796db7fe4ac62d1e03797d6538bdba6b02 Author: smayzy Date: Sat Apr 18 12:08:00 2026 +0200 init diff --git a/test/test.ino b/test/test.ino new file mode 100644 index 0000000..705d181 --- /dev/null +++ b/test/test.ino @@ -0,0 +1,20 @@ +float v = 0; +float a = 0; +float w = 0; + +void setup() { + Serial.begin(115200); +} + +void loop() { + v = random(0, 5600) / 100.0; + a = random(0, 5000) / 100.0; + w = v * a; + Serial.print("v = "); + Serial.println(v); + Serial.print("a = "); + Serial.println(a); + Serial.print("w = "); + Serial.println(w); + delay(500); +}