2. Embeded Programming

Group assigment

Individual assigment

Summary

During this week of embended programming, I focucced on the resusearch of several chips. I chose to dive deeper for ESP32; and made a simple circuit and program that detect an objet and lit led depending on the distance from ultrasonic sensor. Details descprition bellow.

ESP32

ESP32 is a low-power, high-performance microcontroller with Wi-Fi and Bluetooth capabilities, ideal for IoT projects, embedded systems, and automation. It is widely used due to its versatility, power efficiency, and strong wireless connectivity.

Key Features of ESP32

Some application of ESP32

To simulate a circuit, I used a tool called WOKWI.

WOKWI

Wokwi is an online simulator for embedded systems that is primarily used for testing and prototyping several microcontroller chips mainly Arduino, ESP32, Raspberry Pi Pico. It allows users to write and run code in a virtual environment without hardware. You can use it throgh here here. It is free to use. To use it, you only a divice connected to internet.

First step, I selected ESP32 microcontroller

WOKWI

I used Plus icon to add more components

WOKWI

I added the following components

WOKWI

Note: To change the color of LED or wire, select the compontent and color pallete will appear at the top left corner and then select color you prefer

WOKWI

To add wire, I selected component terminal.

WOKWI

After connecting all components,

WOKWI
        
          // Defining pin connections
          #define TRIG 14
          #define ECHO 26
          #define RED_LED 18
          #define GREEN_LED 21
          
          // Setting pins mode
          void setup() {
            Serial.begin(115200);
            pinMode(TRIG, OUTPUT);
            pinMode(ECHO, INPUT);
            pinMode(RED_LED, OUTPUT);
            pinMode(GREEN_LED, OUTPUT);
          }
          
          // Main function
          void loop() {
            digitalWrite(TRIG, HIGH);
            delayMicroseconds(10);
            digitalWrite(TRIG, LOW);
          
            int duration, distance;
            duration = pulseIn(ECHO, HIGH);
            distance = duration / 58;
          
            // Calling blink function
            blink_led(distance);
          
            delay(10);
          }
          
          void blink_led(int distance) {
            if (distance < 300){
              digitalWrite(GREEN_LED, LOW);
              digitalWrite(RED_LED, HIGH);
              delay(300);
              digitalWrite(RED_LED, LOW);
              delay(300);
            }
            else{
              digitalWrite(RED_LED, LOW);
              digitalWrite(GREEN_LED, HIGH);
            }
          }
        
      

Testing and simulation

WOKWI WOKWI WOKWI