Electronics Design
Group Assignment
Objective
use the test equipment in your lab to observe the operation of a microcontroller circuit board
Procedure
- Copy de code below this list.
- Paste it on arduino IDE and pushi into the quentorres board
- wire the quentorres from your electronics production assginment to a LED and a potentiometer.
- Wire the instruments of the lab.
- Observe the behaviour of the pwm signal.
- Document a conclusion on the lab group page
/*FabAcademy2024
Group assignment
Electronics Design
Author: Luis Hernandez- local instructor
target: Seed studio xiao rp2040
*/
int POT;//declara una variable de numeros enteros llamada "POT"
int LED;//declara una variable de numeros enteros llamada "LED"
void setup()
{
pinMode(3, OUTPUT);//declara el pin x como salida este pin especifico del xiao rp2040 debe ser de tipo digital
pinMode(A2, INPUT);//declara el pin x como entrada este pin especifico del xiao rp2040 debe ser capaz de soportar pwm referir a la hoja de datos
}
void loop()
{
POT = analogRead(A2);//lee el valor del potenciometro fisico conectado al pin designado como entrada
LED = map(POT, 0, 1023, 0, 255);//realiza un mappeo de valores entre 255
analogWrite(3, LED);//escribe el valor al pin designado como salida con el valor proporcionado por la variable "LED"
}
/*Created under creative-commons licence*/
Conclusions
Insert Conclusions of this assignment