Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion Adafruit_LEDBackpack.h
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ class Adafruit_7segment : public Adafruit_LEDBackpack {

/*!
@brief Write raw segment bits into display buffer.
@param x Character position (0-3).
@param x Character position (0-4), with 2 being the colon.
@param bitmask Segment bits.
*/
void writeDigitRaw(uint8_t x, uint8_t bitmask);
Expand Down
2 changes: 1 addition & 1 deletion examples/clock_sevenseg_gps/clock_sevenseg_gps.ino
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ void loop() {
clockDisplay.writeDigitNum(1, 0);
// Also pad when the 10's minute is 0 and should be padded.
if (minutes < 10) {
clockDisplay.writeDigitNum(2, 0);
clockDisplay.writeDigitNum(3, 0);
}
}

Expand Down