src/read_sensor.cpp hinzugefügt

This commit is contained in:
2026-05-02 14:24:18 +00:00
parent 4fe896d1a8
commit 5ba8f5448a
+11
View File
@@ -0,0 +1,11 @@
#include <Arduino.h>
float get_wind_speed_kn() {
int adc = analogRead(A0);
//todo
int wert = adc;
return wert;
}