aws_iot_device 0.1.1 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 678026c8d680b9ce3eb9fe68f3d005552b47d7b8
|
|
4
|
+
data.tar.gz: 5fe9f2e04581092c02cd15c3d6ff0252e70ab69a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a59d1ac224526d74cc767ea71bf40f5b85df7066300fa616ff4d9b3f4fe11c0095d1e9cf233998f61018645728f325a6a5b971720a5b3c8e762b0cae6631ff83
|
|
7
|
+
data.tar.gz: b68dce10a4026b51036088af1136e772a21e758d858446b51d52716dbefb31191f3b4e27104b08b7d056597f36cc47b05b3553f42f3af539b40f258e37ac3af9
|
|
@@ -107,7 +107,7 @@ module AwsIotDevice
|
|
|
107
107
|
############### Custom Features #################
|
|
108
108
|
|
|
109
109
|
def loop_start
|
|
110
|
-
Thread.new{loop_forever}
|
|
110
|
+
Thread.new{ loop_forever }
|
|
111
111
|
end
|
|
112
112
|
|
|
113
113
|
def loop_stop(thread)
|
|
@@ -117,6 +117,7 @@ module AwsIotDevice
|
|
|
117
117
|
def loop_forever
|
|
118
118
|
loop do
|
|
119
119
|
mqtt_loop
|
|
120
|
+
sleep 0.005
|
|
120
121
|
end
|
|
121
122
|
end
|
|
122
123
|
|