Browse Source

v1.1

master
cs151051 5 years ago
parent
commit
7cf49d6968
  1. 2
      README.md
  2. 0
      gatewayNode/Makefile
  3. 0
      gatewayNode/data.json
  4. 2
      gatewayNode/parking.py
  5. 6
      sensorNode/sensor.ino

2
README.md

@ -1,5 +1,5 @@
# smartParking # smartParking
#Authors: Oulis Evangelos, Oulis Nikolaos, Drosos Katsibras #Authors: Oulis Evangelos, Oulis Nikolaos, Katsibras Drosos
#=================================================================== #===================================================================
Smart and Autonomous parking. Smart and Autonomous parking.

0
iNode/Makefile → gatewayNode/Makefile

0
iNode/data.json → gatewayNode/data.json

2
iNode/parking.py → gatewayNode/parking.py

@ -8,7 +8,7 @@ import requests
import json import json
# Open file to configure communication with server. # Open file to configure communication with server.
with open('data.json', 'r') as json_file: with open('/home/pi/project/data.json', 'r') as json_file:
json_data = json_file.read() json_data = json_file.read()
if json_data != "" and json_data != None: if json_data != "" and json_data != None:

6
sensorNode/sensor/sensor.ino → sensorNode/sensor.ino

@ -1,8 +1,6 @@
/* /*
* Ultrasonic Sensor HC-SR04 and Arduino Tutorial * Athors: Oulis Evnagelos, Oulis Nikolaos, Katsibras Drosos
* * Ultrasonic Sensor HC-SR04 and Arduino
* by Dejan Nedelkovski,
* www.HowToMechatronics.com
* *
*/ */
Loading…
Cancel
Save