Arduino Nano Forms Core Of Sawppy Wired Controller
At this point in the project, I have an Arduino sketch that reads an analog joystick's position and calculates speed and position for Sawppy's ten serial bus servos to execute that command. Now I turn my attention back to the hardware, which up until this point is a collection of parts connected by jumper wires. Good for experimental prototyping, not good for actually using in the field.
The biggest switch is from using an Arduino Uno clone to an Arduino Nano clone (*). The latter is far smaller and would allow me to package everything inside a single hand-held assembly. Both Arduino are based on the same ATmega328 chip and offers all the input and output I need for this project. Typically, beginners like to start with an Uno because of its selection of compatible Arduino Shields, but that is not a concern here.
This specific Arduino Nano will be mounted on a prototype perforated and plated circuit board. It is placed on one end of the board in order to keep its USB port accessible. Two other components were soldered to the same prototype board: a 4-pin JST-XH connector for power and serial communications, and an analog joystick module.
My mess of jumper wires were then replaced by short segments of wire that are soldered in place for greater reliability. This is a relatively simple project so there aren't very many wire connections, and they all easily fit on the back.
In theory the Arduino sketch can be seamlessly switched over to this board. In practice I saw bootloader errors when I plugged in this board. It turns out, for this particular clone, I needed to select the "Tools" / "Processor" / "ATmega328P (Old Bootloader)" option in Arduino IDE. As a beginner I'm not completely sure what this meant, but I noticed sketch upload speed is significantly slower relative to the Uno. My source code was unchanged and it all still worked. A few test drive sessions verified this little hand held assembly could drive Sawppy as designed.
Next step: an enclosure.
(*) Disclosure: As an Amazon Associate I earn from qualifying purchases.