Fix import statement in node.md and remove extra line in main.py

This commit is contained in:
Sietse Jonker
2024-03-22 11:52:51 +01:00
parent 61c8d09760
commit cb1dbe8b11
2 changed files with 1 additions and 2 deletions

View File

@@ -25,7 +25,7 @@ The following libraries are used in the node code:
- <DHT.h> - <DHT.h>
- <WiFiMulti.h> - <WiFiMulti.h>
- <WiFi.h> - <WiFi.h>
- <WebSocketsClient. - <WebSocketsClient.>
- <nodeCodeHeader.h> - <nodeCodeHeader.h>
### Code ### Code

View File

@@ -50,6 +50,5 @@ def getData(node, dataType, MAC):
return result return result
if __name__ == '__main__': if __name__ == '__main__':
app.run(debug=True, host='localhost') app.run(debug=True, host='localhost')