Skip to main content

Group Assignment

This week's group assignment focuses on getting familiar with commonly used electronic measurement tools in the FabLab. These include the multimeter, logic analyzer, and oscilloscope. Understanding how to use these tools effectively is crucial for debugging and testing electronic circuits.

Multimeter

The multimeter is a versatile tool used to measure various electrical quantities, including voltage, current, and resistance. It is a fundamental instrument in electrical engineering and electronics for troubleshooting and circuit analysis.

Key Functions:

  • Voltmeter/ Voltage measurement: Checking power supply and circuit voltages.
  • Ammeter/ Current measurement: Measuring current flow in a circuit.
  • Resistance measurement: Testing resistance of components, basically resistors.
  • Conductive checking: Checks if two testing point is connected (often expressed with a beep sound).

Voltage Measurement

In this measurement, we used the multimeter to measure voltage in a circuit.

We try to mesasure the 5V pin and GND pin of ESP32C3 microcontroller to ensure the output voltage of the microcontroller.

We find out the actual output of the voltage is 5.11V.


For another test, a blink circuit is designed and we try to find out the voltage change of digital signal.

Experiment code
void setup() {
Serial.begin(115200);
pinMode(D2, OUTPUT);
}

void loop() {
digitalWrite(D2, HIGH);
delay(500);
digitalWrite(D2, LOW);
delay(500);
}

Here's the video of measuring the blink signal (HIGH/LOW) in period 1000ms.

We can get the voltage measurement of the HIGH/LOW signal is about 3.25V and 0V, respectively.

Conductive Checking

Conductive checking is another import function of multimeter. It is used for checking the conductive in a circuit, especially in PCB.

We use a breadboard to connect a circuit. Before connecting the power, Conductive checking is very important to ensure the circuit is assembled correctly.

If there exist conductive between the electronic components, a 'beep' sound can be heard.

Resistance Measurement

Multimeter can be used for measuring the resistance. In this case we will measure a 1K resistor.

The actual resistance of 1k resistor is 0.992k.

Logic Analyzer

The logic analyzer captures and analyzes digital signals in a circuit. It is commonly used for debugging communication protocols like I2C, SPI, and UART.

For this task, we used DSLogicPlus to capture and analyze signals.

Steps:

  1. Select the appropriate channel & protocol

  2. Configure the signal parameters & start capture

  3. Run an I2C Scan Demo using Arduino

    Below is a simple I2C Scanner code to detect connected I2C devices:

    #include <Wire.h>
    void setup() {
    Serial.begin(115200);
    Wire.begin();
    Serial.println("I2C Scanner");
    }
    void loop() {
    byte error, address;
    int nDevices;
    Serial.println("Scanning...");
    nDevices = 0;
    for (address = 1; address < 127; address++) {
    Wire.beginTransmission(address);
    error = Wire.endTransmission();
    if (error == 0) {
    Serial.print("I2C device found at address 0x");
    }
    }
    Serial.println("done.");
    delay(5000);
    }

  4. Analyze the captured signals & frequency

    • The SCL signal responded at address 0x80, which is expected since we connected a device with an I2C address of 0x80.
    • The detected I2C frequency was 44 kHz, which is lower than the common values of 100 kHz or 400 kHz. This might indicate a configuration issue.

Oscilloscope

The oscilloscope is used to capture and visualize electrical signals over time. It helps in analyzing signal behavior, identifying noise, and debugging timing issues in circuits.

For this assignment, we used the RTM3004 oscilloscope to capture signals.

Steps:

  1. Captured differential frequency signal

  2. Examined waveform characteristics

  • The oscilloscope models used included 53M, 13M, and 26M.

  1. Analyze I2C clock signal (SCL)

    • The I2C CLK frequency was measured at 44 kHz, which is lower than the typical 100 kHz or 400 kHz.

Summary

This group assignment provided hands-on experience with essential electronic measurement tools, including:

  • Multimeter for voltage, resistance and conductive checking.
  • Logic analyzer for debugging digital communication (SCL responded at 0x80, I2C frequency measured at 44 kHz, lower than expected).
  • Oscilloscope for visualizing and analyzing signals (I2C CLK measured at 44 kHz, different oscilloscope models tested: 53M, 13M, 26M).

These tools are indispensable for circuit debugging and validation, making them crucial for any electronics-related project. ✅