yessssssssss!

This commit is contained in:
rattatwinko
2025-06-09 20:55:31 +02:00
parent cbbe868c8c
commit e80a94ff94
10 changed files with 773 additions and 0 deletions

10
arduinosrc/main.ino Normal file
View File

@@ -0,0 +1,10 @@
void setup() {
Serial.begin(9600); // Ensure this matches the baud rate in Main.java
}
void loop() {
// Replace this with your actual RPM measurement logic
double currentRPM = 1500.0; // Example RPM value
Serial.println(currentRPM);
delay(100); // Send data every 100ms, adjust as needed
}