SevSeg
SevSeg copied to clipboard
Seven segment display controller library for Arduino
Hi there, I have a 4 digit 7-segment display with an additional colon and a 3rd upper dot(to the right of the 3rd digit). These dots(L1,L2,L3) have their own common...
Hi, is there no way to use this correctly when you have delays in your program???
Unpredictable behavior occurs if only seven segments pins (that is no decimal point pins) are defined in the array `segmentPins[]` in the call to the begin() method but the parameter...
I have an old VFD that uses BCD to change the digit. I am not a coder, but butchered some code to sort of make it work. Could you add...
hi, i am using ``` byte numDigits = 4; byte digitPins[] = {10,12,11,9}; //Digits: 1,2,3,4 byte segmentPins[] = {8,7,6,5,4,3,2}; //Segments: A,B,C,D,E,F,G,Period ``` these Pins and this is my setting ```...
I recently found a custom designed 7-segment which doesn't have a driver or IC to work with. It has 8 shared pins at all for all of 8 digits. This...
I have a problem with digit practically all digits ghosting into the most significant digit when using setChars. I had issues with ghosting before when using setNum but this disappeared...
I have looked everywhere but found no solution, so I'm asking here. How would i go about lighting up multiple decimal points at once without resorting to `sevseg.setSegments`? Thanks in...