Week 9 Group Assignments -¶
- Group assignment:
-
Probe an input device(s)’s analog levels and digital signals
-
Document your work on the group work page and reflect on your individual page what you learned
Probing Input Devices¶
We chose to probe 3 different types of input devices, a digital, analog and I2C. For all probing we used the PCB that Jeremy made in Week 8 look at the inputs.
Digital¶
For the digital input device we chose a button as it is quite common in many devices.
Setup¶
There is a button on Jeremy’s board connected to D6 so there was nothing to wire up. To probe the device, we used an aligator clip with a female header and plugged the female header onto one of the ground pins on the board. Then we soldered a jumper wire to the top of the XIAO onto pin 6. Then we used the alligator clips on the oscilliscope to connect to the jumpers.
Code¶
We pushed button read code onto the board so that the D6 would be reading the pin.
Results¶
Digital signals are a step input from 0 to input voltage and that is what we saw on the scope. The signal was 0 volts until the button was pushed when it jumped up to 3.3V.
Analog¶
For the analog probing, we chose a joystick with potentiometers. This is an easy way to create a variable analog output that can be read by the XIAO.
Setup¶
The initial thought was to plug the potentiometer into one of the analog inputs on Jeremy’s board. However, there were some issues on the board that provented us from doing this as the pad on A0 ripped off of the board. We also struggled with getting a good signal on A1. So, we flipped the board over and plugged the joystick to 3.3V, GND, and A1. Then we soldered the jumper to A1 on the top of the board.
Code¶
We pushed this analaog read code to the XIAO so we could get readings.
Results¶
Analog signals are continuously variable between 0 and input voltage, in this case 3.3V. As we moved the joystick, we could see the wavy signal that corresponded to the position of the joystick as expected.
I2C¶
For the I2C we chose the AHT20 temperature and humidity sensor. This sensor is easy to hookup and common for environmental monitoring.
Setup¶
We plugged the sensor into the I2C port on Jeremy’s board. We then used our aligator clip with female header connectors and put on a ground pin and one on the data pin of the I2C. Jeremy had 2 I2C connections on his board, so we used the data pin from the unused header.
Code¶
The following code was uploade to the XIAO to read the sensor.
Results¶
Once hooked up to the scope, we could see a series of pulses every half second as the XIAO read the sensor. The pulses correspond to temperature and humidity data that the XIAO can untangle and turn into numerical values in the code.