Week 12: Networking and Communications

HTMAA 2024 - Jonathan Cohen

Group Assignment

CMU sketch

For our group assignment we met in the ee cba lab. Kyle and I worked on sending UART messages from one xiao esp32 to the other. Nathan then had that xiao send it over wifi to the other projects.

CMU sketch

We needed to connect the bottom two pins to thoe other board with tx going to rx for each.

        
    void setup() {
        Serial1.begin(115200, SERIAL_8N1, D7, D6);

        Serial.begin(115200);
        Serial.println("boot");
      }

    void loop() {

        Serial1.write(0);
 
      }
        
    
CMU sketch

Mission accomplished! We are sending data between the two boards

Individual Assignment

I completed my weekly assignment in my output devices week where I linked 3 devicess on the same I2C bus to play an accel based snake game. Output Devices