Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed documentation #75

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
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
Loading