top of page
Search

Arduino Lunch Box Alarm| Reed Switch

  • Alexa F.
  • Apr 5, 2018
  • 1 min read

SOURCE CODE:

const int SpeakerPin = 9;//define piezo pin const int reedSwitch = A0;//define reed switch sensor int sensorValue;//define sensor value

void setup() {

pinMode(reedSwitch, INPUT);//set the reed switch as an input Serial.begin(9600);//begin the serial monitor }

void loop() { sensorValue = analogRead(reedSwitch);//read the reed switch

if (sensorValue > 100){//if the magnet is far away turn on the alarm tone(SpeakerPin, 800, 600); delay(200); } Serial.println(sensorValue);//print the sensor value to the serial monitor }


 
 
 
Single post: Blog_Single_Post_Widget

Address

Fanwood, NJ 07023, USA

Contact

©2017 by Robotic Nation. Proudly created with Wix.com

bottom of page