Skip to content

Commit

Permalink
Removed overuse of serial port, resulting in inability to reset watchdog
Browse files Browse the repository at this point in the history
  • Loading branch information
tech2077 committed Jan 2, 2014
1 parent 62cdb80 commit 747d96f
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions libraries/RobotOpen/RobotOpen.cpp 100755 → 100644
Expand Up @@ -505,8 +505,6 @@ void RobotOpenClass::writeDigital(byte channel, uint8_t state) {
digitalWrite(47+channel, state);
else
digitalWrite(51+channel, state);
Serial.print("Pin set: ");
Serial.println(channel+51);
}
}

Expand All @@ -519,8 +517,6 @@ void RobotOpenClass::makeOutput(byte channel) {
else {
pinMode(51+channel, OUTPUT);
digitalWrite(51+channel, LOW);
Serial.print("Pin Output: ");
Serial.println(channel+51);
}
digitalOutputChannels[channel] = true;
}
Expand Down

0 comments on commit 747d96f

Please sign in to comment.