-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbasicPubSub.py
More file actions
249 lines (212 loc) · 8.45 KB
/
Copy pathbasicPubSub.py
File metadata and controls
249 lines (212 loc) · 8.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
'''
/*
* Copyright 2010-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
'''
# Name: M Bitar
# Date: March 15, 2020
# Project: AWS IoT Sensor Node
from sense_hat import SenseHat
from time import sleep
from random import randint
from AWSIoTPythonSDK.MQTTLib import AWSIoTMQTTClient
import logging
import time
import argparse
import json
import datetime
print("===== V0.15 ======")
sleep(2)
sleep_val = .1
text_speed = .05
sense = SenseHat()
sense.clear()
r = g = b = 255
red = (255, 0, 0)
blue = (0, 0, 255)
green = (0, 255, 0)
white = (255, 255, 255)
yellow = (255, 255, 0)
black = (0, 0, 0)
back_clr = (0, 0, 0)
sense.clear((0, 0, 0))
GO=WARN=ALARM=STOP=False
sense.show_letter("A", blue)
sleep(1)
sense.show_letter("W", blue)
sleep(1)
sense.show_letter("S", blue)
sleep(1)
#sense.show_message("AWS IoT Prototype", text_colour=red, back_colour=back_clr, scroll_speed=.05)
AllowedActions = ['both', 'publish', 'subscribe']
# Custom MQTT message callback
def customCallback(client, userdata, message):
#print("Received a new command: ")
global WARN, ALARM, GO, STOP
payload_str = str(message.payload)
print(payload_str)
if "WARN" in payload_str:
print("===== ATTENTION: EXECUTE WARN COMMAND =====")
WARN=True
elif "ALARM" in payload_str:
print("===== ATTENTION: EXECUTE ALARM COMMAND =====")
ALARM=True
elif "GO" in payload_str:
print("===== ATTENTION: EXECUTE GO COMMAND =====")
GO=True
elif "STOP" in payload_str:
print("===== ATTENTION: EXECUTE STOP COMMAND =====")
STOP=True
#print("from topic: ")
#print(message.topic)
#print("--------------\n\n")
# Read in command-line parameters
parser = argparse.ArgumentParser()
parser.add_argument("-e", "--endpoint", action="store", required=True, dest="host", help="Your AWS IoT custom endpoint")
parser.add_argument("-r", "--rootCA", action="store", required=True, dest="rootCAPath", help="Root CA file path")
parser.add_argument("-c", "--cert", action="store", dest="certificatePath", help="Certificate file path")
parser.add_argument("-k", "--key", action="store", dest="privateKeyPath", help="Private key file path")
parser.add_argument("-p", "--port", action="store", dest="port", type=int, help="Port number override")
parser.add_argument("-w", "--websocket", action="store_true", dest="useWebsocket", default=False,
help="Use MQTT over WebSocket")
parser.add_argument("-id", "--clientId", action="store", dest="clientId", default="basicPubSub",
help="Targeted client id")
parser.add_argument("-t", "--topic", action="store", dest="topic", default="sdk/test/Python", help="Targeted topic")
parser.add_argument("-m", "--mode", action="store", dest="mode", default="both",
help="Operation modes: %s"%str(AllowedActions))
parser.add_argument("-M", "--message", action="store", dest="message", default="Hello World!",
help="Message to publish")
args = parser.parse_args()
host = args.host
rootCAPath = args.rootCAPath
certificatePath = args.certificatePath
privateKeyPath = args.privateKeyPath
port = args.port
useWebsocket = args.useWebsocket
clientId = args.clientId
topic = args.topic
if args.mode not in AllowedActions:
parser.error("Unknown --mode option %s. Must be one of %s" % (args.mode, str(AllowedActions)))
exit(2)
if args.useWebsocket and args.certificatePath and args.privateKeyPath:
parser.error("X.509 cert authentication and WebSocket are mutual exclusive. Please pick one.")
exit(2)
if not args.useWebsocket and (not args.certificatePath or not args.privateKeyPath):
parser.error("Missing credentials for authentication.")
exit(2)
# Port defaults
if args.useWebsocket and not args.port: # When no port override for WebSocket, default to 443
port = 443
if not args.useWebsocket and not args.port: # When no port override for non-WebSocket, default to 8883
port = 8883
# Configure logging
logger = logging.getLogger("AWSIoTPythonSDK.core")
logger.setLevel(logging.DEBUG)
streamHandler = logging.StreamHandler()
formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s')
streamHandler.setFormatter(formatter)
logger.addHandler(streamHandler)
# Init AWSIoTMQTTClient
myAWSIoTMQTTClient = None
if useWebsocket:
myAWSIoTMQTTClient = AWSIoTMQTTClient(clientId, useWebsocket=True)
myAWSIoTMQTTClient.configureEndpoint(host, port)
myAWSIoTMQTTClient.configureCredentials(rootCAPath)
else:
myAWSIoTMQTTClient = AWSIoTMQTTClient(clientId)
myAWSIoTMQTTClient.configureEndpoint(host, port)
myAWSIoTMQTTClient.configureCredentials(rootCAPath, privateKeyPath, certificatePath)
# AWSIoTMQTTClient connection configuration
myAWSIoTMQTTClient.configureAutoReconnectBackoffTime(1, 32, 20)
myAWSIoTMQTTClient.configureOfflinePublishQueueing(-1) # Infinite offline Publish queueing
myAWSIoTMQTTClient.configureDrainingFrequency(2) # Draining: 2 Hz
myAWSIoTMQTTClient.configureConnectDisconnectTimeout(10) # 10 sec
myAWSIoTMQTTClient.configureMQTTOperationTimeout(5) # 5 sec
# Connect and subscribe to AWS IoT
myAWSIoTMQTTClient.connect()
if args.mode == 'both' or args.mode == 'subscribe':
myAWSIoTMQTTClient.subscribe(topic, 1, customCallback)
time.sleep(2)
# Publish to the same topic in a loop forever
loopCount = 0
while True:
if GO:
print("GGGGGGGGGGGGGGGGGGGGGGG")
sense.clear(green)
sleep(3)
GO=False
if ALARM:
print("AAAAAAAAAAAAAAAAAAAAAAAA")
sense.clear(red)
sleep(3)
ALARM=False
if WARN:
print("WWWWWWWWWWWWWWWWWWWWWWWW")
sense.clear(yellow)
sleep(3)
WARN=False
if STOP:
print("SSSSSSSSSSSSSSSSSSSSSSSS")
sense.clear(blue)
sleep(3)
STOP=False
sense.clear()
quit()
GO=WARN=ALARM=STOP=False
temp = sense.get_temperature()
print("Temp: "+str(round(temp)))
sense.show_message("T:"+str(round(temp)), text_colour=blue, back_colour=back_clr, scroll_speed=text_speed)
sense.clear((0, 0, 0))
sleep(sleep_val )
humidity = sense.get_humidity()
print("Humidity: "+str(round(humidity)))
sense.show_message("H:"+str(round(humidity)), text_colour=blue, back_colour=back_clr, scroll_speed=text_speed)
sleep(sleep_val )
pressure = sense.get_pressure()
print("Pressure: "+str(round(pressure)))
sense.show_message("P:"+str(round(pressure)), text_colour=blue, back_colour=back_clr, scroll_speed=text_speed)
sense.clear((0, 0, 0))
sleep(sleep_val )
if args.mode == 'both' or args.mode == 'publish':
message = {}
message['SENSOR_TYPE'] = "TEMP"
message['VALUE'] = str(round(temp))
message['NOW'] = datetime.datetime.now().strftime("%d/%m/%Y %H:%M:%S:%f")
message['NODE_ID'] = "A024"
messageJson = json.dumps(message)
myAWSIoTMQTTClient.publish(topic, messageJson, 1)
if args.mode == 'publish':
print('Published topic %s: %s\n' % (topic, messageJson))
loopCount += 1
message = {}
message['SENSOR_TYPE'] = "HUMIDITY"
message['VALUE'] = str(round(humidity))
message['NOW'] = datetime.datetime.now().strftime("%d/%m/%Y %H:%M:%S:%f")
message['NODE_ID'] = "A024"
messageJson = json.dumps(message)
myAWSIoTMQTTClient.publish(topic, messageJson, 1)
if args.mode == 'publish':
print('Published topic %s: %s\n' % (topic, messageJson))
loopCount += 1
message = {}
message['SENSOR_TYPE'] = "PRESSURE"
message['VALUE'] = str(round(pressure))
message['NOW'] = datetime.datetime.now().strftime("%d/%m/%Y %H:%M:%S:%f")
message['NODE_ID'] = "A024"
messageJson = json.dumps(message)
myAWSIoTMQTTClient.publish(topic, messageJson, 1)
if args.mode == 'publish':
print('Published topic %s: %s\n' % (topic, messageJson))
loopCount += 1
time.sleep(1)