docs:blox:examples-inputs-events

This is an old revision of the document!


6.3 BLOX: Inputs and Sensors

Most of the projects you'll do with BLOX will involve an event in the form of a sensor or other input kicking off something that needs to happen


6.3.1 Analog Sensors

Analog sensors measure values that can vary continuously within a range. For example, a temperature sensor might provide a value anywhere between 0°C and 100°C. The value from an analog sensor is typically represented as a changing voltage, which your microcontroller converts to a digital number. You usually respond to analog sensor readings by setting thresholds. For instance, if the temperature exceeds 30°C, you might trigger a fan to turn on, and if it drops below 30°C, the fan stays off. This approach allows for more nuanced control based on the varying data the sensor provides.


6.3.2 Digital Sensors

Digital sensors work like a simple switch, offering just two possible states: on or off, triggered or idle. For example, a motion sensor might detect movement (triggered) or no movement (idle). Since digital sensors only have these two states, your code simply checks whether the sensor is triggered or not and reacts accordingly. This type of sensor is often used for straightforward tasks like detecting the presence of an object or whether a button has been pressed.

docs/blox/examples-inputs-events.1724157723.txt.gz · Last modified: 2024/08/20 12:42 by admin