From 5ba8f5448afefd4482b0db8ec56192b490f5521a Mon Sep 17 00:00:00 2001 From: ingressy Date: Sat, 2 May 2026 14:24:18 +0000 Subject: [PATCH] =?UTF-8?q?src/read=5Fsensor.cpp=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/read_sensor.cpp | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/read_sensor.cpp diff --git a/src/read_sensor.cpp b/src/read_sensor.cpp new file mode 100644 index 0000000..723d533 --- /dev/null +++ b/src/read_sensor.cpp @@ -0,0 +1,11 @@ +#include + + +float get_wind_speed_kn() { + int adc = analogRead(A0); + + //todo + + int wert = adc; + return wert; +} \ No newline at end of file