Skip to comments
To set the project up, the following hardware is needed:
1x https://www.adafruit.com/product/3800
2 x https://www.adafruit.com/product/938
For the sound effects a piezo buzzer is nedded (optional)...
1x https://www.adafruit.com/product/1740
The code and instructions on how to flash the firmware of the Itsy Bitsy M4 are available on Github...
https://github.com/SwannSchilling/ItsyBitsy_M4_Oled_Eyes
To use the eyes in ARC, simply check the Device Manager in Windows, to find the port...
And send then number of the animation to be played via serial!
Create a script to eg play animation number one, with a connected device on COM11
You can make your own sprite sheets and create your own animations!
I am using the following website for creating spritesheets...
https://codeshack.io/images-sprite-sheet-generator/
Have fun!!
To set the project up, the following hardware is needed:
1x https://www.adafruit.com/product/3800
2 x https://www.adafruit.com/product/938
For the sound effects a piezo buzzer is nedded (optional)...
1x https://www.adafruit.com/product/1740
The code and instructions on how to flash the firmware of the Itsy Bitsy M4 are available on Github...
https://github.com/SwannSchilling/ItsyBitsy_M4_Oled_Eyes
To use the eyes in ARC, simply check the Device Manager in Windows, to find the port...
And send then number of the animation to be played via serial!
Create a script to eg play animation number one, with a connected device on COM11
Code:
port = 'COM11'
baud = 115200
COM.Close(port);
COM.Open(port, baud);
str = ('1\r\n')
COM.WriteString(port, str);
COM.Close(port);
Hit play and voila, the animation will be played...You can make your own sprite sheets and create your own animations!
I am using the following website for creating spritesheets...
https://codeshack.io/images-sprite-sheet-generator/
Have fun!!
By Mickey666Maus
— Last update
Other robots from Synthiam community

Smarty's Combot - The Ez-Robot Computer System
Hi there, today I introduce you my new EZ-Robot Project: "Combot". Combot is a working 8-Core Super-Computer...

Ericez's Smart Cute Trash Can
not finished, but it was my idea to make smart trash can, This is just an experiment, later I plan to make a trash can...

Bhouston's Inmoov's New Gripper
I found a design for a robotic gripper on Instructables, so I thought I would make one for my InMoov. The basic design...
can i use the little speaker from iotiny?
https://www.amazon.com/s?k=arduino+small+speaker&ref=nb_sb_noss
i have 3 pair of speakers from old monitors.they are good.
I have been thinking about using OLED eyes for quite sometime, but went with HDMI screen out of simplicity/utility I suppose. The OLEDs are definitely cool and give a more classic robot look. Maybe someday I will convert mine or try it on another project. You also have me thinking about VR/IK more now that I am finally beginning to understand what you are doing with it. Thanks much for posting. Great work.
Martin