Changes for page 2 Script

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

From version 13.1
edited by Leo Wei
on 2022/07/09 17:41
Change comment: There is no comment for this version
To version 19.1
edited by Hunter
on 2022/07/29 15:56
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  
... ... @@ -159,7 +159,7 @@
159 159  
160 160  Demo1:
161 161  
162 -{{code language="Lua"}}
163 +{{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 -  
284 +
284 284                  }
285 285  
286 286      -- ("@B_25395#CIO1.02")
... ... @@ -312,129 +312,126 @@
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
316 +(% class="box infomessage" %)
317 +(((
318 +~-~-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"
321 +~-~-Get custom configuration parameters (vbox custom information)
322 +~-~-local CUSTOM = bns_get_config("bind")
323 +~-~-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)
326 +~-~-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'
329 +~-~-MQTT_CFG.username = '60a71ccbbbe12002c08f3a1a_WECON'
330 +~-~-MQTT_CFG.password='wecon123'
331 +~-~-MQTT_CLIENTID = '60a71ccbbbe12002c08f3a1a_WECON_0_0_2021052110usernxame:60a71ccbbbe12002c08f3a1a_WECONpassword:a0a951581855aa8e0262129da6cf1b43f2c0ecfac4fa56117fc5a20c90be169a'
331 331  
332 ---publish to topics
333 +~-~-publish to topics
333 333  local pub_RE_TOPIC = string.format('devices/wecon_02/messages/events/')
334 ---Subscribe topics
335 +~-~-Subscribe topics
335 335  local Subscribe_RE_TOPIC1 = string.format('devices/wecon_02/messages/devicebound/#')
336 336  
337 ---variable
338 +~-~-variable
338 338  local last_time = 0
339 339  
340 340  
341 -
342 ---Timing main function
342 +~-~-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")
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")
359 359  end
360 360  
361 --- Initialize MQTT
361 +~-~- 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
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
371 371  end
372 372  
373 --- Connect to MQTT server
373 +~-~- 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) 
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) 
384 384  end
385 385  
386 --- Receive MQTT message callback function
386 +~-~- 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
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
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
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
406 406  
407 ---Get real-time data
407 +~-~-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 
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
419 419  
420 420  
421 -
422 ---send data
421 +~-~-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 -       -- }}
423 + local pub_data = {100
424 + ~-~- services=~{~{
425 +\\ ~-~-serviceId ='Temperature',
426 + ~-~- properties={
427 + ~-~- value = 55
428 + ~-~- },
429 + ~-~- }}
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)
433 + return g_mq:publish(pub_RE_TOPIC, json.encode(pub_data), 0, 0)
436 436  end
437 -{{/code}}
435 +)))
438 438  
439 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)** ==
440 440  
... ... @@ -763,109 +763,67 @@
763 763  }
764 764  {{/code}}
765 765  
766 -1. **Create things**
764 +=== **Create things** ===
767 767  
768 768  Click “Manage”~-~-->“Things”~-~-->“Create things”~-~-->“Create single thing”
769 769  
768 +[[image:image-20220709165402-6.png]]
770 770  
771 -|
772 -| |[[image:image-20220709165402-6.png]]
770 +[[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  
774 +[[image:image-20220709165402-8.png]]
782 782  
783 783  Select the way to create certificate
784 784  
778 +[[image:image-20220709165402-9.png]]
785 785  
786 -|
787 -| |[[image:image-20220709165402-9.png]]
788 -
789 789  Select policy
790 790  
782 +[[image:image-20220709165402-10.png]]
791 791  
792 -|
793 -| |[[image:image-20220709165402-10.png]]
784 +[[image:image-20220709165402-11.png]]
794 794  
795 795  
787 +=== **Test with MQTT.fx tool** ===
796 796  
797 -
798 -
799 -
800 -
801 -
802 -|
803 -| |[[image:image-20220709165402-11.png]]
804 -
805 -
806 -
807 -
808 -
809 -1. **Test with MQTT.fx tool**
810 -
811 811  Click “View Setting” to get the “Broker Adress”
812 812  
791 +[[image:image-20220709165402-13.png]]
813 813  
814 -|
815 -| |[[image:image-20220709165402-12.png]]
793 +[[image:image-20220709165402-12.png]]
816 816  
817 -|
818 -| |[[image:image-20220709165402-13.png]]
819 -
820 -
821 -
822 -
823 -
824 -
825 -
826 -|
827 -| |[[image:image-20220709165402-14.png]]
828 -
829 829  Create one connection in MQTT.fx tool, set broker port as 8883.
830 830  
797 +[[image:image-20220709165402-14.png]]
798 +
831 831  Upload the CA File, Client Certificate File, Client Key File
832 832  
801 +[[image:image-20220709165402-15.png]]
833 833  
834 -|
835 -| |[[image:image-20220709165402-15.png]]
836 -
837 837  Publish message to topic “TEST”
838 838  
805 +[[image:image-20220709165402-17.png]]
839 839  
840 -|
841 -| |[[image:image-20220709165402-16.png]]
842 -
843 -|
844 -| |[[image:image-20220709165402-17.png]]
845 -
846 846  Click”Test”~-~-->”MQTT test client”~-~-->”Subscrible to a topic”, to get message publish from MQTT.fx tool.
847 847  
809 +[[image:image-20220709173500-1.png]]
810 +
848 848  And we can also send message form AWS platform to MQTT.fx tool.
849 849  
813 +[[image:image-20220709165402-18.png]]
850 850  
851 -|
852 -| |[[image:image-20220709165402-18.png]]
815 +=== **Configurate in CloudTool** ===
853 853  
854 -1. **Configurate in CloudTool**
855 -
856 856  Copy the same setting in MQTT.fx to MQTT configuration
857 857  
819 +[[image:image-20220709165402-19.png]]
858 858  
859 -|
860 -| |[[image:image-20220709165402-19.png]]
861 -
862 862   Add a lua script and copy the lua demo into it.
863 863  
823 +[[image:image-20220709165402-20.png]]
864 864  
865 -|
866 -| |[[image:image-20220709165402-20.png]]
867 -
868 -
869 869  sprint = print
870 870  
871 871  ~-~-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)
... ... @@ -1046,10 +1046,6 @@
1046 1046  
1047 1047  end
1048 1048  
1049 -
1050 -
1051 1051  Get message in AWS
1052 1052  
1053 -
1054 -|
1055 -| |[[image:image-20220709165402-21.png]]
1007 +[[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