This commit is contained in:
2024-05-20 14:53:22 +03:00
parent 0d0d9a92d6
commit 616ef1f948
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -24,4 +24,4 @@ async def get_stat():
async def root():
return {'message': 'hello world'}
uvicorn.run(app, host="0.0.0.0", port=12346)
uvicorn.run(app, host="0.0.0.0", port=12346)#123
+1 -1
View File
@@ -9,6 +9,6 @@ void setup() {
void loop() {
int sensorVal = digitalRead(PIN_INPUT);
Serial.print(sensorVal); // Выводим значение в мониторе порта
Serial.print(sensorVal); // Выводим значение в мониторе порта 3
delay(500);
}