Sei sulla pagina 1di 21

Smart Parking System - Arduino Project Hub https://create.arduino.cc/projecthub/hoozi/smart-parking-sy...

1 of 21 19-12-2019, 04:00 pm
Smart Parking System - Arduino Project Hub https://create.arduino.cc/projecthub/hoozi/smart-parking-sy...

2 of 21 19-12-2019, 04:00 pm
Smart Parking System - Arduino Project Hub https://create.arduino.cc/projecthub/hoozi/smart-parking-sy...

3 of 21 19-12-2019, 04:00 pm
Smart Parking System - Arduino Project Hub https://create.arduino.cc/projecthub/hoozi/smart-parking-sy...

4 of 21 19-12-2019, 04:00 pm
Smart Parking System - Arduino Project Hub https://create.arduino.cc/projecthub/hoozi/smart-parking-sy...

5 of 21 19-12-2019, 04:00 pm
Smart Parking System - Arduino Project Hub https://create.arduino.cc/projecthub/hoozi/smart-parking-sy...

6 of 21 19-12-2019, 04:00 pm
Smart Parking System - Arduino Project Hub https://create.arduino.cc/projecthub/hoozi/smart-parking-sy...

7 of 21 19-12-2019, 04:00 pm
Smart Parking System - Arduino Project Hub https://create.arduino.cc/projecthub/hoozi/smart-parking-sy...

8 of 21 19-12-2019, 04:00 pm
Smart Parking System - Arduino Project Hub https://create.arduino.cc/projecthub/hoozi/smart-parking-sy...

9 of 21 19-12-2019, 04:00 pm
Smart Parking System - Arduino Project Hub https://create.arduino.cc/projecthub/hoozi/smart-parking-sy...

10 of 21 19-12-2019, 04:00 pm
Smart Parking System - Arduino Project Hub https://create.arduino.cc/projecthub/hoozi/smart-parking-sy...

11 of 21 19-12-2019, 04:00 pm
Smart Parking System - Arduino Project Hub https://create.arduino.cc/projecthub/hoozi/smart-parking-sy...

12 of 21 19-12-2019, 04:00 pm
Smart Parking System - Arduino Project Hub https://create.arduino.cc/projecthub/hoozi/smart-parking-sy...

sudo apt-get update


sudo apt-get install nodejs npm

npm install --save ws

npm install serialport

sudo node staff-parking.js

13 of 21 19-12-2019, 04:00 pm
Smart Parking System - Arduino Project Hub https://create.arduino.cc/projecthub/hoozi/smart-parking-sy...

14 of 21 19-12-2019, 04:00 pm
Smart Parking System - Arduino Project Hub https://create.arduino.cc/projecthub/hoozi/smart-parking-sy...

1 //staff parking data transfer


2 var webSocketUrl = "wss://api.artik.cloud/v1.1/websocket?ack=true";
3 var device_id = "Your Device id"; // staff parking DEVICE ID
4 var device_token = "Your Device Token"; //staff parking DEVICE TOKEN
5 // require websocket module to connect
6 // execute following two commands to your pi's terminal
7 // sudo apt-get update
8 // npm install websocket
9 var WebSocket = require('ws');
10 var isWebSocketReady = false;
11 var data="";
12 var ws = null;
13 // require serialport module to raspberry pi
14 // execute following command to terminal
15 // npm install serialport
16 var serialport = require("serialport");
17 var SerialPort = serialport.SerialPort;
18 var sp = new SerialPort("/dev/ttyACM0", { //for serial communication with arduino
19 baudrate: 9600,
20 // we are using UNO so baudrate is 9600, you might need to change according to your model

4 (https://github.com/husinul/Smart-Car-Parking/watchers) 2 (https://github.com/husinul/Smart-Car-Parking/forks)
husinul (https://github.com/husinul) / Smart-Car-Parking (https://github.com/husinul/Smart-Car-Parking)

No description — Read More (https://github.com/husinul/Smart-Car-Parking#readme)

Latest commit to the branch on 6-21-2018 Download as zip (https://github.com/husinul/Smart-Car-Parking/zipball/master)

15 of 21 19-12-2019, 04:00 pm
Smart Parking System - Arduino Project Hub https://create.arduino.cc/projecthub/hoozi/smart-parking-sy...

16 of 21 19-12-2019, 04:00 pm
Smart Parking System - Arduino Project Hub https://create.arduino.cc/projecthub/hoozi/smart-parking-sy...

^^^^^

17 of 21 19-12-2019, 04:00 pm
Smart Parking System - Arduino Project Hub https://create.arduino.cc/projecthub/hoozi/smart-parking-sy...

18 of 21 19-12-2019, 04:00 pm
Smart Parking System - Arduino Project Hub https://create.arduino.cc/projecthub/hoozi/smart-parking-sy...

19 of 21 19-12-2019, 04:00 pm
Smart Parking System - Arduino Project Hub https://create.arduino.cc/projecthub/hoozi/smart-parking-sy...

20 of 21 19-12-2019, 04:00 pm
Smart Parking System - Arduino Project Hub https://create.arduino.cc/projecthub/hoozi/smart-parking-sy...

21 of 21 19-12-2019, 04:00 pm

Potrebbero piacerti anche