Embedded Architecture refers to the design and structure of an embedded system's hardware and software components. It includes the microcontroller/microprocessor, memory, input/output interfaces, and the software stack that runs on the hardware.
This week I started by researching more about embedded programming and embedded systems using ChatGPT and some YouTube videos for more understanding on this week 4.
Embedded programming is the process of writing software for embedded systems, which are small computers built into larger devices to perform specific tasks. This type of programming focuses on efficiency, real-time performance, and direct control of hardware. link
This week's assignment was to browse through the datasheet for our microcontroller, and I chose to use Arduino Uno R3.
I went through the ATmega328P datasheet, which is the microcontroller used in the Arduino Uno R3, and here’s what I found.
A datasheet is basically a technical guide that explains everything about a component—its specifications, how it works, and how to use it properly in a circuit.
For the ATmega328P, the datasheet provides details on its 8-bit AVR architecture, operating voltage (1.8V–5.5V), and clock speed (16 MHz). It also outlines the memory structure, which includes 32 KB of Flash, 2 KB of SRAM, and 1 KB of EEPROM.
The datasheet also has a pin configuration section, which describes all 28 pins and their functions, like GPIOs, ADC, UART, SPI, I2C, and PWM.
I got these imformation on link
For the second datasheet i used Seeed Studio XIAO ESP32C3 as it is the simplified verson.
The Seeed Studio XIAO ESP32C3 has 14 pins which show how simplified it is copmrered to the ATmega328P above which have 28 pins, and i wanted to use it in the next Assignments that is why i searched for the it's datasheet(link)
To program a microcontroller and simulate its operation, I started by exploring WOKWI. In the wokwi I needed to blink an LED and rotate a servo motor.
The first step was to browse WOKWI in my browser, then click on the first link.
Inside wokwi as shown on the picture above,I stated by signing in using my email then i start on the arduino.
In the arduino i find some exercises where i chose the LED and the switch.
This is a video showing how it was working.
This code runs on an ESP32-C3 board and sets up pins D2, D3, and D4 as outputs (likely connected to red, green, and blue LEDs). In the setup() function, it starts serial communication at 115200 baud and prints a welcome message. In the loop(), it turns on each LED one at a time—first red (D2), then green (D3), then blue (D4)—each for 500 milliseconds, printing the color name to the Serial Monitor as it goes. After lighting each LED, it turns it off before moving to the next, creating a repeating red-green-blue blinking pattern.
This ESP32-C3 code lights up red, green, and blue LEDs one after the other. Each LED turns on for half a second while the color name is printed on the screen, then turns off before the next one lights up. It keeps repeating in a loop.