Skip to content

Instantly share code, notes, and snippets.

@agrif
Created March 9, 2021 23:57
Show Gist options
  • Select an option

  • Save agrif/88046e6dc953288000b6a922b2317db0 to your computer and use it in GitHub Desktop.

Select an option

Save agrif/88046e6dc953288000b6a922b2317db0 to your computer and use it in GitHub Desktop.
void display_num(DisplayType type, uint16_t v) {
uint8_t out[DISPLAY_DIGITS];
unsigned int i;
for (i = 0; i < DISPLAY_DIGITS; i++) {
out[i] = v % 10;
v /= 10;
if (!v) {
break;
}
}
for (i++; i < DISPLAY_DIGITS; i++) {
out[i] = 0xf;
}
display_set(type, out);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment