Skip to content

Instantly share code, notes, and snippets.

View AriPal's full-sized avatar

Dler Ari AriPal

View GitHub Profile
@AriPal
AriPal / TestFacility.ino
Created October 24, 2014 08:15
I created this to show the whole code.
int ledPin1 = 6; // Red LED for FlameDetector sensor
int ledPin2 = 7; // Blue LED for PIR sensor
int PIR_sensor, Flame_Detector_sensor; // Assign two integers.
void setup()
{
Serial.begin(9600); // Communication rate
pinMode(ledPin1, OUTPUT); // Assign ledPin1 to output
pinMode(ledPin2, OUTPUT); // Assign ledPin2 to output