Skip to content

This repository is used to display data (i.e. char) on 5x7 LED dot matrix display.

Notifications You must be signed in to change notification settings

kjitender469/5x7_LED_Matrix

Folders and files

NameName
Last commit message
Last commit date

Latest commit

bc24b39 · Mar 2, 2020

History

9 Commits
Feb 16, 2020
Mar 2, 2020
Mar 2, 2020
Mar 2, 2020
Mar 2, 2020
Mar 2, 2020
Mar 2, 2020

Repository files navigation

5x7_led_matrix

Functions are given below

glow_led()

To glow a perticular led just pass the number as an argument to this function. Example - glow_led(3)

off_led()

To off a perticular led just pass the number as an argument to this function. Example - off_led(3)

glow_all()

This function will make all the leds to glow.

off_all()

This function turn off all the leds.

disp_char()

pass any character in disp_char() function to display it on the led matrix. Example - disp_char('J')

Note - Only caps characters are supported.

disp_custom_char()

pass array of custom character created. Example -

int my_custom_char[7][5] = { {0, 0, 1, 0, 0}, {0, 1, 1, 1, 0}, {1, 0, 1, 0, 1}, {0, 0, 1, 0, 0}, {0, 0, 1, 0, 0}, {0, 0, 1, 0, 0}, {0, 0, 1, 0, 0} };

disp_custom_char(my_custom_char);

Note - Only caps characters are supported.

disp_char_scroll()

pass any character in disp_char_scroll() function to display it on the led matrix in scrolling pattern. Example - disp_char_scroll('J')

Note - Only caps characters are supported.

About

This repository is used to display data (i.e. char) on 5x7 LED dot matrix display.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published