Jump to content

Building a calculator


Freeman

Recommended Posts

I was discussing with my dad and brother about graphing calculatros when my bro suggested that parts are so cheap that I might as well just build a calculator. Well, I have been thinking about this but does anyone have any suggestions or experience in this field?

Link to comment
Share on other sites

You could probably make a simple 4 function calculator, but anything more complicated than that will be a real pain, if not impossible.

 

Graphing calculators are one part hardware and another part software. Both can be daunting to figure out and do on your own. You'd have better luck coding a calculator program for the computer. This will give you some idea of the complexity involved.

Link to comment
Share on other sites

the complexity and price of the parts for a graphing calculator will make it not worth your while, as attempting to construct any form of modern calculator would be like trying to build a computer from scratch

 

however if you really wanted to make some form of calculator, you could make a simple four function analog calculator using a series of transistors, capacitors, and resistors. but you would have to read the answer to any problem in terms of an electrical signal

Link to comment
Share on other sites

the complexity and price of the parts for a graphing calculator will make it not worth your while' date=' as attempting to construct any form of modern calculator would be like trying to build a computer from scratch

 

however if you really wanted to make some form of calculator, you could make a simple four function analog calculator using a series of transistors, capacitors, and resistors. but you would have to read the answer to any problem in terms of an electrical signal[/quote']

 

I could probably build a desktop computer from scratch. However, I don't think I could build a laptop because everything needs to fit perfectly. I imagine you would have the same issue if you tried to build a calculator.

 

You'd have better luck coding a calculator program for the computer. This will give you some idea of the complexity involved.

 

I once did that using C++. It was a very simple calculator. All I really did was declare APStrings to the C++ functions. For example, if somebody typed "Multiply" the computer would use the "*" function. After that, they would type two integers. Then I used a cout command to display the answer.

Link to comment
Share on other sites

I don't have time to be very specific right now, but there are hardware and software readily available that can be adapted to this job. People did a lot of work with the 8031 types of microcontroller chips. There is a lot out on the net for it and its descendents. Some of them are pretty fast, low power, can support a lot of memory. In uses like a graphing calculator they would be way faster than a 10 MHz AT. They don't require hugely complex circuit boards, either, and the displays are available.

Link to comment
Share on other sites

I know some of the older TI calculators (82, 83, 85, 86) used the Z80 processor running around 2 Mhz.

 

If you really wanted to build a calc, I suggest using a pic microcontroller. You just need to interface a keyboard and a display screen. That will be the easy part. The hard part is writting the software for the pic-processor.

Link to comment
Share on other sites

thats amazing YT, but are an of those parts still readily available?

 

absoloutley! I have tins full of them each and then some!

you can also pick them up over the net cheap as anything too (you`ll have to program your own OS onto the EPROM though, like I did) but sure, and you`ll not pay the sort of prices I paid for mine either! :)

 

if you get stuck at all, let me know and I`ll gladly post you any parts that you have trouble getting if I have them, I`m a kinda retro-tech Museum curator :)

 

as for the OP, I have no experience with LCD dot matrix displays other than the single line (32 chr 7x8 displays) certainly nothing that will do gfx that you`re after.

Link to comment
Share on other sites

[url=http://members.lycos.co.uk/racegame/phone/Picture%20(2).jpg]http://members.lycos.co.uk/racegame/phone/Picture%20(2).jpg[/url'] some ram I made a little while ago... a whole 16 bytes worth :D

Did you have a circuit diagram to work from? (Can I have it if you do)

Did it use PICs or standard ICCs?

How did you know how to make it?

 

Same questions applies to YT's computer!

Link to comment
Share on other sites

(1)Did you have a circuit diagram to work from? (Can I have it if you do)

(2)Did it use PICs or standard ICCs?

(3)How did you know how to make it?

 

Same questions applies to YT's computer!

the () numbers are mine.

 

(1) yes, but I had to design and draw it 1`st.

(2) standard "off the shelf" IC`s.

(3) I studied electronics and took exams and read books and spent time experimenting, basicly alot of time and hard work on my part (but fun) :))

 

also some questions of importance that you didn`t ask, you need to know the CPU you wish to use and then write your own OS for it (according to your hardware and mem stack), else it`ll have no boot sequence!

oh yeah, and I had to build my own EPROM programer to blast the EPROM, as I couldn`t afford a shop one at the time.

Link to comment
Share on other sites

The problem is that there are not too few choices for programmable microcontrollers. There are too many. A 2 mHz Z80 is not only primitive these days, it's a power hog. 10 or so milliamps can power a pretty fast device, in the 25 mHz or better region, that even has a fair amount of memory on chip, really fancy communications capabilities, and costs 20 dollars or less.

 

The thing to do is to look around for prior art. People write all sorts of micro OSes and put them on the net. I've even written a multi-tasker for a PIC 16F84A chip that made it possible to run a few tasks concurrently. There is no big difference between it and the vectored interrupt routines for the old IBM PC.

 

Here is a good place to start.

 

There are some fairly cheap displays out there at places like Electronics Goldmine and All Electronics. The worst is coming up with a keyboard.

Link to comment
Share on other sites

Did you have a circuit diagram to work from? (Can I have it if you do)

Did it use PICs or standard ICCs?

How did you know how to make it?

 

Same questions applies to YT's computer!

 

Last semester I had a module on digital electronics :)

 

So yes I had a circuite diagram, unfortunatly I had to hand it in to be assessed so I no longer have it (got a first for the module though) :D

 

Standard ICC's I belive.

 

Just followed the circuite diagram then spend about 3 hours trying to work out why it wasn't working :@ then it worked :D

 

The most annoying thing was adding data to it as it wasn't connected to anything to do it automatically :s

Link to comment
Share on other sites

Why reinvent the keyboard? A standard computer keyboard is easy to interface with a PIC processor. You could probably get away uing a non-standard (I'm thinking a numberical pad add-on for labtops) just as easily.

 

All you need is the list of scan codes to see what key is being pressed.

Link to comment
Share on other sites

True, it is fun.

 

I'd just get annoyed with all the repetitive soldering that making your own keyboard would mean. Of course, this is being said by the man who's spent the last month soldering together his 1024 LED matrix board, which is only a little over half way done. I'm just a little jaded :P

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.