Skip to content

Commit

Permalink
debugging stuff taken out. ready to rock!
Browse files Browse the repository at this point in the history
  • Loading branch information
ladyada committed Mar 20, 2011
1 parent ff008a7 commit fb7282f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion SPI_VFD.cpp
Expand Up @@ -188,9 +188,11 @@ void SPI_VFD::command(uint8_t value) {
if (_chipselect)
digitalWrite(_chipselect, HIGH);

/*
Serial.print(LCD_SPICOMMAND, HEX);
Serial.print('\t');
Serial.println(value, HEX);
*/
}

void SPI_VFD::write(uint8_t value) {
Expand All @@ -201,10 +203,11 @@ void SPI_VFD::write(uint8_t value) {
if (_chipselect)
digitalWrite(_chipselect, HIGH);

/*
Serial.print(LCD_SPIDATA, HEX);
Serial.print('\t');
Serial.println(value, HEX);

*/
}

/************ low level data pushing commands **********/
Expand Down

0 comments on commit fb7282f

Please sign in to comment.