Home

Group Assignment: Week 6


ELECTRONICS DESIGN


Electronics Design

n the design of electronics, Electronic Design Automation (EDA) tools are used to develop both the circuit's logical schematics and physical PCB layout. Typically, a PCB is centered around a main device, like the microcontroller, that might have various modes of operation. As part of this week's group activity, our task was to investigate how a microcontroller behaves when used. In doing so, we employed basic instruments such as a multimeter and an oscilloscope.

More precisely, our task this week is:

  • use the test equipment in your lab to observe the operation of a microcontroller circuit board

Observe the operation of the microcontroller can mean quite many things. However, we investigated three operation, namely the power consumption, the output of the "blink" example and a PWM output signal.

Multimeter and oscilloscope

Multimeter

A Multimeter is a measuring instrument typically used to measure properties such as voltage, resistance, and current.

Oscilloscope

An oscilloscope is a test tool to display varying voltage, amplitude, duty cycle, and frequency.

  

PWM

Pulse Width Modulation (PWM) is a technique that quickly switches a power source on and off at various intervals to regulate the amount of power supplied to a the microcontroller we used, which is the ArduinoMega 2560. The average power supplied can be changed by altering the period of the "on"pulses. We used a multimeter o measure the voltage. An oscilloscope was utilized to better visualize the PWM signal. We varied the duty cycle from 1% to 100% and observed the voltage varying from (~0.06V up to almost ~5 V, which is the maximum voltage).

We used a simple PWM sketch, which takes an Analog Input from an 10k potentiometer and map the input form 1023(adc) to 255 for the PWM signal


                        const int analogInPin = A0;  // Analog input pin
                        const int pwmOutPin = 9;     // PWM output pin

                        void setup() {
                            pinMode(pwmOutPin, OUTPUT);
                            pinMode(analogInPin, INPUT);
                        }

                        void loop() {
                            int analogValue = analogRead(analogInPin);       // Read the analog input (0-1023)
                            int pwmValue = map(analogValue, 0, 1023, 0, 255); // Convert to PWM range (0-255)
                            analogWrite(pwmOutPin, pwmValue);                // Output PWM signal
                        }                     
                    

As you can see, our oscilloscope gives the following measurements:

  • frequency
  • dutycycle
  • peak voltage

The Multimeter outputs just the Voltage, beacause we used it in Voltage mode