//*********************************************************************
// Smart Home Stephen Griffiths
//
//*********************************************************************
#include "setup.h"
#include "runningfunctions.h"
void setup() {
pinMode(BUTTON_1_PIN, INPUT);
pinMode(BUTTON_2_PIN, INPUT);
pinMode(BUTTON_3_PIN, INPUT);
pinMode(LED_PIN, OUTPUT);
pinMode(PIR_PIN, INPUT);
Serial.begin(115200);
//pinMode(DHT_PIN, INPUT);
//attachInterrupt(BUTTON_1_PIN, handleButtonInterrupt, CHANGE);
lcdGreeting();
lcdInstructionsScroll();
home();
}
void loop() {
polling();
lighting_states();
}