7 Segment Display Multiplexing help – electroSome https://electrosome.com/topic/7-segment-display-multiplexing/feed/ Sat, 18 Mar 2023 04:57:28 +0000 https://bbpress.org/?v=2.6.9 en-US https://electrosome.com/topic/7-segment-display-multiplexing/#post-7541 <![CDATA[7 Segment Display Multiplexing help]]> https://electrosome.com/topic/7-segment-display-multiplexing/#post-7541 Sat, 26 Oct 2013 16:48:25 +0000 uthmanjta Can any one pls help me to modify the code “Multiplexing of Seven Segment Displays with PIC Microcontroller” with three buttons to display a 3 digit number to display stable. button are UP, DOWN, SET/STORE. PLs help me.
thanks
uthman

]]>
https://electrosome.com/topic/7-segment-display-multiplexing/#post-7546 <![CDATA[Reply To: 7 sgment Multiplexing help]]> https://electrosome.com/topic/7-segment-display-multiplexing/#post-7546 Mon, 28 Oct 2013 04:15:43 +0000 Ligo George Simply write a function to write 3 digit number to multiplexed display…
as given in the tutorial…
..
Let ‘i’ be an integer and display() is the function to write to display..
if(switch 1 pressed)
i++;
if(switch 2 pressed)
i–;
if(switch 3 pressed)
save i;
display(i)

It is very simple… just apply the logic…

]]>