Difference between revisions of "Sensor-Crash"
From Microduino Wiki
Line 82: | Line 82: | ||
<p style="color: #333333;font-size:135%">'''Relative Tutorials'''</p> | <p style="color: #333333;font-size:135%">'''Relative Tutorials'''</p> | ||
*[[Short press and long press of switches]] | *[[Short press and long press of switches]] | ||
− | *[[Switches' states | + | *[[Switches' actions and states]] |
<br> | <br> | ||
---- | ---- |
Revision as of 08:59, 18 September 2017
| |
|
Technical Specifications
Pins
Programming Manual You can learn about Arduino IDE programming to control modules, referring to Getting Started. Common usage The signal of Crash can be read directly with digitalRead(): high (1, true) or low (0, false). #define PIN_KEY 4 //The key is connected to pin 4.
void setup() {
Serial.begin(9600); //Set the baud rate of serial communication.
pinMode(PIN_KEY, INPUT);//Set the input state of the key.
}
void loop() {
if (digitalRead(PIN_KEY)) //Detect the state of the key
{
Serial.println("KEY RELEASED");//Print “KEY RELEASED” from the serial port
}
else
{
Serial.println("KEY PRESSED");// Print “KEY PRESSED” from the serial port.
}
} Advanced Usage [_07_m_Sensor_Key] libraries reference page provides the completed details and samples of how to use Crash sensor.
Documentation
Relative Tutorials
Q&A
History
Gallery |