Working with a 10 digit number
Hi All,
I'm helping a friend with an art project. It's a cool sounding big installation, and one part of it is a Nixie counter that is tracking the population of the world. So, we need to use a 10 digit number, then shift it out to five 74HC595's. So the question is, how do we increment a 10 digit number, then break it up into nibs?
He has been busting his but to get it done by openeing, which is tomorrow. Last jnight at 4:00 AM he got the nixies working. So help would be much appreciated!
Jonathan
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
www.madlabs.info - Home of the Hydrogen Fuel Cell Robot
I'm helping a friend with an art project. It's a cool sounding big installation, and one part of it is a Nixie counter that is tracking the population of the world. So, we need to use a 10 digit number, then shift it out to five 74HC595's. So the question is, how do we increment a 10 digit number, then break it up into nibs?
He has been busting his but to get it done by openeing, which is tomorrow. Last jnight at 4:00 AM he got the nixies working. So help would be much appreciated!
Jonathan
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
www.madlabs.info - Home of the Hydrogen Fuel Cell Robot
Comments
counter VAR nib(10) i VAR nib carry VAR bit initialize: for i = 0 to 9 counter(i) = 0 next return addOne: carry = 1 for i = 0 to 9 counter(i) = counter(i) + carry if counter(i) = 10 then counter(i) = 0 carry = 1 else carry = 0 endif next return
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
www.madlabs.info - Home of the Hydrogen Fuel Cell Robot