Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save vishnuharidas-qburst/d55433fd00db8cf170bfa22994090d90 to your computer and use it in GitHub Desktop.

Select an option

Save vishnuharidas-qburst/d55433fd00db8cf170bfa22994090d90 to your computer and use it in GitHub Desktop.
@Composable
fun LedMatrixDisplay(
number: Int = 0
) {
val character = when(number){
0 -> number00
1 -> number01
2 -> number02
3 -> number03
4 -> number04
5 -> number05
6 -> number06
7 -> number07
8 -> number08
9 -> number09
else -> number00
}
// …
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment