You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am stuck, I have built a GPS clock using your sketch configuration. I really like the possibilities since this will be installed in Motor Home. I really need to use a 7 segment display, and I can not get the display to show more than one time segment. I can get hour or minutes, but not both. I am using an AdaFruit 7 segment LED with a backpack so the addressing is DEC over two wire analog.
This is the string in the void setup {
#ifndef AVR_ATtiny85
//Serial.begin(9600);
Serial.println(" CJ's GPS Clock ");
#endif
matrix.begin(0x70);
//Serial.write(0x70); //These should be the commands to dim the led
//Serial.write((byte)25); //These should be the commands to dim the led
}
Here is the string I added to the void loop
{
matrix.print(utc_hour, utc_second, DEC); // (utc_minutes, DEC);
matrix.writeDisplay();
delay(500);
I placed this just above your serial.print statements.
What I am looking for is to display the utc_hour & utc_minutes
Any advise would be greatly appreciated
Jim
The text was updated successfully, but these errors were encountered:
I am stuck, I have built a GPS clock using your sketch configuration. I really like the possibilities since this will be installed in Motor Home. I really need to use a 7 segment display, and I can not get the display to show more than one time segment. I can get hour or minutes, but not both. I am using an AdaFruit 7 segment LED with a backpack so the addressing is DEC over two wire analog.
This is the string in the void setup {
#ifndef AVR_ATtiny85
//Serial.begin(9600);
Serial.println(" CJ's GPS Clock ");
#endif
matrix.begin(0x70);
//Serial.write(0x70); //These should be the commands to dim the led
//Serial.write((byte)25); //These should be the commands to dim the led
}
Here is the string I added to the void loop
{
matrix.print(utc_hour, utc_second, DEC); // (utc_minutes, DEC);
matrix.writeDisplay();
delay(500);
What I am looking for is to display the utc_hour & utc_minutes
Any advise would be greatly appreciated
Jim
The text was updated successfully, but these errors were encountered: