This commit is contained in:
Will Bradley 2011-12-03 02:17:01 -07:00
parent e86ae78002
commit a3844c0318

View File

@ -31,7 +31,9 @@
* Relay outputs on digital pins 6,7,8,9 //TODO: fix this conflict -WB * Relay outputs on digital pins 6,7,8,9 //TODO: fix this conflict -WB
* Reader 1: pins 2,3 * Reader 1: pins 2,3
* Ethernet: pins 10,11,12,13 (reserved for the Ethernet shield) * Ethernet: pins 10,11,12,13 (reserved for the Ethernet shield)
* LCD: pins 7, 6, 5, 4, 3, 2 * LCD: pins 6, 5, 4
* Buzzer Pin: 8
* Warning LED: 9
* *
* Quickstart tips: * Quickstart tips:
* Compile and upload the code, then log in via serial console at 57600,8,N,1 * Compile and upload the code, then log in via serial console at 57600,8,N,1
@ -136,10 +138,6 @@ void setup(){ // Runs once at Arduino boot-up
// start the Ethernet connection: // start the Ethernet connection:
Ethernet.begin(mac, ip); Ethernet.begin(mac, ip);
// set up the LCD's number of rows and columns:
lcd.begin(16, 2);
// Print a message to the LCD.
lcd.print("Hello");
} }
void loop() // Main branch, runs over and over again void loop() // Main branch, runs over and over again