Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -241,11 +241,11 @@ delay(10);
We end the setup function by sending the word "hi" plus a line feed out the built in serial port for debugging purposes. This way if our data comes out looking funny later on we can tell it isn't just the serial port acting up:

```arduino
Serial.print('h',BYTE);
Serial.print('h');

Serial.print('i',BYTE);
Serial.print('i');

Serial.print('\n',BYTE);//debug
Serial.print('\n');//debug

delay(1000);
}
Expand Down Expand Up @@ -431,11 +431,11 @@ void setup()

delay(3000);

Serial.print('h',BYTE);
Serial.print('h');

Serial.print('i',BYTE);
Serial.print('i');

Serial.print('\n',BYTE);//debug
Serial.print('\n');//debug

delay(1000);
}
Expand Down Expand Up @@ -469,7 +469,7 @@ void loop()

Serial.print(eeprom_output_data,DEC);

Serial.print('\n',BYTE);
Serial.print('\n');

address++;

Expand Down