Motion Sensor

A motion sensor detects motion within a certain range.
Information

Type : Sensor

Mode : Digital

Pins : 0-14

Output Values : 0-1

Tutorial : funduino

Image by funduino, CC-BY-SA.

Connection scheme

Scheme made with Fritzing.

Functions

Digital Read

Digital Read State

Reads a digital value.

void function_0_motionSensor(){
int value = digitalRead(pin_0_motionSensor);
function_0_motionSensor();
}
  
int value = digitalRead(pin_0_motionSensor);
  
void function_0_motionSensor(){
int value = digitalRead(pin_0_motionSensor);
state = 1;
}
  

Last modified April 12, 2022: updated code snippets (e7162de)