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

the LED dssply show semi-colons between 2 numbers (how do I control it) #2

Open
donwade opened this issue Dec 8, 2020 · 2 comments
Assignees
Labels
Seeed_Alphanumeric_Display_HT16K33 Label for Seeed_Alphanumeric_Display_HT16K33 UAY Unassigned yet

Comments

@donwade
Copy link

donwade commented Dec 8, 2020

If you want to make an alarm clock and would like to use the semi-colons in the middle of the 4 alpha display how is this done.

@dagwoodland
Copy link
Contributor

dagwoodland commented Dec 8, 2020

The following code shows an example of how to enable / disable the semi-colon. Where tube is the name of your tube variable.

void displaySemiColon() {
    // Clear the current buffer so that we start with everything off.
    tube.clearBuf();

    // Your code to display the time on the display can go here.

    // True for point on, false for point off. So (true, true) turns both points on, forming a semi-colon.
    tube.setPoint(true, true);

    // Show the updated buffer on the display.
    tube.display();
}

Let me know if this helps.

@MatthewJeffson MatthewJeffson added UAY Unassigned yet Seeed_Alphanumeric_Display_HT16K33 Label for Seeed_Alphanumeric_Display_HT16K33 labels Oct 9, 2024
@Lesords Lesords self-assigned this Oct 15, 2024
@Lesords
Copy link
Contributor

Lesords commented Oct 16, 2024

Hello,

I'm very sorry to have kept you waiting so long.

Do you still have this problem now?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Seeed_Alphanumeric_Display_HT16K33 Label for Seeed_Alphanumeric_Display_HT16K33 UAY Unassigned yet
Projects
Status: Todo
Development

No branches or pull requests

4 participants