4 Commits

Author SHA1 Message Date
Sergio Pernas 8c3c46056f update 2022-05-23 09:39:48 -03:00
Sergio Pernas 5ccb19eca9 update 2022-05-19 13:05:11 -03:00
sergio.pernas 026fee8be3 Merge pull request 'en la placa v3 el pin usado es el A7' (#11) from turbidez into master
Reviewed-on: https://gitea.nulo.in/Nodemecu/nodemecu/pulls/11
2022-05-19 12:55:41 -03:00
fauno 0968283430 en la placa v3 el pin usado es el A7 2022-05-19 12:24:28 -03:00
3 changed files with 45 additions and 3 deletions
+1 -1
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));
}
+42
View File
@@ -0,0 +1,42 @@
// Dispositivo
char devIDstr[5];
int inQuery;
void setup() {
Serial.begin(9600);
}
void loop() {
Serial.write("\n");
delay(1000);
if ( Serial.available() > 0) {
inQuery = Serial.read();
if ( inQuery == devID) {
Serial.write(itoa(devID, devIDstr, 10));
Serial.write(" ");
Serial.write("Tur");
Serial.write(" ");
//char lecturaStr[6]; // Buffer big enough for 7-character float
//dtostrf(getData(), 2, 4, lecturaStr); // Leave room for too large numbers!
char lecturaStr[5]; // Buffer big enough for 7-character float
dtostrf(getData(), 3, 2, lecturaStr); // Leave room for too large numbers!
Serial.write(lecturaStr);
Serial.write(" ");
Serial.write("TSS");
Serial.write(" ");
Serial.write("99");
}
}
}
+2 -2
View File
@@ -26,8 +26,8 @@ ficheros="bin envs arduinos.py generador_json funciones registrador desinstalar"
echo "1. Instalando dependencias
"
#apt update && apt install -y python3-pip jsonlint jq uuid
#pip3 install pyserial
apt update && apt install -y python3-pip jsonlint jq uuid
pip3 install pyserial
echo ""