From 755c26ccc260d98327f1966a587440cb24fc2177 Mon Sep 17 00:00:00 2001 From: Marlon Schumacher <schumacher@hfm-karlsruhe.de> Date: Fri, 14 Mar 2025 20:08:41 +0100 Subject: [PATCH] chore: added some doc to cpp file --- render.cpp | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/render.cpp b/render.cpp index 987652e..dc2dec2 100644 --- a/render.cpp +++ b/render.cpp @@ -14,8 +14,8 @@ Ultrasonic sensors can detect distances to a high degree of accuracy, even in many conditions where infrared sensors would not be suitable (e.g.: when natural -light is a problem. -For this example we used the [HC-SR04](https://cdn.sparkfun.com/datasheets/Sensors/Proximity/HCSR04.pdf). +light is a problem. For this example we used the [Grove Ultrasonic Ranger] +(https://wiki.seeedstudio.com/Grove-Ultrasonic_Ranger/). After it receives a short pulse (> 10us) at its TRIGGER input, the module outputs from the ECHO output a pulse whose length is proportional to the distance of the object that is in @@ -53,7 +53,7 @@ PulseIn pulseIn; Scope scope; -int sensorFreq = 10; // freq in Hz +int sensorFreq = 10; // freq in Hz for polling value and sending OSC messages int gTriggerInterval = 44100 / sensorFreq; // how often to send out a trigger. 2646 samples are 60ms int gMinPulseLength = 7; //to avoid spurious readings float gRescale = 58; // taken from the datasheet -- Gitblit v1.9.1