Changes for page 2 Script

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

From version 15.1
edited by Leo Wei
on 2022/07/09 17:44
Change comment: There is no comment for this version
To version 20.1
edited by Hunter
on 2022/07/29 16:47
Change comment: There is no comment for this version

Summary

Details

Page properties
Author
... ... @@ -1,1 +1,1 @@
1 -XWiki.admin
1 +XWiki.Hunter
Content
... ... @@ -13,7 +13,7 @@
13 13  for example. addr_setshort(addr,num) Function: Write 16-bit signed decimal address
14 14  addr_getshort(addr) Function:Read 16-bit signed decimal address
15 15  addr_getword(string addr)Function: Read 16-bit unsigned decimal address
16 -More script function are in the second section of [[“V-BOX Script Interface Manual”>>doc:V-BOX.V-Net.1\.User Manual.04 Lua Script.01 Lua Functions.WebHome]]
16 +More script function are in the second section of [[“V-BOX Script Interface Manual”>>doc:V-BOX.V-Net.04 Lua Script.01 Lua Functions.WebHome]]
17 17  
18 18  == **1.2 Arithmetic** ==
19 19  
... ... @@ -36,34 +36,35 @@
36 36  
37 37  Script is as below:
38 38  
39 -{{code language="Lua"}}
39 +(% class="box infomessage" %)
40 +(((
40 40  function sms.main()
41 -------send condition------
42 +~-~-~-~-~-~-send condition~-~-~-~-~-~-
42 42  local temp1 = addr_getword("@Temperature1")
43 43  local temp2 = addr_getword("@Temperature2")
44 44  local temp3 = addr_getword("@Temperature3")
45 45  local timer = addr_getword("@Timer")
46 46  local tag = addr_getbit("@Tag")
47 -------lasting time------
48 +~-~-~-~-~-~-lasting time~-~-~-~-~-~-
48 48  if temp1 > 5 and temp2 > 10 and temp3 < 20 then
49 - timer = timer + 1
50 - addr_setword("@Timer",timer)
50 + timer = timer + 1
51 + addr_setword("@Timer",timer)
51 51  else
52 - timer = 0
53 - addr_setword("@Timer",timer)
53 + timer = 0
54 + addr_setword("@Timer",timer)
54 54  end
55 -------send sms & output Y0------
56 +~-~-~-~-~-~-send sms & output Y0~-~-~-~-~-~-
56 56  if timer > 5 then
57 - if tag == 0 then
58 - send_sms_ira("19859254700","alarm trigger")
59 - addr_setbit("@Tag",1)
60 - end
58 + if tag == 0 then
59 + send_sms_ira("19859254700","alarm trigger")
60 + addr_setbit("@Tag",1)
61 + end
61 61  elseif tag == 1 then
62 62  send_sms_ira("19859254700","alarm release")
63 63  addr_setbit("@Tag",0)
64 64  end
65 65  end
66 -{{/code}}
67 +)))
67 67  
68 68  == **1.5 Telegram notification** ==
69 69  
... ... @@ -153,13 +153,137 @@
153 153  
154 154  (% class="mark" %)2.If your server requires SSL certificate to log in,please use OpenCloud.Because only OpenCloud platform can support to upload certificate
155 155  
156 -== **2.1 V-Box connect with customer server:grouprobotinfo.com** ==
157 +(% class="wikigeneratedid" %)
158 +**✎Note: **Before program the script of MQTT, please make sure the server(MQTT broker) can be connected through MQTT Client tool.
157 157  
160 +(% class="wikigeneratedid" %)
161 +Tool link: **[[MQTT.fx>>http://mqttfx.jensd.de/index.php/download]]**
162 +
163 +== **2.1 V-Box connect with test server(General Example)** ==
164 +
165 +{{code language="lua"}}
166 +--MQTT configuration table
167 +local MQTT_CFG={}
168 +MQTT_CFG.username = "weconsupport"
169 +MQTT_CFG.password = "123456"
170 +MQTT_CFG.netway = 0
171 +MQTT_CFG.keepalive = 60
172 +MQTT_CFG.cleansession = 1
173 +--TCP URL
174 +MQTT_URL = "tcp://mq.tongxinmao.com:1883"
175 +--Client ID
176 +MQTT_CLIENT_ID = "V-BOXH-AG"
177 +
178 +--Generate UUID
179 +function uuid()
180 + local seed = {'e','1','2','3','4','5','6','7','8','9','a','b','c','d','e','f'}
181 + local tb = {}
182 + for i=1, 32 do
183 + table.insert(tb, seed[math.random(1,16)])
184 + end
185 + local sid=table.concat(tb)
186 + return string.format('%s',
187 + string.sub(sid,1,32)
188 + )
189 +end
190 +
191 +
192 +--Topic name to subscribed
193 +local SUBSCRIBE_TOPIC = 'testtopic/test/no1/123456'
194 +
195 +--Topic name to be published
196 +local PUBLISH_TOPIC = 'testtopic/test/no1/7890'
197 +
198 +
199 +--real time
200 +local LAST_TIME = 0
201 +
202 +
203 +--initialize mqtt
204 +function mqtt_init()
205 + print(string.format("mqtt init mqtt_url:%s mqtt_clientid:%s", MQTT_URL, MQTT_CLIENT_ID))
206 + g_mq, err = mqtt.create(MQTT_URL, MQTT_CLIENT_ID) -- create mqtt object,and declare it as a global variable
207 + if g_mq then
208 + g_mq:on("message", mqtt_msg_callback) -- Register a callback for receiving messages
209 + print("mqtt init success")
210 + else
211 + print("mqtt init failed:", err)
212 + end
213 +end
214 +
215 +-- connect to mqtt
216 +function mqtt_connect()
217 + print("mqtt connecting...")
218 + local stat, err = g_mq:connect(MQTT_CFG)
219 + if stat == nil then
220 + print("mqtt connect failed:", err)
221 + return
222 + else
223 + print("mqtt connected")
224 + end
225 + g_mq:subscribe(SUBSCRIBE_TOPIC, 0)
226 +end
227 +
228 +-- Received message callback function
229 +function mqtt_msg_callback(topic, msg)
230 + print("topic:", topic)
231 + print("msg:", msg)
232 + local objMsg = json.decode(msg)
233 + local water = objMsg.data.waterlevel
234 + local temp = objMsg.data.temperature
235 + addr_setword("@HDW20",water)
236 + addr_setword("@HDW10",temp)
237 +end
238 +
239 +--Send data (data upload to platform and encapsulate it with custom functions)
240 +function send_data()
241 + local pub_data = {
242 + timestamp = os.time(),
243 + messageId = 1,
244 + event = 'test_data',
245 + mfrs = 'V-Box',
246 + data = {
247 + id = uuid(),
248 + waterlevel = addr_getword("@HDW10"),
249 + temperature = addr_getword("@HDW20")
250 + }
251 + }
252 + return g_mq:publish(PUBLISH_TOPIC, json.encode(pub_data), 0, 0)
253 +end
254 +
255 +
256 +--main function fixed timed execution
257 +function MQTT.main()
258 + --dosomething
259 + print(os.date("%Y-%m-%d %H:%M %S", os.time()) .. " main start")
260 + --determine the mqtt object whether exist
261 + if g_mq then
262 + --determine the mqtt object whether has been connected or not
263 + if g_mq:isconnected() then
264 + send_data()
265 + else
266 + --if exceed 20 sec not connect, reconnect once
267 + if os.time() - LAST_TIME > 20 then
268 + LAST_TIME = os.time()
269 + --connect to mqtt or reconnect
270 + mqtt_connect()
271 + end
272 + end
273 + else
274 + --mqtt object does not exist so create new one
275 + mqtt_init()
276 + end
277 + print(os.date("%Y-%m-%d %H:%M %S", os.time()) .. " main end")
278 +end
279 +{{/code}}
280 +
281 +== **2.2 V-Box connect with customer server:grouprobotinfo.com** ==
282 +
158 158  This demo does not use SSL certification. Script is as below
159 159  
160 160  Demo1:
161 161  
162 -{{code language="Lua"}}
287 +{{code language="lua"}}
163 163  -- Meta class
164 164  --main
165 165  function mq.main()
... ... @@ -280,7 +280,7 @@
280 280                          FSE=addr_getbit("@B_25395#W2.04"),
281 281                          AVVSVV=addr_getbit("@B_25395#W1.12"),
282 282                          ICHT=addr_getbit("@B_25395#W3.06")
283 -  
408 +
284 284                  }
285 285  
286 286      -- ("@B_25395#CIO1.02")
... ... @@ -302,7 +302,7 @@
302 302  end
303 303  {{/code}}
304 304  
305 -== **2.2 V-Box connect with Azure platform** ==
430 +== **2.3 V-Box connect with Azure platform** ==
306 306  
307 307  In this demo,V-Box connects with Azure by SSL certification.
308 308  
... ... @@ -312,131 +312,128 @@
312 312  
313 313  Script is as below
314 314  
315 -{{code language="Lua"}}
316 ---https://support.huaweicloud.com/qs-IoT/iot_05_0005.html  mqtt.fx monitor to connect azure iot
440 +(% class="box infomessage" %)
441 +(((
442 +~-~-https:~/~/support.huaweicloud.com/qs-IoT/iot_05_0005.html mqtt.fx monitor to connect azure iot
317 317  sprint = print
318 318  
319 ---Get custom configuration parameters (vbox custom information)
320 ---local CUSTOM = bns_get_config("bind")
321 ---local DS_ID = CUSTOM.DSID or "60a71ccbbbe12002c08f3a1a_WECON"
445 +~-~-Get custom configuration parameters (vbox custom information)
446 +~-~-local CUSTOM = bns_get_config("bind")
447 +~-~-local DS_ID = CUSTOM.DSID or "60a71ccbbbe12002c08f3a1a_WECON"
322 322  
323 323  
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)
450 +~-~-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)
326 326  local MQTT_URL, MQTT_CLIENTID, MQTT_CFG, MQTT_LWT, MQTT_CART = mqtt.setup_cfg()
327 327  
328 ---MQTT_CFG.username = '60a71ccbbbe12002c08f3a1a_WECON'
329 ---MQTT_CFG.password='wecon123'
330 ---MQTT_CLIENTID = '60a71ccbbbe12002c08f3a1a_WECON_0_0_2021052110usernxame:60a71ccbbbe12002c08f3a1a_WECONpassword:a0a951581855aa8e0262129da6cf1b43f2c0ecfac4fa56117fc5a20c90be169a'
453 +~-~-MQTT_CFG.username = '60a71ccbbbe12002c08f3a1a_WECON'
454 +~-~-MQTT_CFG.password='wecon123'
455 +~-~-MQTT_CLIENTID = '60a71ccbbbe12002c08f3a1a_WECON_0_0_2021052110usernxame:60a71ccbbbe12002c08f3a1a_WECONpassword:a0a951581855aa8e0262129da6cf1b43f2c0ecfac4fa56117fc5a20c90be169a'
331 331  
332 ---publish to topics
457 +~-~-publish to topics
333 333  local pub_RE_TOPIC = string.format('devices/wecon_02/messages/events/')
334 ---Subscribe topics
459 +~-~-Subscribe topics
335 335  local Subscribe_RE_TOPIC1 = string.format('devices/wecon_02/messages/devicebound/#')
336 336  
337 ---variable
462 +~-~-variable
338 338  local last_time = 0
339 339  
340 340  
341 -
342 ---Timing main function
466 +~-~-Timing main function
343 343  function Azure.main()
344 344  
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")
469 + sprint(os.date("%Y-%m-%d %H:%M %S", os.time()) .. " Azureiot.main start")
470 + if g_mq then
471 + if g_mq:isconnected() then
472 + send_Data()
473 + else
474 + if os.time() - last_time > 20 then
475 + last_time = os.time()
476 + mymqtt_connect()
477 + end
478 + end
479 + else
480 + mymqtt_init()
481 + end
482 + sprint(os.date("%Y-%m-%d %H:%M %S", os.time()) .. " Azureiot.main end")
359 359  end
360 360  
361 --- Initialize MQTT
485 +~-~- Initialize MQTT
362 362  function mymqtt_init()
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
487 + sprint(string.format("mqtt init mqtt_url:%s mqtt_clientid:%s", MQTT_URL, MQTT_CLIENTID))
488 + g_mq, err = mqtt.create(MQTT_URL, MQTT_CLIENTID) ~-~- Create the object and declare it as a global variable
489 + if g_mq then
490 + g_mq:on("message", mymqtt_msg_callback) ~-~- Register to receive message callbacks
491 + sprint("mqtt init success")
492 + else
493 + sprint("mqtt init failed:", err)
494 + end
371 371  end
372 372  
373 --- Connect to MQTT server
497 +~-~- Connect to MQTT server
374 374  function mymqtt_connect()
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) 
499 + sprint("mqtt connecting...")
500 + local stat, err = g_mq:connect(MQTT_CFG,MQTT_LWT, MQTT_CART)
501 + if stat == nil then
502 + sprint("mqtt connect failed:", err)
503 + return
504 + else
505 + sprint("mqtt connected")
506 + end
507 + g_mq:subscribe(Subscribe_RE_TOPIC1, 0) 
384 384  end
385 385  
386 --- Receive MQTT message callback function
510 +~-~- Receive MQTT message callback function
387 387  function mymqtt_msg_callback(topic, msg)
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
512 + print("topic:",topic)
513 + print("revdata:",msg)
514 + ~-~- local revData = json.decode(msg)
515 + ~-~- if topic == Subscribe_RE_TOPIC1 then ~-~-Process topic information subscribed from the cloud
516 +~-~- if string.match(topic,Subscribe_RE_TOPIC1) then
517 + ~-~- print("topi11:",topic)
518 + setValue(revData)
519 + ~-~- end
396 396  end
397 397  
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
522 +~-~-Process the received data
523 +~-~-function setValue(revData)
524 + ~-~- if revData ~~=nil then 
525 + ~-~- for i,v in pairs(revData) do
526 + ~-~- print("Data received:",i,v)
527 + ~-~- end
528 + ~-~- end
529 +~-~-end
406 406  
407 ---Get real-time data
531 +~-~-Get real-time data
408 408  function getData()
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 
533 + local jdata = {}
534 + local addr = bns_get_alldata()
535 + print(json.encode(addr))
536 + for i,v in pairs(addr) do
537 + if v[2] == 1 then
538 + jdata[v[3]] = v[4]
539 + end
540 + end
541 + return jdata
542 +end
419 419  
420 420  
421 -
422 ---send data
545 +~-~-send data
423 423  function send_Data()
424 -    local pub_data = {100
425 -     --   services={{
426 -
427 -            --serviceId ='Temperature',
428 -           -- properties={
429 -               -- value = 55
430 -           -- },
431 -       -- }}
547 + local pub_data = {100
548 + ~-~- services=~{~{
549 +\\ ~-~-serviceId ='Temperature',
550 + ~-~- properties={
551 + ~-~- value = 55
552 + ~-~- },
553 + ~-~- }}
432 432  }
433 433  sprint(json.encode(pub_data))
434 434  print("..........",pub_RE_TOPIC)
435 -    return g_mq:publish(pub_RE_TOPIC, json.encode(pub_data), 0, 0)
557 + return g_mq:publish(pub_RE_TOPIC, json.encode(pub_data), 0, 0)
436 436  end
437 -{{/code}}
559 +)))
438 438  
439 -== **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)** ==
561 +== **2.4 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)** ==
440 440  
441 441  1.Register a account: [[https:~~/~~/www.huaweicloud.com/intl/en-us/s/JUlPVERNJQ>>https://www.huaweicloud.com/intl/en-us/s/JUlPVERNJQ]]
442 442  
... ... @@ -585,7 +585,7 @@
585 585  (% style="text-align:center" %)
586 586  [[image:1624441186851-536.png||height="434" width="700" class="img-thumbnail"]]
587 587  
588 -== **2.4 V-Box connect with Huawei platform** ==
710 +== **2.5 V-Box connect with Huawei platform** ==
589 589  
590 590  In this demo,V-Box connects with Huawei by SSL certification.
591 591  
... ... @@ -706,7 +706,7 @@
706 706  (% style="text-align:center" %)
707 707  [[image:1624506666650-161.png||height="547" width="1000" class="img-thumbnail"]]
708 708  
709 -== **2.5 V-Box connect with AWS platform** ==
831 +== **2.6 V-Box connect with AWS platform** ==
710 710  
711 711  === **Log in AWS** ===
712 712  
... ... @@ -763,102 +763,67 @@
763 763  }
764 764  {{/code}}
765 765  
766 -1. **Create things**
888 +=== **Create things** ===
767 767  
768 768  Click “Manage”~-~-->“Things”~-~-->“Create things”~-~-->“Create single thing”
769 769  
892 +[[image:image-20220709165402-6.png]]
770 770  
771 -|
772 -| |[[image:image-20220709165402-6.png]]
894 +[[image:image-20220709165402-7.png]]
773 773  
774 -|
775 -| |[[image:image-20220709165402-7.png]]
776 -
777 -|
778 -| |[[image:image-20220709165402-8.png]]
779 -
780 780  Name the thing~-~-->Click “Next”
781 781  
898 +[[image:image-20220709165402-8.png]]
782 782  
783 783  Select the way to create certificate
784 784  
902 +[[image:image-20220709165402-9.png]]
785 785  
786 -|
787 -| |[[image:image-20220709165402-9.png]]
788 -
789 789  Select policy
790 790  
906 +[[image:image-20220709165402-10.png]]
791 791  
792 -|
793 -| |[[image:image-20220709165402-10.png]]
908 +[[image:image-20220709165402-11.png]]
794 794  
795 795  
911 +=== **Test with MQTT.fx tool** ===
796 796  
797 -
798 -
799 -
800 -|
801 -| |[[image:image-20220709165402-11.png]]
802 -
803 -
804 -
805 -1. **Test with MQTT.fx tool**
806 -
807 807  Click “View Setting” to get the “Broker Adress”
808 808  
915 +[[image:image-20220709165402-13.png]]
809 809  
810 -|
811 -| |[[image:image-20220709165402-12.png]]
917 +[[image:image-20220709165402-12.png]]
812 812  
813 -|
814 -| |[[image:image-20220709165402-13.png]]
815 -
816 -
817 -
818 -
819 -
820 -|
821 -| |[[image:image-20220709165402-14.png]]
822 -
823 823  Create one connection in MQTT.fx tool, set broker port as 8883.
824 824  
921 +[[image:image-20220709165402-14.png]]
922 +
825 825  Upload the CA File, Client Certificate File, Client Key File
826 826  
925 +[[image:image-20220709165402-15.png]]
827 827  
828 -|
829 -| |[[image:image-20220709165402-15.png]]
830 -
831 831  Publish message to topic “TEST”
832 832  
929 +[[image:image-20220709165402-17.png]]
833 833  
834 -|
835 -| |[[image:image-20220709165402-16.png]]
836 -
837 -|
838 -| |[[image:image-20220709165402-17.png]]
839 -
840 840  Click”Test”~-~-->”MQTT test client”~-~-->”Subscrible to a topic”, to get message publish from MQTT.fx tool.
841 841  
933 +[[image:image-20220709173500-1.png]]
934 +
842 842  And we can also send message form AWS platform to MQTT.fx tool.
843 843  
937 +[[image:image-20220709165402-18.png]]
844 844  
845 -|
846 -| |[[image:image-20220709165402-18.png]]
939 +=== **Configurate in CloudTool** ===
847 847  
848 -1. **Configurate in CloudTool**
849 -
850 850  Copy the same setting in MQTT.fx to MQTT configuration
851 851  
943 +[[image:image-20220709165402-19.png]]
852 852  
853 -|
854 -| |[[image:image-20220709165402-19.png]]
855 -
856 856   Add a lua script and copy the lua demo into it.
857 857  
947 +[[image:image-20220709165402-20.png]]
858 858  
859 -|
860 -| |[[image:image-20220709165402-20.png]]
861 -
862 862  sprint = print
863 863  
864 864  ~-~-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)
... ... @@ -1039,10 +1039,6 @@
1039 1039  
1040 1040  end
1041 1041  
1042 -
1043 -
1044 1044  Get message in AWS
1045 1045  
1046 -
1047 -|
1048 -| |[[image:image-20220709165402-21.png]]
1131 +[[image:image-20220709165402-21.png]]
image-20220709173500-1.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.Jim
Size
... ... @@ -1,0 +1,1 @@
1 +1.5 MB
Content