123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218 |
- import paho.mqtt.client as mqtt
- import time
- import sys
- import http.client, urllib
- import json
- import threading
- import os
- import shutil
- import uuid
- import hashlib
- import serial
- import array
- import base64
- import urllib.request
- import datetime
- import requests
- import logging
- import RPi.GPIO as GPIO
- """ Device Information - the information about this device
- These device information is used for the MQTT topic. This program will subscribe and publish to
- the MQTT topic.
- MQTT topic to subscribe to: AISKY/<project_name>/<model_name>/<device_id>
- MQTT topic to publish to : AISKY/<project_name>/<model_name>/<device_id>/Log
- """
- project_name = os.popen('cat /etc/aisky.conf | grep project').readline().split('=')[1].strip()
- model_name = os.popen('cat /etc/aisky.conf | grep model').readline().split('=')[1].strip()
- device_id = open('/sys/class/net/eth0/address').readline().strip()
- """ NOTE: Remember to setup the u-boot environment variables before executing this program. The
- commands to setup the u-boot environment variables are as follows.
- Setup the 'project' variable: The following command sets the 'project' variable to AppleFarm.
- root@mylinkit:~# fw_setenv project AppleFarm
- Setup the 'model' variable: The following command sets the 'model' variable to MK-G.
- root@mylinkit:~# fw_setenv model MK-G
- Then, the following command can be used to display the u-boot environment variables.
- root@mylinkit:~# fw_printenv
- """
- """ MQTT Server
- If you don't have your own MQTT server, you can use the public MQTT server 'iot.eclipse.org'. But
- with the public MQTT server, you can only publish and subscribe without a user name and password.
- Sometimes the public MQTT server is unstable.
- """
- mqtt_server = "60.250.156.234"
- mqtt_port = 1883
- mqtt_alive = 60
- mqtt_sub_topic = "AISKY/" + project_name + "/" + model_name + "/" + device_id
- mqtt_pub_topic = mqtt_sub_topic + "/Log"
- nr = "AGV_TOP_CAR"
- def get_sha256sum(file):
- with open(file, "rb") as f:
- bytes = f.read()
- return hashlib.sha256(bytes).hexdigest()
- def server_log(command, rqnn):
- localtime = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())
-
- payload = {
-
- 'device_id': device_id,
-
- 'localtime': localtime,
- 'node_id': nr,
- 'command': command,
- 'rqnn': rqnn
- }
- jsonobj = json.dumps(payload, sort_keys=True, indent=4)
- mqtt_client.publish(mqtt_pub_topic, jsonobj, qos=2)
- print('Sent:')
- print(jsonobj)
- def get_ip_address(ifname):
- s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
- try:
- return socket.inet_ntoa(fcntl.ioctl(
- s.fileno(),
- 0x8915,
- struct.pack('256s', ifname[:15])
- )[20:24])
- except:
- return ""
- def system_reboot():
- server_log('a035', '1')
- time.sleep(5)
- os.system('sudo reboot')
- time.sleep(10)
- def system_update_code():
- os.system('sudo su')
- os.system('rm -rf /home/pi/AGVCAR')
- os.system('git clone -b AGV_TOP_CAR --single-branch http://60.250.156.230:3000/allen/AGV.git /home/pi/AGVCAR')
- time.sleep(3)
- os.system('cp /home/pi/AGV_TOP_CAR/aisky-mqttd /usr/sbin/')
- time.sleep(1)
- os.system('cp /home/pi/AGV_TOP_CAR/udp_client.py /home/pi/')
- time.sleep(1)
- os.system('sudo chmod 777 /usr/sbin/aisky-mqttd')
- os.system('sudo chmod 777 /home/pi/udp_client.py')
- time.sleep(5)
- server_log('a033', '1')
- os.system('sudo reboot')
- time.sleep(10)
- def video1(msg):
- if(msg['value']=="on"):
- os.system('sudo su')
- os.system('cd /hmoe/pi')
- os.system('sudo nohup python3.5 /home/pi/udp_client.py>/home/pi/nohup.out 2>&1 &')
- time.sleep(2)
- server_log('video1', 'on')
- elif (msg['value'] == 'off'):
- os.system('sudo su')
- os.system("ps aux | grep /home/pi/udp_client.py | awk '{print $2}' | xargs kill -9")
- time.sleep(2)
- server_log('video1', "off")
- else:
- server_log('video1', "error")
- def on_connect(client, userdata, flags, rc):
-
- client.subscribe(mqtt_sub_topic, qos=2)
- server_log('a035', '1')
-
-
-
-
-
-
-
-
- print("reboot check ok")
- def on_message(client, userdata, msg):
-
- msg.payload = msg.payload.decode('utf-8')
- jsonmsg = json.loads(msg.payload)
-
- print('Received:')
- print(json.dumps(jsonmsg, sort_keys=True, indent=4, separators=(',', ':')))
-
- if (jsonmsg['command'] == 'a035'):
- system_reboot()
- elif (jsonmsg['command'] == 'a033'):
- system_update_code()
- elif (jsonmsg['command'] == 'vpn_connect'):
- vpn_connect()
- elif (jsonmsg['command'] == 'vpn_disconnect'):
- vpn_disconnect()
- elif (jsonmsg['command'] == 'video1'):
- video1(jsonmsg)
- else:
- server_log(jsonmsg['command'], 'ERROR: Unknown command')
- def thread_job():
-
- mqtt_thread_client = mqtt.Client()
- mqtt_thread_client.on_connect = on_connect
- mqtt_thread_client.on_message = on_message
- mqtt_thread_client.username_pw_set(username='aisky-client', password='aiskyc')
- mqtt_thread_client.connect(mqtt_server, mqtt_port, mqtt_alive)
- mqtt_thread_client.loop_forever()
- mqtt_client = mqtt.Client()
- mqtt_client.username_pw_set(username='aisky-client', password='aiskyc')
- mqtt_client.connect(mqtt_server, mqtt_port, mqtt_alive)
- mqtt_subscribe_thread = threading.Thread(target=thread_job)
- mqtt_subscribe_thread.start()
- mqtt_client.loop_forever()
|