Arduino refactoring #4

Open
fiveop wants to merge 28 commits from fiveop/arduino_refactoring into master
Showing only changes of commit af86687e43 - Show all commits

View file

@ -2,11 +2,11 @@
// arduino is Duemilanove
// sensor is a reed sensor
#define REED_SWITCH_INPUT_PIN 13
const int REED_SWITCH_INPUT_PIN = 13;
#define RED_LED_OUTPUT_PIN 12
#define YELLOW_LED_OUTPUT_PIN 11
#define GREEN_LED_OUTPUT_PIN 10
const int RED_LED_OUTPUT_PIN = 12;
const int YELLOW_LED_OUTPUT_PIN = 11;
const int GREEN_LED_OUTPUT_PIN = 10;
void setup(){
Serial.begin(9600);