Embedded Programming
Group Assignment
A. Understanding Toolchains
When we first started working with microcontrollers, we thought it would be as simple as writing code, pressing upload, and watching it work. Turns out, there’s a whole process happening behind the scenes—that’s what a toolchain is!
A toolchain is a set of tools that helps us write, compile, debug, and upload code to a microcontroller. Without it, our code is just text on a screen. Since each board has its own workflow, we had to figure out what worked best for each one.
The key components of a toolchain:
- Compiler: Converts code into something the microcontroller understands.
- Linker: Organizes the code and makes it executable.
- Debugger: Helps find and fix issues.
- Flashing tool: Uploads the program to the board.
- IDE (Integrated Development Environment): Where we write and test the code (e.g., Arduino IDE, VS Code, Thonny).
B. Working with Microcontrollers
Ease of Use & Development
Feature | ATmega328P (Arduino Uno) | ESP32 | RP2040 (Raspberry Pi Pico) |
---|---|---|---|
Ease of Setup | Very easy – works out of the box with Arduino IDE | Requires installing ESP-IDF or Arduino-ESP32 | Simple but needs Pico SDK or MicroPython |
Programming Language | C/C++ (Arduino) | C/C++, MicroPython | C/C++, MicroPython |
Library Support | Extensive – many built-in libraries | Large – supports Wi-Fi, Bluetooth, and IoT libraries | Moderate – supports robotics and real-time applications |
Development Tools | Arduino IDE | ESP-IDF, Arduino-ESP32, VS Code | Pico SDK, Thonny, VS Code |
Debugging | Basic – print statements in serial monitor | Advanced – supports logging and remote debugging | Moderate – debug via SWD, print statements in serial monitor |
Community Support | Very large – many tutorials and examples | Large – growing fast due to IoT demand | Moderate – strong for robotics and real-time applications |
Reliability | Very stable, minimal crashes | Can be unstable due to Wi-Fi tasks | Stable, but some quirks in multi-core processing |
Best Use Cases | LED blinking, motor control, sensors | IoT devices, smart home automation, web-based projects | Robotics, real-time motor control, audio processing |
Technical Features
Feature | ATmega328P (Arduino Uno) | ESP32 | RP2040 (Raspberry Pi Pico) |
---|---|---|---|
Clock Speed (Processing speed, MHz) | 16 MHz | 160–240 MHz (Dual Core) | 133 MHz (Dual Core) |
Cores (Number of CPU units) | 1 (Single Core) | 2 (Dual Core) | 2 (Dual Core) |
Flash Memory (Storage for program code) | 32 KB | 4 MB (External) | 2 MB (External) |
RAM (Temporary memory for running programs) | 2 KB | 520 KB | 264 KB |
GPIO Pins (General-purpose input/output for peripherals) | 14 digital, 6 analog | 34 GPIO | 26 GPIO |
ADC (Analog to Digital Converter for reading sensors) | 10-bit ADC (6 channels) | 12-bit ADC (18 channels) | 12-bit ADC (3 channels) |
PWM (Pulse Width Modulation for motors, LEDs, etc.) | 6 PWM channels | 16 PWM channels | 26 PWM channels |
Communication (Interfaces to connect with devices) | I2C, SPI, UART | I2C, SPI, UART, CAN, Ethernet | I2C, SPI, UART |
Power Consumption (Energy efficiency of the chip) | Low | High | Moderate |
Built-in Wireless (Wi-Fi & Bluetooth availability) | No | Yes (Wi-Fi + Bluetooth) | No |
Best for (Ideal applications) | Beginners, basic electronics | IoT, wireless communication, advanced applications | Robotics, real-time applications, sensor-heavy projects |
What We Learned?
At first, toolchains felt overwhelming, but once we saw them in action, they made sense. Each board has a different workflow, but all follow the same basic steps:
writing code → compiling → debugging → flashing.
The right toolchain makes this process smoother, and choosing the right board depends on what we want to build!
Individual Assignment
A. My First Time with Wokwi – Debugging, Trial, and Success
Getting Started with Wokwi
Wokwi is an online microcontroller simulator—no downloads needed. You can access it directly from your browser.
I was excited to try it out. The interface was clean, and a default program was already running. It seemed easy—until I made changes.
What I expected:
"I’ll tweak some values, and everything will work."
What actually happened:
"Why is nothing working?! What did I break?"
My Experiments
1.Running the Default Program – Success
I started by simply running the default simulation. It worked smoothly!
But I wasn’t here just to watch—I wanted to experiment.
2.Changing Color Names to 'Blood,' 'Muscle,' and 'Vein' – Instant Failure
Instead of "red, green, and blue," I tried naming colors after human anatomy.
Result: It didn’t work at all.
Lesson: Computers need predefined names or numeric values—they’re not poetic!
3.Printing Text – Displaying 'I am Devanshi'
I changed the code to print my name on the serial monitor.
Result: It worked!
Lesson: When debugging, text output is often easier to troubleshoot than visuals.
4.Trying Neil Gershenfeld’s Fab Academy Code – Server Issues
Found a code from the Fab Academy website and pasted it into Wokwi.
Issue: The website wouldn’t load due to high traffic.
Lesson: Online tools have limitations—sometimes, issues aren’t in our code but in the tool itself.
Debugging Code – Removing Unnecessary Elements
I simplified a complex program to make it run.
New Problem: Unexpected errors appeared!
Lesson: Modifying someone else’s code is tricky—randomly deleting parts can break dependencies.
5.Final Attempt – Building My Own Circuit
I built a new project from scratch using an XIAO ESP32-C3, a servo motor, an LED, and two push buttons.
Thought Process While Designing:
What should it do? I wanted a simple interaction where pressing buttons moved a servo and controlled an LED.
Pin selection: The ESP32 has multiple GPIO pins, but I had to choose ones that supported my components.
Pull-up resistors: I used the INPUT_PULLUP setting to avoid floating inputs.
Servo power needs: Servos can be power-hungry, so I checked that my board could supply enough current.
Code structure: I wrote a simple setup() to initialize components and a loop() to handle button presses.
Functionality:
Button 1 → Moves the servo left (0°) and turns the LED ON.
Button 2 → Moves the servo right (90°) and turns the LED OFF.
Steps to make it work:
Wiring the Components: Connected the buttons, servo, and LED to the ESP32.
Setting Up the Code: Defined pins, initialized components in setup(), and wrote logic in loop().
Testing & Debugging: Pressed buttons, checked responses, and fixed minor logic errors.
Final Run: Verified that the servo moved and the LED toggled as expected.
Result: It finally worked!
Lesson: Starting fresh is sometimes easier than fixing broken code.
Key Takeaways from My Wokwi Experience
Not all changes are valid – Just because something makes sense to me (like "blood" as a color) doesn’t mean the computer understands it.
Errors aren’t always obvious – Some problems took a long time to figure out, and others had no clear reason. Debugging is an art as much as a skill.
Tool limitations exist – Online platforms depend on factors like server traffic. Sometimes, an issue isn’t in our code but in the tool itself.
Writing my own code was easier – Instead of modifying a complex program, starting from scratch gave me more control.
Persistence pays off – After multiple failures, getting a working circuit felt like a real achievement. This was my first embedded simulation, and it was totally worth it.
Since, WOKWI was not functioning conviniently due to heavy website traffic, using varied development programming software.
B. Beat Sync Lights – Let Your LEDs Dance! Working with Tinker Cad
Ever wanted your lights to dance with your music? That’s exactly what I built using an Arduino Uno and a sound sensor! Basically, the sensor listens for beats, and the Arduino makes the LEDs blink accordingly. It’s like a mini disco in your room!
How It Works?
- Sound sensor picks up music beats – It detects sound intensity (how loud it is).
- Arduino reads the sensor values – If the sound crosses a certain level, it knows a beat has hit.
- LED reacts to the beat – If the music is loud enough, the LED flashes. If it's quiet, the LED stays off.
- Adjust the sensitivity – You can tweak the threshold to make it more responsive to beats!
Things Needed to Build
- Arduino Uno
- Sound sensor (KY-038 or similar)
- LED(s)
- 220Ω resistors
- Jumper wires & breadboard
- Music! (The more bass, the better!)
Putting It Together- Circuit Diagram
Circuit On Breadboard
Hero Shots