Animatronic programmable controller

This is a versatile microcontroller already provisioned with some useful functionality and terminal strips and connectors so no soldering needed for the basic functionality. There’s lots more functionality available for those who can solder.

What’s built in is a servo output with connector, a 3W audio amplifier with screw terminal, RGB and RGBW neopixel LED output that can drive long strings of neopixels where you can set the color individually on each one, a built-in 3-axis accelerometer for tilt/motion/tap detection, a button/switch input, and a 3.7V LiPo charger built in where the circuit can run from battery or USB-C. You can just power it from USB or it will autoswitch and auto charge if a battery is connected and you plug or unplug from USB power.

It also has a STEMMA 4-wire connector that lets you connect up to accessory boards like real time clocks, capacitive touch sensors, GPS, displays of various types, temperature and humidity sensors, etc, just by plugging the various boards in and loading their libraries.

For those who can solder, there’s ADCs, PWM outputs, I2C, logic I/O, and so on.

There’s a whole line of these things but I’m linking specifically to the Prop-Maker. Some others have stepper and brushed motor outputs, wifi, bluetooth, etc. The processors on these things are very powerful too.

Programming is about as simple as it can be. There’s lots of stuff “under the hood” that makes dealing with these things much easier than many might think. Plug these into a computer and they look like a USB drive. You just copy your program and any libraries it needs to the USB drive and it loads and runs. You still have to know how to write a program, though.

The place that has created these is called Adafruit. They are big into STEM education and providing fun projects and teaching materials. They have lots of example programs that you can just copy and use in your own programs. CircuitPython, a variation on Python, is the language usually used with these. And there’s many other microcontrollers of various types there too.

This won’t be for everyone but those who have programmed and especially if they have programmed micros before should take to these like ducks to water.

I thought this one might be of interest since no soldering necessary for some useful functionality. Many accessories, how-to guides, tutorials, and projects to learn from there too.

3 Likes

Adafruit is awesome, that’s where almost all my RPIs came from. I love to browse around there and find parts that I didn’t even know existed.

2 Likes

Any they have put a lot of effort into documentation for their products and projects.

3 Likes

If you used an ESP32, you could have a Bluetooth and/or WiFi connection to it. They usually have a dozen IO pins you can configure as digital or analog inputs or outputs. Plus serial interfaces like I2C. Many have LiPo battery charger circuits.

I make stuff all the time with these SoCs, that have a web interface I can talk to with a cell phone or laptop.

This is a thing I made with my X1C. It clips to the front of my drone-racing goggles. Behind the LED panel is a ESP32 board that’s about the size of a postage stamp. It drives the LED panels, but it also serves a WiFi access point, that when connected to, let’s me configure what the LED panel displays.

3 Likes

That is very nicely done! Impressive work!

The reason I posted the Prop-Maker is because the major bits are brought out on connectors so users don’t need to solder to get started. The big hurdle is just programming. If anyone takes the effort to do simple programs they would have good reason to learn to solder. I think both are mysterious enough to be stoppers for many but maybe one at a time?

But totally agree on the ESP32. I picked one up recently that is used as a programmer for a smart relay. It creates a wifi hot spot you connect to and then use the web pages it serves up to configure the smart relay. I was just blown away by the concept. Smart widgets that can serve web pages to those nearby is kind of an enabling technology. Could always do it with Raspberry Pi or similar but like you said, these aren’t much bigger than postage stamps. More like a stick of gum but so small and portable.

1 Like

My first project with the Prop-Maker. Took a fair effort to get the hang of it, but now it’s actually pretty easy to work with.