Changes for page 2 Script

Last modified by Devin Chen on 2025/06/06 14:03

From version 5.1
edited by Hunter
on 2022/07/08 14:11
Change comment: There is no comment for this version
To version 14.1
edited by Leo Wei
on 2022/07/09 17:42
Change comment: There is no comment for this version

Summary

Details

Page properties
Author
... ... @@ -1,1 +1,1 @@
1 -XWiki.Hunter
1 +XWiki.admin
Content
... ... @@ -36,35 +36,34 @@
36 36  
37 37  Script is as below:
38 38  
39 -(% class="box infomessage" %)
40 -(((
39 +{{code language="Lua"}}
41 41  function sms.main()
42 -~-~-~-~-~-~-send condition~-~-~-~-~-~-
41 +------send condition------
43 43  local temp1 = addr_getword("@Temperature1")
44 44  local temp2 = addr_getword("@Temperature2")
45 45  local temp3 = addr_getword("@Temperature3")
46 46  local timer = addr_getword("@Timer")
47 47  local tag = addr_getbit("@Tag")
48 -~-~-~-~-~-~-lasting time~-~-~-~-~-~-
47 +------lasting time------
49 49  if temp1 > 5 and temp2 > 10 and temp3 < 20 then
50 - timer = timer + 1
51 - addr_setword("@Timer",timer)
49 +    timer = timer + 1
50 +    addr_setword("@Timer",timer)
52 52  else
53 - timer = 0
54 - addr_setword("@Timer",timer)
52 +    timer = 0
53 +    addr_setword("@Timer",timer)
55 55  end
56 -~-~-~-~-~-~-send sms & output Y0~-~-~-~-~-~-
55 +------send sms & output Y0------
57 57  if timer > 5 then
58 - if tag == 0 then
59 - send_sms_ira("19859254700","alarm trigger")
60 - addr_setbit("@Tag",1)
61 - end
57 +    if tag == 0 then
58 +        send_sms_ira("19859254700","alarm trigger")
59 +        addr_setbit("@Tag",1)
60 +    end
62 62  elseif tag == 1 then
63 63  send_sms_ira("19859254700","alarm release")
64 64  addr_setbit("@Tag",0)
65 65  end
66 66  end
67 -)))
66 +{{/code}}
68 68  
69 69  == **1.5 Telegram notification** ==
70 70  
... ... @@ -160,144 +160,148 @@
160 160  
161 161  Demo1:
162 162  
163 -(% class="box infomessage" %)
164 -(((
165 -~-~- Meta class
166 -~-~-main
162 +{{code language="Lua"}}
163 +-- Meta class
164 +--main
167 167  function mq.main()
168 - if not mq.m then
169 - local err = ""
170 -\\ mq.m, err = mqtt.create("tcp:~/~/grouprobotinfo.com:1883", "ClienID") ~-~- create connection
171 - if mq.m then
172 - mq.config = {
173 - username = "",~-~- ID
174 - password = "",~-~- password
175 - netway = 1, ~-~- Ethernet connection, WIFI=1
176 - ~-~- keepalive = 100, ~-~- Optional, set the connection heartbeat interval for 100 seconds.
177 - ~-~- cleansession = 0, ~-~- Optional, keep session
178 - }
179 - mq.m:on("message", function(topic, msg) ~-~- Register for receiving message callbacks
180 - local str = string.format("%s:%s", topic, msg)
181 - ~-~- print("mqtt msg:", str) ~-~- Print out the received topics and content
182 - end
183 - )
184 - mq.m:on("offline", function (cause) ~-~- Register for lost connection callbacks
185 - ~-~- addr_setstring("@xxx", "cause"..(cause or " got nil"))
186 - end)
187 - mq.m:on("arrived", function() ~-~- Registration for sending messages to callbacks 
188 - print("msg arrived")
189 - end)
190 - else
191 - print("mqtt create failed:", err) ~-~- Create object failed
192 - end
193 - else
194 - if mq.m:isconnected() then ~-~- If online, post a message
195 - local phaseStatus ="unknow"
196 - if addr_getbit("@Standby")== 1 then
197 - phaseStatus = "Standby"
198 - elseif addr_getbit("@Pre-Freeze")==1 then
199 - phaseStatus= "Pre-Freeze"
200 - elseif addr_getbit("@Prepare")==1 then
201 - phaseStatus ="Prepare"
202 - elseif addr_getbit("@Primary Dry")==1 then
203 - phaseStatus = "Primary dry"
204 - elseif addr_getbit("@Secondary Dry")==1 then
205 - phaseStatus = "Secondary Dry"
206 - end
207 -~-~- print(addr_getbit("@Primary Dry"))
208 -~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~--
209 - local activating ="unknow"
210 - if addr_getbit("@Compressor")==1 then
211 - activating = ",".."Compressor"
212 - end
213 - if addr_getbit("@Silicone Pump")==1 then
214 - activating = activating..",".."Silicone Pump"
215 - end
216 - if addr_getbit("@Vacuum Pump")==1 then
217 - activating = activating..",".."Vacuum Pump"
218 - end
219 - if addr_getbit("@Root Pump")==1 then
220 - activating = activating..",".."Root Pump"
221 - end
222 - if addr_getbit("@Heater")==1 then
223 - activating = activating..",".."Heater"
224 - end
225 - if addr_getbit("@Valve Silicone")==1 then
226 - activating = activating..",".."Valve Silicone"
227 - end
228 - if addr_getbit("@Valve Ice Condenser")==1 then
229 - activating = activating..",".."Valve Ice Condenser"
230 - end
231 - if addr_getbit("@Valve Vacuum Pump")==1 then
232 - activating = activating..",".."Valve Vacuum Pump"
233 - end
234 - local pr_activating =string.sub(activating,2)
235 - ~-~- print(pr_activating) 
166 + if not mq.m then
167 +  local err = ""
236 236  
169 +  mq.m, err = mqtt.create("tcp://grouprobotinfo.com:1883", "ClienID")  -- create connection
170 +  if mq.m then
171 +   mq.config = {
172 +    username = "",-- ID
173 +    password = "",-- password
174 +    netway = 1, -- Ethernet connection, WIFI=1
175 +    -- keepalive = 100, -- Optional, set the connection heartbeat interval for 100 seconds.
176 +    -- cleansession = 0, -- Optional, keep session
177 +   }
178 +   mq.m:on("message", function(topic, msg) -- Register for receiving message callbacks
179 +    local str = string.format("%s:%s", topic, msg)
180 +    -- print("mqtt msg:", str) -- Print out the received topics and content
181 +   end
182 +   )
183 +   mq.m:on("offline", function (cause) -- Register for lost connection callbacks
184 +    -- addr_setstring("@xxx", "cause"..(cause or " got nil"))
185 +   end)
186 +   mq.m:on("arrived", function() -- Registration for sending messages to callbacks 
187 +    print("msg arrived")
188 +   end)
189 +  else
190 +   print("mqtt create failed:", err) -- Create object failed
191 +  end
192 + else
193 +  if mq.m:isconnected() then -- If online, post a message
194 +     local phaseStatus ="unknow"
195 +     if addr_getbit("@Standby")== 1 then
196 +         phaseStatus = "Standby"
197 +     elseif addr_getbit("@Pre-Freeze")==1 then
198 +         phaseStatus= "Pre-Freeze"
199 +     elseif addr_getbit("@Prepare")==1 then
200 +         phaseStatus ="Prepare"
201 +     elseif addr_getbit("@Primary Dry")==1 then
202 +         phaseStatus = "Primary dry"
203 +     elseif addr_getbit("@Secondary Dry")==1 then
204 +         phaseStatus = "Secondary Dry"
205 +     end
206 +--   print(addr_getbit("@Primary Dry"))
207 +-------------------------------------------------------------------------------------------------------------------------
208 +     local activating ="unknow"
209 +     if addr_getbit("@Compressor")==1 then
210 +         activating = ",".."Compressor"
211 +     end
212 +     if addr_getbit("@Silicone Pump")==1 then
213 +         activating = activating..",".."Silicone Pump"
214 +     end
215 +     if addr_getbit("@Vacuum Pump")==1 then
216 +         activating = activating..",".."Vacuum Pump"
217 +     end
218 +     if addr_getbit("@Root Pump")==1 then
219 +         activating = activating..",".."Root Pump"
220 +     end
221 +     if addr_getbit("@Heater")==1 then
222 +         activating = activating..",".."Heater"
223 +     end
224 +     if addr_getbit("@Valve Silicone")==1 then
225 +         activating = activating..",".."Valve Silicone"
226 +     end
227 +     if addr_getbit("@Valve Ice Condenser")==1 then
228 +         activating = activating..",".."Valve Ice Condenser"
229 +     end
230 +     if addr_getbit("@Valve Vacuum Pump")==1 then
231 +         activating = activating..",".."Valve Vacuum Pump"
232 +     end
233 +     local pr_activating =string.sub(activating,2)
234 +    --  print(pr_activating)  
237 237  
238 - local status_text ="unknow"
239 - if addr_getbit("@Status Run")==1 then
240 - status_text = "RUNNING"
241 - else
242 - status_text = "STOP"
243 - end
244 -~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~--
245 -\\ local js = {type="status",
246 - mc_name ="FD300",
247 - status=status_text,
248 - elapsed_time={
249 - hour=addr_getword("@Elapsed Time (Hour)"),
250 - min=addr_getword("@Elapsed Time (Minute)"),
251 - sec=addr_getword("@Elapsed Time (Second)")
252 - },
253 - phase = phaseStatus,
254 - step = addr_getword("@Step"),
255 - activating_output = pr_activating,
256 - sv=addr_getshort("@SV Silicone")/10,
257 - pv=addr_getshort("@PV Silicone")/10,
258 - product1=addr_getshort("@Product 1")/10,
259 -
260 - product2=addr_getshort("@Product 2")/10,
261 - product3=addr_getshort("@Product 3")/10,
262 - product4=addr_getshort("@Product 4")/10,
263 - ice1=addr_getshort("@Ice condenser 1")/10,
264 - ice2=addr_getshort("@Ice condenser 2")/10,
265 - vacuum=addr_getfloat("@Vacuum")
266 -
267 - }
268 - local jsAlarm = { HPC = addr_getbit("@B_25395#W0.00"),
269 - ODPC = addr_getbit("@B_25395#W0.01"),
270 - MTPC=addr_getbit("@B_25395#W0.02"),
271 - HTT = addr_getbit("@B_25395#W1.03"),
272 - CPC = addr_getbit("@B_25395#W0.08"),
273 - CPSP =addr_getbit("@B_25395#W1.00"),
274 - CPVP =addr_getbit("@B_25395#W0.10"),
275 - CPRP =addr_getbit("@B_25395#W0.11"),
276 - HP =addr_getbit("@B_25395#W1.01"),
277 - PP= addr_getbit("@B_25395#W1.02"),
278 - PO=addr_getbit("@B_25395#W0.07"),
279 - FSE=addr_getbit("@B_25395#W2.04"),
280 - AVVSVV=addr_getbit("@B_25395#W1.12"),
281 - ICHT=addr_getbit("@B_25395#W3.06")
282 -
283 - }
284 -\\ ~-~- ("@B_25395#CIO1.02")
285 - mq.m:publish("mqtt-v-box-epsilon-fd300", json.encode(js) , 0, 0)
286 - mq.m:publish("mqtt-v-box-epsilon-alarm-fd300", json.encode(jsAlarm) , 0, 0)
287 - else
288 - local stat, err = mq.m:connect(mq.config) ~-~- connection
289 - if stat == nil then ~-~-Determine whether to connect
290 - print("mqtt connect failed:", err)
291 - return ~-~- Connection failed, return directly
292 - end
293 - mq.m:subscribe("mqtt-v-box-epsilon", 0)~-~- Subscribe to topics
294 -\\ end
295 - ~-~- mq.m:unsubscribe("stc/test")
296 - ~-~- mq.m:disconnect() ~-~- close matt
297 - ~-~- mq.m:close() ~-~- close clase
298 - end
236 +
237 +
238 +     local status_text ="unknow"
239 +     if addr_getbit("@Status Run")==1 then
240 +         status_text = "RUNNING"
241 +     else
242 +         status_text = "STOP"
243 +     end
244 +-------------------------------------------------------------------------------------------------------------------------      
245 +
246 +     local js =  {type="status",
247 +                  mc_name ="FD300",
248 +                  status=status_text,
249 +                  elapsed_time={
250 +                                hour=addr_getword("@Elapsed Time (Hour)"),
251 +                                min=addr_getword("@Elapsed Time (Minute)"),
252 +                                sec=addr_getword("@Elapsed Time (Second)")
253 +                                },
254 +                   phase = phaseStatus,
255 +                   step = addr_getword("@Step"),
256 +                   activating_output = pr_activating,
257 +                   sv=addr_getshort("@SV Silicone")/10,
258 +                   pv=addr_getshort("@PV Silicone")/10,
259 +                   product1=addr_getshort("@Product 1")/10,
260 +
261 +                   product2=addr_getshort("@Product 2")/10,
262 +                   product3=addr_getshort("@Product 3")/10,
263 +                   product4=addr_getshort("@Product 4")/10,
264 +                   ice1=addr_getshort("@Ice condenser 1")/10,
265 +                   ice2=addr_getshort("@Ice condenser 2")/10,
266 +                   vacuum=addr_getfloat("@Vacuum")
267 +
268 +                }
269 +     local jsAlarm = {  HPC = addr_getbit("@B_25395#W0.00"),
270 +                        ODPC = addr_getbit("@B_25395#W0.01"),
271 +                        MTPC=addr_getbit("@B_25395#W0.02"),
272 +                        HTT = addr_getbit("@B_25395#W1.03"),
273 +                        CPC = addr_getbit("@B_25395#W0.08"),
274 +                        CPSP =addr_getbit("@B_25395#W1.00"),
275 +                        CPVP =addr_getbit("@B_25395#W0.10"),
276 +                        CPRP =addr_getbit("@B_25395#W0.11"),
277 +                        HP =addr_getbit("@B_25395#W1.01"),
278 +                        PP= addr_getbit("@B_25395#W1.02"),
279 +                        PO=addr_getbit("@B_25395#W0.07"),
280 +                        FSE=addr_getbit("@B_25395#W2.04"),
281 +                        AVVSVV=addr_getbit("@B_25395#W1.12"),
282 +                        ICHT=addr_getbit("@B_25395#W3.06")
283 +  
284 +                }
285 +
286 +    -- ("@B_25395#CIO1.02")
287 +     mq.m:publish("mqtt-v-box-epsilon-fd300", json.encode(js) , 0, 0)
288 +     mq.m:publish("mqtt-v-box-epsilon-alarm-fd300", json.encode(jsAlarm) , 0, 0)
289 +  else
290 +   local stat, err = mq.m:connect(mq.config) -- connection
291 +   if stat == nil then --Determine whether to connect
292 +    print("mqtt connect failed:", err)
293 +    return -- Connection failed, return directly
294 +   end
295 +   mq.m:subscribe("mqtt-v-box-epsilon", 0)-- Subscribe to topics
296 +
297 +  end
298 +  -- mq.m:unsubscribe("stc/test")
299 +  -- mq.m:disconnect() -- close matt
300 +  -- mq.m:close() -- close clase
301 + end
299 299  end
300 -)))
303 +{{/code}}
301 301  
302 302  == **2.2 V-Box connect with Azure platform** ==
303 303  
... ... @@ -309,126 +309,129 @@
309 309  
310 310  Script is as below
311 311  
312 -(% class="box infomessage" %)
313 -(((
314 -~-~-https:~/~/support.huaweicloud.com/qs-IoT/iot_05_0005.html mqtt.fx monitor to connect azure iot
315 +{{code language="Lua"}}
316 +--https://support.huaweicloud.com/qs-IoT/iot_05_0005.html  mqtt.fx monitor to connect azure iot
315 315  sprint = print
316 316  
317 -~-~-Get custom configuration parameters (vbox custom information)
318 -~-~-local CUSTOM = bns_get_config("bind")
319 -~-~-local DS_ID = CUSTOM.DSID or "60a71ccbbbe12002c08f3a1a_WECON"
319 +--Get custom configuration parameters (vbox custom information)
320 +--local CUSTOM = bns_get_config("bind")
321 +--local DS_ID = CUSTOM.DSID or "60a71ccbbbe12002c08f3a1a_WECON"
320 320  
321 321  
322 -~-~-Cloud mode interface to obtain the MQTT information configured by the cloud platform: (5 returns, namely the server address, client ID, connection table, last word table, certificate table)
324 +
325 +--Cloud mode interface to obtain the MQTT information configured by the cloud platform: (5 returns, namely the server address, client ID, connection table, last word table, certificate table)
323 323  local MQTT_URL, MQTT_CLIENTID, MQTT_CFG, MQTT_LWT, MQTT_CART = mqtt.setup_cfg()
324 324  
325 -~-~-MQTT_CFG.username = '60a71ccbbbe12002c08f3a1a_WECON'
326 -~-~-MQTT_CFG.password='wecon123'
327 -~-~-MQTT_CLIENTID = '60a71ccbbbe12002c08f3a1a_WECON_0_0_2021052110usernxame:60a71ccbbbe12002c08f3a1a_WECONpassword:a0a951581855aa8e0262129da6cf1b43f2c0ecfac4fa56117fc5a20c90be169a'
328 +--MQTT_CFG.username = '60a71ccbbbe12002c08f3a1a_WECON'
329 +--MQTT_CFG.password='wecon123'
330 +--MQTT_CLIENTID = '60a71ccbbbe12002c08f3a1a_WECON_0_0_2021052110usernxame:60a71ccbbbe12002c08f3a1a_WECONpassword:a0a951581855aa8e0262129da6cf1b43f2c0ecfac4fa56117fc5a20c90be169a'
328 328  
329 -~-~-publish to topics
332 +--publish to topics
330 330  local pub_RE_TOPIC = string.format('devices/wecon_02/messages/events/')
331 -~-~-Subscribe topics
334 +--Subscribe topics
332 332  local Subscribe_RE_TOPIC1 = string.format('devices/wecon_02/messages/devicebound/#')
333 333  
334 -~-~-variable
337 +--variable
335 335  local last_time = 0
336 336  
337 337  
338 -~-~-Timing main function
341 +
342 +--Timing main function
339 339  function Azure.main()
340 340  
341 - sprint(os.date("%Y-%m-%d %H:%M %S", os.time()) .. " Azureiot.main start")
342 - if g_mq then
343 - if g_mq:isconnected() then
344 - send_Data()
345 - else
346 - if os.time() - last_time > 20 then
347 - last_time = os.time()
348 - mymqtt_connect()
349 - end
350 - end
351 - else
352 - mymqtt_init()
353 - end
354 - sprint(os.date("%Y-%m-%d %H:%M %S", os.time()) .. " Azureiot.main end")
345 +   sprint(os.date("%Y-%m-%d %H:%M %S", os.time()) .. " Azureiot.main start")
346 +   if g_mq then
347 +        if g_mq:isconnected() then
348 +            send_Data()
349 +        else
350 +            if os.time() - last_time > 20 then
351 +                last_time = os.time()
352 +                mymqtt_connect()
353 +            end
354 +        end
355 +    else
356 +        mymqtt_init()
357 +    end
358 +    sprint(os.date("%Y-%m-%d %H:%M %S", os.time()) .. " Azureiot.main end")
355 355  end
356 356  
357 -~-~- Initialize MQTT
361 +-- Initialize MQTT
358 358  function mymqtt_init()
359 - sprint(string.format("mqtt init mqtt_url:%s mqtt_clientid:%s", MQTT_URL, MQTT_CLIENTID))
360 - g_mq, err = mqtt.create(MQTT_URL, MQTT_CLIENTID) ~-~- Create the object and declare it as a global variable
361 - if g_mq then
362 - g_mq:on("message", mymqtt_msg_callback) ~-~- Register to receive message callbacks
363 - sprint("mqtt init success")
364 - else
365 - sprint("mqtt init failed:", err)
366 - end
363 +    sprint(string.format("mqtt init mqtt_url:%s mqtt_clientid:%s", MQTT_URL, MQTT_CLIENTID))
364 +    g_mq, err = mqtt.create(MQTT_URL, MQTT_CLIENTID) -- Create the object and declare it as a global variable
365 +    if g_mq then
366 +        g_mq:on("message", mymqtt_msg_callback) -- Register to receive message callbacks
367 +        sprint("mqtt init success")
368 +    else
369 +        sprint("mqtt init failed:", err)
370 +    end
367 367  end
368 368  
369 -~-~- Connect to MQTT server
373 +-- Connect to MQTT server
370 370  function mymqtt_connect()
371 - sprint("mqtt connecting...")
372 - local stat, err = g_mq:connect(MQTT_CFG,MQTT_LWT, MQTT_CART)
373 - if stat == nil then
374 - sprint("mqtt connect failed:", err)
375 - return
376 - else
377 - sprint("mqtt connected")
378 - end
379 - g_mq:subscribe(Subscribe_RE_TOPIC1, 0) 
375 +    sprint("mqtt connecting...")
376 +    local stat, err = g_mq:connect(MQTT_CFG,MQTT_LWT, MQTT_CART)
377 +    if stat == nil then
378 +        sprint("mqtt connect failed:", err)
379 +        return
380 +    else
381 +        sprint("mqtt connected")
382 +    end
383 +    g_mq:subscribe(Subscribe_RE_TOPIC1, 0) 
380 380  end
381 381  
382 -~-~- Receive MQTT message callback function
386 +-- Receive MQTT message callback function
383 383  function mymqtt_msg_callback(topic, msg)
384 - print("topic:",topic)
385 - print("revdata:",msg)
386 - ~-~- local revData = json.decode(msg)
387 - ~-~- if topic == Subscribe_RE_TOPIC1 then ~-~-Process topic information subscribed from the cloud
388 -~-~- if string.match(topic,Subscribe_RE_TOPIC1) then
389 - ~-~- print("topi11:",topic)
390 - setValue(revData)
391 - ~-~- end
388 +    print("topic:",topic)
389 +    print("revdata:",msg)
390 +   -- local revData = json.decode(msg)
391 + --  if topic == Subscribe_RE_TOPIC1 then --Process topic information subscribed from the cloud
392 +-- if string.match(topic,Subscribe_RE_TOPIC1) then
393 +     --   print("topi11:",topic)
394 +       setValue(revData)
395 +   -- end
392 392  end
393 393  
394 -~-~-Process the received data
395 -~-~-function setValue(revData)
396 - ~-~- if revData ~~=nil then 
397 - ~-~- for i,v in pairs(revData) do
398 - ~-~- print("Data received:",i,v)
399 - ~-~- end
400 - ~-~- end
401 -~-~-end
398 +--Process the received data
399 +--function setValue(revData)
400 +   -- if revData ~=nil then 
401 + --       for i,v in pairs(revData) do
402 +  --          print("Data received:",i,v)
403 +  --      end
404 +   -- end
405 +--end
402 402  
403 -~-~-Get real-time data
407 +--Get real-time data
404 404  function getData()
405 - local jdata = {}
406 - local addr = bns_get_alldata()
407 - print(json.encode(addr))
408 - for i,v in pairs(addr) do
409 - if v[2] == 1 then
410 - jdata[v[3]] = v[4]
411 - end
412 - end
413 - return jdata
414 -end
409 +    local jdata = {}
410 +    local addr = bns_get_alldata()
411 +    print(json.encode(addr))
412 +    for i,v in pairs(addr) do
413 +        if v[2] == 1 then
414 +           jdata[v[3]] = v[4]
415 +        end
416 +    end
417 +    return jdata
418 +end 
415 415  
416 416  
417 -~-~-send data
421 +
422 +--send data
418 418  function send_Data()
419 - local pub_data = {100
420 - ~-~- services=~{~{
421 -\\ ~-~-serviceId ='Temperature',
422 - ~-~- properties={
423 - ~-~- value = 55
424 - ~-~- },
425 - ~-~- }}
424 +    local pub_data = {100
425 +     --   services={{
426 +
427 +            --serviceId ='Temperature',
428 +           -- properties={
429 +               -- value = 55
430 +           -- },
431 +       -- }}
426 426  }
427 427  sprint(json.encode(pub_data))
428 428  print("..........",pub_RE_TOPIC)
429 - return g_mq:publish(pub_RE_TOPIC, json.encode(pub_data), 0, 0)
435 +    return g_mq:publish(pub_RE_TOPIC, json.encode(pub_data), 0, 0)
430 430  end
431 -)))
437 +{{/code}}
432 432  
433 433  == **2.3 How to configure the Huawei platform?(✎Note: Huawei IOT DA function is only in China area.If you want this function,you need to use chinese mobile to register)** ==
434 434  
... ... @@ -702,4 +702,344 @@
702 702  
703 703  == **2.5 V-Box connect with AWS platform** ==
704 704  
705 -[[https:~~/~~/ftp.we-con.com.cn/Download/WIKI/V-BOX/Demo/AWS/AWS.zip>>https://ftp.we-con.com.cn/Download/WIKI/V-BOX/Demo/AWS/AWS.zip]]
711 +=== **Log in AWS** ===
712 +
713 +Login aws account and click“Connect an IoT device”
714 +
715 +[[image:image-20220709165402-1.png]]
716 +
717 +[[image:image-20220709165402-2.png]]
718 +
719 +
720 +=== **Create policy** ===
721 +
722 +Click “Secure”~-~-->“Policies”~-~-->“Create policy”~-~-->Click “Create”
723 +
724 +[[image:image-20220709165402-3.png]]
725 +
726 +Name the policy~-~-->Click “JSON”~-~-->Copy the following content~-~-->Click “Create”
727 +
728 +[[image:image-20220709165402-5.png]]
729 +
730 +[[image:image-20220709165402-4.png]]
731 +
732 +{{code language="java"}}
733 +{
734 +
735 +  "Version": "2012-10-17",
736 +
737 +  "Statement": [
738 +
739 +    {
740 +
741 +      "Effect": "Allow",
742 +
743 +      "Action": [
744 +
745 +        "iot:Connect",
746 +
747 +        "iot:Publish",
748 +
749 +        "iot:Subscribe",
750 +
751 +        "iot:Receive",
752 +
753 +        "greengrass:Discover"
754 +
755 +      ],
756 +
757 +      "Resource": "*"
758 +
759 +    }
760 +
761 +  ]
762 +
763 +}
764 +{{/code}}
765 +
766 +1. **Create things**
767 +
768 +Click “Manage”~-~-->“Things”~-~-->“Create things”~-~-->“Create single thing”
769 +
770 +
771 +|
772 +| |[[image:image-20220709165402-6.png]]
773 +
774 +|
775 +| |[[image:image-20220709165402-7.png]]
776 +
777 +|
778 +| |[[image:image-20220709165402-8.png]]
779 +
780 +Name the thing~-~-->Click “Next”
781 +
782 +
783 +Select the way to create certificate
784 +
785 +
786 +|
787 +| |[[image:image-20220709165402-9.png]]
788 +
789 +Select policy
790 +
791 +
792 +|
793 +| |[[image:image-20220709165402-10.png]]
794 +
795 +
796 +
797 +
798 +
799 +
800 +
801 +|
802 +| |[[image:image-20220709165402-11.png]]
803 +
804 +
805 +
806 +
807 +1. **Test with MQTT.fx tool**
808 +
809 +Click “View Setting” to get the “Broker Adress”
810 +
811 +
812 +|
813 +| |[[image:image-20220709165402-12.png]]
814 +
815 +|
816 +| |[[image:image-20220709165402-13.png]]
817 +
818 +
819 +
820 +
821 +
822 +
823 +|
824 +| |[[image:image-20220709165402-14.png]]
825 +
826 +Create one connection in MQTT.fx tool, set broker port as 8883.
827 +
828 +Upload the CA File, Client Certificate File, Client Key File
829 +
830 +
831 +|
832 +| |[[image:image-20220709165402-15.png]]
833 +
834 +Publish message to topic “TEST”
835 +
836 +
837 +|
838 +| |[[image:image-20220709165402-16.png]]
839 +
840 +|
841 +| |[[image:image-20220709165402-17.png]]
842 +
843 +Click”Test”~-~-->”MQTT test client”~-~-->”Subscrible to a topic”, to get message publish from MQTT.fx tool.
844 +
845 +And we can also send message form AWS platform to MQTT.fx tool.
846 +
847 +
848 +|
849 +| |[[image:image-20220709165402-18.png]]
850 +
851 +1. **Configurate in CloudTool**
852 +
853 +Copy the same setting in MQTT.fx to MQTT configuration
854 +
855 +
856 +|
857 +| |[[image:image-20220709165402-19.png]]
858 +
859 + Add a lua script and copy the lua demo into it.
860 +
861 +
862 +|
863 +| |[[image:image-20220709165402-20.png]]
864 +
865 +sprint = print
866 +
867 +~-~-Cloud mode interface to obtain the MQTT information configured by the cloud platform: (5 returns, namely the server address, client ID, connection table, last word table, certificate table)
868 +
869 +local MQTT_URL, MQTT_CLIENTID, MQTT_CFG, MQTT_LWT, MQTT_CART = mqtt.setup_cfg()
870 +
871 +~-~-publish to topics
872 +
873 +local pub_RE_TOPIC = string.format('TEST')
874 +
875 +~-~-Subscribe topics
876 +
877 +local Subscribe_RE_TOPIC1 = string.format('TEST')
878 +
879 +~-~-variable
880 +
881 +local last_time = 0
882 +
883 +~-~-Timing main function
884 +
885 +function aws.main()
886 +
887 + sprint(os.date("%Y-%m-%d %H:%M %S", os.time()) .. " aws.main start")
888 +
889 + if g_mq then
890 +
891 + if g_mq:isconnected() then
892 +
893 + send_Data()
894 +
895 + else
896 +
897 + if os.time() - last_time > 5 then
898 +
899 + last_time = os.time()
900 +
901 + mymqtt_connect()
902 +
903 + end
904 +
905 + end
906 +
907 + else
908 +
909 + mymqtt_init()
910 +
911 + end
912 +
913 + sprint(os.date("%Y-%m-%d %H:%M %S", os.time()) .. " aws.main end")
914 +
915 +end
916 +
917 +
918 +~-~- Initialize MQTT
919 +
920 +function mymqtt_init()
921 +
922 + sprint(string.format("mqtt init mqtt_url:%s mqtt_clientid:%s", MQTT_URL, MQTT_CLIENTID))
923 +
924 + g_mq, err = mqtt.create(MQTT_URL, MQTT_CLIENTID) ~-~- Create the object and declare it as a global variable
925 +
926 + if g_mq then
927 +
928 + g_mq:on("message", mymqtt_msg_callback) ~-~- Register to receive message callbacks
929 +
930 + sprint("mqtt init success")
931 +
932 + else
933 +
934 + sprint("mqtt init failed:", err)
935 +
936 + end
937 +
938 +end
939 +
940 +~-~- Connect to MQTT server
941 +
942 +function mymqtt_connect()
943 +
944 + sprint("mqtt connecting...")
945 +
946 + local stat, err = g_mq:connect(MQTT_CFG,MQTT_LWT, MQTT_CART)
947 +
948 + if stat == nil then
949 +
950 + sprint("mqtt connect failed:", err)
951 +
952 + return
953 +
954 + else
955 +
956 + sprint("mqtt connected")
957 +
958 + end
959 +
960 + g_mq:subscribe(TEST, 0)
961 +
962 +end
963 +
964 +~-~- Receive MQTT message callback function
965 +
966 +function mymqtt_msg_callback(topic, msg)
967 +
968 + print("topic:",topic)
969 +
970 + print("revdata:",msg)
971 +
972 + local revData = json.decode(msg)
973 +
974 + print (revData)
975 +
976 + if topic == Subscribe_RE_TOPIC1 then ~-~-Process topic information subscribed from the cloud
977 +
978 +if string.match(topic,Subscribe_RE_TOPIC1) then
979 +
980 + ~-~-if revData ~~= nil then
981 +
982 + for k,v in pairs (revData) do
983 +
984 + print("printing revdata after kv here")
985 +
986 + print (k,v)
987 +
988 + end
989 +
990 + print ("current state is",fanstate)
991 +
992 + ~-~-end
993 +
994 +end
995 +
996 +end
997 +
998 +end
999 +
1000 +
1001 +~-~-Get real-time data
1002 +
1003 +function getData()
1004 +
1005 + local jdata = {}
1006 +
1007 + local addr = bns_get_alldata()
1008 +
1009 + print(json.encode(addr))
1010 +
1011 + for i,v in pairs(addr) do
1012 +
1013 + if v[2] == 1 then
1014 +
1015 + jdata[v[3]] = v[4]
1016 +
1017 + end
1018 +
1019 + end
1020 +
1021 + return jdata
1022 +
1023 +end
1024 +
1025 +~-~-send data
1026 +
1027 +function send_Data()
1028 +
1029 + local pub_data =
1030 +
1031 + {
1032 +
1033 +123
1034 +
1035 +}
1036 +
1037 +sprint(json.encode(pub_data))
1038 +
1039 +print("..........",pub_RE_TOPIC)
1040 +
1041 + return g_mq:publish(pub_RE_TOPIC, json.encode(pub_data), 0, 0)
1042 +
1043 +end
1044 +
1045 +
1046 +
1047 +Get message in AWS
1048 +
1049 +
1050 +|
1051 +| |[[image:image-20220709165402-21.png]]
image-20220709165226-1.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.Jim
Size
... ... @@ -1,0 +1,1 @@
1 +1.2 MB
Content
image-20220709165402-1.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.Jim
Size
... ... @@ -1,0 +1,1 @@
1 +200.2 KB
Content
image-20220709165402-10.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.Jim
Size
... ... @@ -1,0 +1,1 @@
1 +19.0 KB
Content
image-20220709165402-11.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.Jim
Size
... ... @@ -1,0 +1,1 @@
1 +105.9 KB
Content
image-20220709165402-12.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.Jim
Size
... ... @@ -1,0 +1,1 @@
1 +29.0 KB
Content
image-20220709165402-13.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.Jim
Size
... ... @@ -1,0 +1,1 @@
1 +158.8 KB
Content
image-20220709165402-14.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.Jim
Size
... ... @@ -1,0 +1,1 @@
1 +48.1 KB
Content
image-20220709165402-15.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.Jim
Size
... ... @@ -1,0 +1,1 @@
1 +46.9 KB
Content
image-20220709165402-16.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.Jim
Size
... ... @@ -1,0 +1,1 @@
1 +140.7 KB
Content
image-20220709165402-17.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.Jim
Size
... ... @@ -1,0 +1,1 @@
1 +12.5 KB
Content
image-20220709165402-18.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.Jim
Size
... ... @@ -1,0 +1,1 @@
1 +32.2 KB
Content
image-20220709165402-19.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.Jim
Size
... ... @@ -1,0 +1,1 @@
1 +66.6 KB
Content
image-20220709165402-2.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.Jim
Size
... ... @@ -1,0 +1,1 @@
1 +188.5 KB
Content
image-20220709165402-20.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.Jim
Size
... ... @@ -1,0 +1,1 @@
1 +33.3 KB
Content
image-20220709165402-21.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.Jim
Size
... ... @@ -1,0 +1,1 @@
1 +124.8 KB
Content
image-20220709165402-3.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.Jim
Size
... ... @@ -1,0 +1,1 @@
1 +103.9 KB
Content
image-20220709165402-4.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.Jim
Size
... ... @@ -1,0 +1,1 @@
1 +4.0 KB
Content
image-20220709165402-5.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.Jim
Size
... ... @@ -1,0 +1,1 @@
1 +66.5 KB
Content
image-20220709165402-6.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.Jim
Size
... ... @@ -1,0 +1,1 @@
1 +110.0 KB
Content
image-20220709165402-7.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.Jim
Size
... ... @@ -1,0 +1,1 @@
1 +25.4 KB
Content
image-20220709165402-8.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.Jim
Size
... ... @@ -1,0 +1,1 @@
1 +64.2 KB
Content
image-20220709165402-9.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.Jim
Size
... ... @@ -1,0 +1,1 @@
1 +37.5 KB
Content