int valor;
void setup() {
// put your setup code here, to run once:
Serial1.begin(115200);
Serial1.println("Hello, Raspberry Pi Pico!");
analogReadResolution(12);
}
void loop() {
// put your main code here, to run repeatedly:
valor = analogRead(28);
Serial1.print("entrada_28: ");
Serial1.print(valor,BIN);
valor = analogRead(27);
Serial1.print(" Entrada_27: ");
Serial1.println(valor ,HEX);
delay(200); // this speeds up the silulation
}