[Home] [Downloads] [Search] [Help/forum]


Register forum user name Search FAQ

Gammon Forum

[Folder]  Entire forum
-> [Folder]  Electronics
. -> [Folder]  Microprocessors
. . -> [Subject]  Why electronics?

Why electronics?

Postings by administrators only.

[Refresh] Refresh page


Posted by Nick Gammon   Australia  (22,973 posts)  [Biography] bio   Forum Administrator
Date Tue 25 Jan 2011 03:55 AM (UTC)

Amended on Tue 25 Jan 2011 03:56 AM (UTC) by Nick Gammon

Message
In case any of the regular visitors to this forum are wondering "what has electronics got to do with MUD games?" - then this is my response ...

Apart from the obvious fact that PCs (and Macs etc.) are basically sophisticated electronic gadgets, I have been experimenting recently with making an RPG game "on a chip" (or a least, a few chips). This is the prototype:



The basic idea is that the entire game is on an ATmega328P microprocessor (visible above but not very clearly, in the top left corner).

This particular chip has 32 Kb of "firmware" (with 512 bytes used for the bootloader). It also has 2 Kb of SRAM and 1 Kb of EEPROM. The firmware RAM is unchanged even when powered off, so you can always just turn it on and play. The SRAM is your volatile RAM for calculations (eg. combat calculations) and the EEPROM can be changed by the program to save stuff between power-off sessions. For example, the EEPROM is used to remember which room you were in.

As you can see from the photo, there is a 4x20 character LCD display to show where you are, with 3 buttons underneath (like a mobile phone) which will have different functionality depending on the circumstances. There is also a "directional keypad" on the right which lets you go north, south etc.

In these modern times when computers are becoming more and more complex (what with DLLs, operating systems which require a gigabyte of memory, viruses, etc.) it is a bit of a refreshing change to make a game that fits entirely into 32 Kb of memory.

Programming is in C++, and changes can be quickly downloaded via the USB cable you see in the photo. Once downloaded the whole thing can be powered from a 9v battery.

- Nick Gammon

www.gammon.com.au, www.mushclient.com
[Go to top] top

Posted by Twisol   USA  (2,257 posts)  [Biography] bio
Date Reply #1 on Tue 25 Jan 2011 03:58 AM (UTC)
Message
That's really cool! I've always wanted to try doing low-level/hardware stuff. Is the Arduino a good place to start?

'Soludra' on Achaea

Blog: http://jonathan.com/
GitHub: http://github.com/Twisol
[Go to top] top

Posted by Nick Gammon   Australia  (22,973 posts)  [Biography] bio   Forum Administrator
Date Reply #2 on Tue 25 Jan 2011 04:37 AM (UTC)

Amended on Tue 25 Jan 2011 04:51 AM (UTC) by Nick Gammon

Message
Well I've certainly been happy with it. I've also tried other microprocessors, and without wanting to sledge anyone, I have to say that the Arduino wins my personal award for being extremely well documented, works "out of the box" and easy to get started with.

I've been ordering mine from:

http://www.adafruit.com/

In particular you might want to look for the "Starter Pack for Arduino" - $US 65.

The Arduino itself is only $US 30, assembled, and is pretty good value IMHO.

It can be programmed "in circuit" using a standard USB cable. The programming environment (free download) works on Mac, Windows and Linux. Programming is in a gcc-variant, and seems to work pretty smoothly.

The Starter Pack gives you some extra goodies which you might appreciate if you are just starting to play, like a battery pack, USB cable, protoshield kit, breadboard, 9v wallplug, and some preliminary components like LEDs, variable resistors, resistors, switches, and a light sensor.

One of the things I like about the Arduino is their "shield" idea, which basically means you can plug another circuit board on top of the processor because the main board brings out most pins on a sort-of header-thing. You can then just plug another gadget on top. For example, Ethernet board, LED board, prototyping board.

Just to show the idea, here is my Lots Of LEDs shield, running the Game Of Life:



Side-on, you can see better that the LEDs are on top of the processor:



And then a quick yank, and they are separated. You can see how the pins mate together to quickly connect them together:



(The red tape is because the bottom of the LEDs are pretty damn close to the USB connector, and I was worrying about them shorting out).

It's this flexibility which is very appealing - there are lots of shields and other stuff on the web site, and you soon start thinking about how you might measure temperatures, check switches, light levels etc., and then do things with that information.

For example, with the Ethernet shield, you can connect to a local web server and upload the data. Or you can use the raw Arduino to do RS232 comms (via the USB cable).

- Nick Gammon

www.gammon.com.au, www.mushclient.com
[Go to top] top

Posted by Nick Gammon   Australia  (22,973 posts)  [Biography] bio   Forum Administrator
Date Reply #3 on Tue 25 Jan 2011 04:49 AM (UTC)
Message
By the way, check out the size of the processor on the new SMD (surface mounted device) edition:



I have ordered a couple of these but they haven't arrived yet. Compare the processor size (circled in red) to the photos further up the page. By comparison, you can see the size of the USB outlet on the left, and the 9v power socket.

When you consider that that tiny little processor has 32 Kb of RAM, plus the other stuff I mentioned above, including support for serial, SPI (and other) communication, and runs at 16 MHz, it is pretty amazing. I mean, by way of comparison, the early IBM PCs ran at 4.77 MHz.

- Nick Gammon

www.gammon.com.au, www.mushclient.com
[Go to top] top

Posted by Twisol   USA  (2,257 posts)  [Biography] bio
Date Reply #4 on Tue 25 Jan 2011 07:52 AM (UTC)

Amended on Tue 25 Jan 2011 07:56 AM (UTC) by Twisol

Message
Hmm, you edited your post and replaced it with something else - I was responding to the Arduino stuff now in the other post.

My comments still stand though: that's really cool :D I think I need to get myself an Arduino kit.

([EDIT]: Oh - I think you moved my post, now it makes sense.)

'Soludra' on Achaea

Blog: http://jonathan.com/
GitHub: http://github.com/Twisol
[Go to top] top

Posted by Nick Gammon   Australia  (22,973 posts)  [Biography] bio   Forum Administrator
Date Reply #5 on Sat 29 Jan 2011 06:55 AM (UTC)
Message
My SMD (surface mounted device) Arduino arrived a couple of days ago. It is pretty amazing to think that all that processing power is on a chip not much larger than a match head:



Zooming in:



Remember, this chip can hold a 32 Kb program, with 2 Kb of RAM, and 1 Kb of EEPROM for saving data from one session to the next.

- Nick Gammon

www.gammon.com.au, www.mushclient.com
[Go to top] top

The dates and times for posts above are shown in Universal Co-ordinated Time (UTC).

To show them in your local time you can join the forum, and then set the 'time correction' field in your profile to the number of hours difference between your location and UTC time.


18,266 views.

Postings by administrators only.

[Refresh] Refresh page

Go to topic:           Search the forum


[Go to top] top

Quick links: MUSHclient. MUSHclient help. Forum shortcuts. Posting templates. Lua modules. Lua documentation.

Information and images on this site are licensed under the Creative Commons Attribution 3.0 Australia License unless stated otherwise.

[Home]


Written by Nick Gammon - 5K   profile for Nick Gammon on Stack Exchange, a network of free, community-driven Q&A sites   Marriage equality

Comments to: Gammon Software support
[RH click to get RSS URL] Forum RSS feed ( https://gammon.com.au/rss/forum.xml )

[Best viewed with any browser - 2K]    [Hosted at HostDash]