14. Embedded Networking and Communications

This week was about Communications and embedded networking. It's an interesting week because we can learn how to connect multiple devices.

The group assignment

Here is the group assignment where you can find more about this topic.

Communications

Networking and communications are an important part when making a circuit and want to add more things. On microcontrollers this is very useful and there's a list of type of communications we can use for this.

On this topic, we have UART, SPI and I2Cc

UART is a serial communication protocol that enables asynchronous serial communication between devices. It uses two primary lines, RX (receive) and TX (transmit), allowing for full-duplex communication. UART is widely used for short-distance, low-speed, low-complexity data exchange between microcontrollers and peripherals.

UART communication.

Actually I made one type of this communication on week06 connecting via Bluetooth and changing a Neopixel color using RGB format.

Laser CO2.es
UART with RGB.

SPI (Serial Peripheral Interface) is a synchronous serial communication interface specification used for short-distance communication, primarily in embedded systems. It operates in full duplex mode and uses a master-slave architecture. Key lines include SCK (Serial Clock), MOSI (Master Out Slave In), MISO (Master In Slave Out), and often a SS (Slave Select) for each slave device.

SPI communication.

Finally and the one that I used this week, is I2C (Inter-Integrated Circuit) is a multi-master, multi-slave, packet-switched, single-ended, serial computer bus invented by Philips Semiconductor (now NXP Semiconductors). It's used for attaching low-speed peripherals to processors and microcontrollers in short-distance, intra-board communication.

The components of I2C are:

  • SCL (Serial Clock Line): Controlled by the master device, it synchronizes the data transfer between devices on the I2C bus.
  • SDA (Serial Data Line): Used for sending and receiving data between the master and the slave. Both lines are bidirectional.
  • Addressing: Each device connected to the I2C bus is assigned a unique address. This allows the master device to select which slave device to communicate with without any interference from others.
  • Master and Slave Devices: Any device can function as master or slave. Masters control the clock line and initiate communication with slaves.

The advantages of I2C are:

  • Simple Wiring: Only requires two wires (SCL and SDA), which helps reduce the complexity and cost of the wiring.
  • Support for Multiple Masters and Slaves: Multiple devices can be connected to the same bus with unique addresses which helps in expanding the system without additional wiring.
  • Built-in Error Detection: Uses ACK/NACK signaling and optional CRC checks to ensure data integrity.

The disadvantages of I2C are:

  • Speed: Generally slower than SPI, with standard modes typically ranging from 100 kbps to 400 kbps, though higher speeds (up to 3.4 Mbps) are possible.
  • Complexity in Handling Collisions: In multi-master configurations, managing bus collisions can complicate firmware.
  • Distance Limitations: More suitable for short-distance communication within the same board or closely located devices due to its susceptibility to noise and signal degradation over longer distances.

I2C communication.

Mini PCB for connections

Knowing that I'm going to use I2C, I though it would be a great idea to create a PCB to have all the multi-connections. The 3 SDA, 3 SCL, 3 GND and 3 5V vcc.

Mini PCB for I2C communications.

This tiny PCB has a led, resistor for the led and the multi-connection for the I2C communication. Because I want to connect only one XIAO to USB, I need to have a 5V current and Ground, then the common SDA and SCL.

Connecting everything

This is how I'm going to connect everything on this task:

How is going to be all connected

The codes.

As we use I2C communication, we need to configure slaves and the master. The codes are explained in each line, here are the codes. This codes are going to turn on a led on every PCB using the I2C communication.

Master code for XIAO esp32c3.

Then we have the two slaves, here are the codes for each one:

Slave code XIAO esp32c3.
Slave code for XIAO rp2040.

After uploading the codes to every XIAO, lets set everything. Our master is going to be a XIAO esp32 without PCB, just pins.

Master XIAO.

Everything set:

Final Circuit.

The PCB I made for connect everything:

Multiple connections with led.

Let's see everything working...

Final video

Files