yessssssssss!
This commit is contained in:
10
arduinosrc/main.ino
Normal file
10
arduinosrc/main.ino
Normal 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
|
||||
}
|
||||
Reference in New Issue
Block a user