Skip to content

Instantly share code, notes, and snippets.

@jarekt
Created October 15, 2023 10:18
Show Gist options
  • Save jarekt/414082cb9bf230b3856033152a17040b to your computer and use it in GitHub Desktop.
Save jarekt/414082cb9bf230b3856033152a17040b to your computer and use it in GitHub Desktop.
4bit bcd to 7 segment (0x1-0xF)
const char bcd27seg[16] = {
0x3F, 0x06, 0x5b, 0x4f,
0x66, 0x6d, 0x7d, 0x07,
0x7f, 0x67, 0x77, 0x7c,
0x39, 0x5e, 0x79, 0x71}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment