To put it simply: as part of our group work, we got hands-on experience with a range of microcontrollers—like the ATTINY from the AVR8 family and SAMD, RP2040, and ESP32 from the ARM32 family. We compared these to see which one best met our project needs, taking into account factors such as power consumption, processing speed, and peripheral compatibility.
Tested different microcontrollers: RP2040, ESP32, ATTiny, and SAMD.
RP2040 has a built-in bootloader, making it easy to flash.
ESP32 supports Wi-Fi and Bluetooth, good for IoT.
ATTiny is low-power and simple, ideal for small applications.
Seeed Studio boards integrate essential components, simplifying use.
Used Arduino IDE to install toolchains for various microcontrollers.
Some devices use UF2 bootloading for easy drag-and-drop programming.
Explored MicroPython for interactive programming and debugging.
Here I am during the group assignment
Week 3: Embedded Programming
This week, we delved into embedded programming to interact with local input/output devices and explore both wired and wireless communication. In my projects, I used a microcontroller to display information on an LCD screen and toggle between modes using a simple button.
Check out the video below to see my microcontroller in action:
And here’s a closer look at the code I developed. This snippet handles toggling between a welcome message and a fire animation when the button is pressed.