Looking for suggestions on computing demo for Cub Scouts.
RobotWorkshop
Posts: 2,307
I need to talk about computers for my sons cub scout den meeting. Besides covering the basic parts of a computer (mouse, keyboard, CPU, monitor, drives, etc) I thought it would be good to show off some of the microcontrollers and how little computers are so pervasive in out everyday things. Also, perhaps some things that demonstrate simple logic (AND, OR, etc) and simple program demos. Has anyone here had to do a similar demo? Any suggestions?
Comments
Tony
Show a bit of binary math like...
DEBUG "0001", CR
DEBUG "0001", CR
DEBUG BIN4 %0001 + %0001
Then maybe show some LEDs or a 7 segment display and show how 1's light them up like...
DIRS = %11111111
OUTA = %00001101