Panel meter calculator with floating point
lcamtuf.substack.com
Panel meter calculator with floating point
1–10 of 11 posts
Re: Panel meter calculator with floating point
#2The Casio 14-A was indeed the world’s first all-electric desk calculator. But by “desk calculator,” they literally mean “a desk that is a calculator.” The display/keyboard pictured was literally attached to a desk filled with hundreds of relays and weighed 140 kg. [0]
The “all-electric” claim is interesting. There had been scores of electric calculators for decades (Friden, Marchant, etc.) but were merely driven by an electric motor. The calculations were still performed by gears and cams and linkages.
Re: Panel meter calculator with floating point
#3https://ww1.microchip.com/downloads/en/Appnotes/90003250A.pd...
Re: Panel meter calculator with floating point
#4Today I learned you can use generic GPIO PWM to fake an analog voltage. https://ww1.microchip.com/downloads/en/Appnotes/90003250A.pd...
https://docs.arduino.cc/language-reference/en/functions/anal...
Re: Panel meter calculator with floating point
#5I didn’t actually know about the Casio 14-A until now. I almost thought the picture was AI-generated. Four functions squeezed into that compact desktop unit in 1957? Impossible with the technology of the time… The Casio 14-A was indeed the world’s first all-electric desk calculator. But by “desk calculator,” they literally mean “a desk that is a calculator.” The display/keyboard pictured was literally attached to a d…
Re: Panel meter calculator with floating point
#6Today I learned you can use generic GPIO PWM to fake an analog voltage. https://ww1.microchip.com/downloads/en/Appnotes/90003250A.pd...
Re: Panel meter calculator with floating point
#7I didn’t actually know about the Casio 14-A until now. I almost thought the picture was AI-generated. Four functions squeezed into that compact desktop unit in 1957? Impossible with the technology of the time… The Casio 14-A was indeed the world’s first all-electric desk calculator. But by “desk calculator,” they literally mean “a desk that is a calculator.” The display/keyboard pictured was literally attached to a d…
I always heard those old mechanical calculators called "adding machines" presumably because addition is all they could do?
https://en.wikipedia.org/wiki/Adding_machine
"Subtraction was impossible, except by adding the complement of a number (for instance, subtract 2.50 by adding 9,997.50)."
A few fancier ones could multiply, but they would do so by repeating an addition some number of repetitions. Nearly all output their results on a paper tape much like "store receipts" today, only printed in ink instead of via thermal transfer paper.
Re: Panel meter calculator with floating point
#8Today I learned you can use generic GPIO PWM to fake an analog voltage. https://ww1.microchip.com/downloads/en/Appnotes/90003250A.pd...
A PWM output followed by an adequate filter can be considered a cheap, low quality type of DAC. You never get the quality as good as you want but you get it good enough.
Re: Panel meter calculator with floating point
#9Today I learned you can use generic GPIO PWM to fake an analog voltage. https://ww1.microchip.com/downloads/en/Appnotes/90003250A.pd...
This is also how Arduino emulates analog output, since most micros don’t have a hardware DAC https://docs.arduino.cc/language-reference/en/functions/anal...
Re: Panel meter calculator with floating point
#10It could be fun to implement a scientific notation result display for answers that would otherwise overflow, although off the top of my head I'm not sure what the cleanest way to do that is.