Electronics Design

Group Assignment

Objective

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

Procedure

  1. Copy de code below this list.
  2. Paste it on arduino IDE and pushi into the quentorres board
  3. wire the quentorres from your electronics production assginment to a LED and a potentiometer.
  4. Wire the instruments of the lab.
  5. Observe the behaviour of the pwm signal.
  6. 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