wayoda / LedControl

An Arduino library for MAX7219 and MAX7221 Led display drivers
Other
464 stars 243 forks source link

Delete segment #47

Open ITstreet1 opened 2 years ago

ITstreet1 commented 2 years ago

I use setDigit() to write a character on a 7 seg. How to delete that character, so nothing is displayed? Not to write 0, but to print nothing?

phd0 commented 1 year ago

use the void setDigit(int addr, int digit, byte value, boolean dp); function with value=22 (aka ' ') see the LedControl.h source code file for more explications.