en la placa v3 el pin usado es el A7

This commit is contained in:
f 2022-05-19 12:24:28 -03:00
parent 84199c855d
commit 0968283430
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ int inQuery;
int getData() {
int sensorValue = analogRead(A2);
int sensorValue = analogRead(A7);
return (map(sensorValue, 0, 700, 100, 0));
}