| | |
| | | |
| | | 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 |
| | |
| | | |
| | | 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 |