9. Input Devices
Assignments
Here you can find a recording of the lecture from the 19th of march.
This week's assignments and learning outcomes, see here:
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.
You can find the documentation for our group assignments here.
Individual assignment:
- Measure something: add a sensor to a microcontroller board that you have designed and read it.
Questions to be answered/from Nueval:
Have you answered these questions?
- Linked to the group assignment page
- Documented what you learned from interfacing an input device(s) to your microcontroller and optionally, how the physical property relates to the measured results.
- Documented your design and fabrication process or linked to the board you made in a previous assignment.
- Explained the programming process(es) you used.
- Explained any problems you encountered and how you fixed them.
- Included original design files and source code.
- Included a ‘hero shot’ of your board.
Hero shot
Summary
In the group assignment.... You can find the documentation for our group assignments here.
In the individual assignment I decided to go for the XIAO board created by Adrián Torres. Then I wanted to try out some input devices, according to the assignments of the week.
Work process detail
What to do this week
What to do this week
This week I could have used the Raspberry Pi Pico board that I made in week 08, added some pins and used it with input devices, but I wanted to try to create the XIAO board that Adrián Torres created. Then the plan was to add extra LED and another button and then try out input devices.
Using labels in Kicad
Using labels in Kicad
I used Kicad and began by adding components in the Schematic editor. Andri Sæmundsson shows how to use labels in this video here and I wanted to try it out. It did not go well and there was a long list of errors.
Using wires in Schematic editor
I decided to see if the board was setup in the right way by using wires instead of labels, so I saved a copy and used wires. That went well and there were no errors. It was good to see that everything was connected the right way, so my understanding on this is getting better.
Could not open the Schematic design in PCB editor
When I saved a copy of the design, it looks as if I only saved a Schematic file and I couldn't open it in the PCB editor. After trying for some time, I decided to create a new drawing. It went well and there were no errors.
Crossings in PCB editor
Complications in the PCB editor
The design looked complicated in the PCB editor and it took a long time to arrange and rearrange the components in the PCB editor, trying to create tracks that were not crossing each other. I had added extra LED and button to increase the possibilities with the board and also because I didn't want to just copy the design from Adrián Torres.
Simplifying the design
Simplifying the design
In my attempt to do something more than just copying the XIAO board from Adrián Torres I made the board too complicated for me at this time. Hopefully I will get better at creating designs like this later on, but right now this puzzle was taking too much time this week. I told Svavar Konráðsson that I was having problems with connections and he adviced me to follow what Adrián had done. There was little time left to work with the input devices, so I decided to simplify the design and use only 1 LED and 1 button.
The problems with wiring continued, even though the design had been simplified. I tried to place the components in different places and rotating them, but nothing worked.
Using 0 resistors
I added 0 resistors to the design in the Schematic editor, as Adrián Torres had done, but it just didn't seem to be enough for me to solve the puzzle. Everything seemed so simple in Adrián's design, but when I tried to do the same setup, there were still problems. One of the problems was that even though I added the 0 resistors to the design, the program would not allow me to connect the wires to it.
Hall effect sensor breakout board
A breakout board for hall effect sensor
I saw that Adrián Torres created a breakout board for a hall effect sensor and I used his documentation as a reference.
Files for hall effect sensor breakout board
Connecting and programming the hall effect sensor
Connecting and programming the hall effect sensor
In Svavar Konráðsson told me about this website that shows how to use analog input and to program a hall effect sensor. I followed these directions on how to connect the breakout board and I copied the code from this site. You can see the code here below:
from machine import Pin, ADC
from time import sleep
pot = ADC(Pin(26))
while True:
pot_value = pot.read_u16() #read value
print(pot_value)
sleep(0.1)
File for programming the hall effect sensor
Hall effect - programming in Thonny
Learning outcome
Design files
Kicad - only Schematic file
Here is the file that I was having problems with and could not import the design into the PCB editor.
Kicad files for board with two LEDs and two buttons
Here you can find the design files for the wired board with two buttons and two LEDs.
Kicad files for board with 1 LED and 1 button
Here you can find the Kicad files for the simplified board with 1 LED and 1 button.