Changes for page 2 Script
Last modified by Devin Chen on 2025/06/06 14:03
Summary
-
Page properties (2 modified, 0 added, 0 removed)
-
Attachments (0 modified, 1 added, 0 removed)
Details
- Page properties
-
- Author
-
... ... @@ -1,1 +1,1 @@ 1 -XWiki. admin1 +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\.UserManual.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.Manual.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 ... ... @@ -134,7 +134,210 @@ 134 134 end 135 135 {{/code}} 136 136 138 +== **1.6 LINE Notify** == 137 137 140 +This example shows how to use the LINE Notify to send message into LINE group. When monitoring bit "@test" changes, it will trigger and send the message. Please replace with your own Token. 141 + 142 +{{code}} 143 +local tempBit = 0 144 +local tempWord = 0 145 + 146 +local LineToken = "08XCpubkOdwGdGgRTXF0x8umiyrALtoM0v6lBFUV6PC" 147 + 148 +local https = require("https") 149 +local json = require("json") 150 +local ltn12 = require("ltn12") 151 + 152 +-- Send http.get request and return response result 153 +function getHttpsUrl(url,header,reqbody) 154 + local body = {} 155 + local bodyJson = json.encode(body) 156 + local result_table, code, headers, status = https.request{ 157 + method = "POST", 158 + url = url, 159 + source = ltn12.source.string(reqbody), 160 + headers = header, 161 + sink = ltn12.sink.table(body) 162 + } 163 + print("code:"..code) 164 + if code~= 200 then 165 + return 166 + else 167 + return body 168 + end 169 +end 170 + 171 +function getMessageUrl(lineMessage) 172 + local url = "https://notify-api.line.me/api/notify" 173 + local reqMess = "message="..lineMessage 174 + local headers = 175 + { 176 + ["Authorization"] = "Bearer "..LineToken, 177 + ["Content-Type"] = "application/x-www-form-urlencoded", 178 + ["Content-Length"] = #reqMess 179 + } 180 + 181 + print("Get the link:"..url) 182 + getHttpsUrl(url, headers, reqMess) 183 +end 184 + 185 + 186 +function linenotify.main() 187 + local bitValue = addr_getbit("@test"); 188 + local message = '' 189 + print("b=="..bitValue) 190 + if bitValue == 1 and bitValue ~= tempBit then 191 + message = 'Alarm V-Box triggered, the output is '.. bitValue 192 + getMessageUrl(message) 193 + print("Notification pushed of triggering alarm,"..bitValue) 194 + elseif bitValue == 0 and bitValue ~= tempBit then 195 + message = 'Alarm V-Box dismissed, the output is '.. bitValue 196 + getMessageUrl(message) 197 + print("Notification pushed of dismissing alarm,"..bitValue) 198 + end 199 + tempBit = bitValue----Prevent monitoring values from continuous being sent to the platform 200 + 201 + local wordValue = addr_getword("@t2") 202 + print("w=="..wordValue) 203 + --dosomething 204 + if wordValue >= 100 and wordValue ~= tempWord and tempWord <= 100 then 205 + message = 'Alarm V-Box triggered, the temperature is '.. wordValue 206 + getMessageUrl(message) 207 + print("Notification pushed of triggering alarm,"..wordValue) 208 + elseif wordValue < 100 and wordValue ~= tempWord and tempWord >= 100 then 209 + message = 'Alarm V-Box dismissed, the temperature is '.. wordValue 210 + getMessageUrl(message) 211 + print("Notification pushed of dismissing alarm,"..wordValue) 212 + end 213 + tempWord = wordValue----Prevent monitoring values from continuous being sent to the platform 214 +end 215 +{{/code}} 216 + 217 +== **1.7 Twilio WhatsApp Messaging** == 218 + 219 +This example shows how to use the Twilio API to send WhatsApp message to private number. When monitoring bit "@test" changes, it will trigger and send the message. Please replace with your own SID, Token, twilioPhoneNumber and receiverPhoneNumber. 220 + 221 +{{code language="Lua"}} 222 +local tempBit = 0 223 +local tempWord = 0 224 + 225 +local https = require("https") 226 +local json = require("json") 227 +local ltn12 = require("ltn12") 228 + 229 +local SID = 'AC1703bd710ffa98006d2bcc0b8d6ca63a' 230 +local Token = 'd3c11897623c39e538b20263ec190ae0' 231 + 232 +local twilioPhoneNumber = '+14155238886' 233 +local receiverPhoneNumber = '+8615880018277' 234 + 235 +local b='ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/' 236 +function encodingBase64(data) 237 + return ((data:gsub('.', function(x) 238 + local r,b='',x:byte() 239 + for i=8,1,-1 do r=r..(b%2^i-b%2^(i-1)>0 and '1' or '0') end 240 + return r; 241 + end)..'0000'):gsub('%d%d%d?%d?%d?%d?', function(x) 242 + if (#x < 6) then return '' end 243 + local c=0 244 + for i=1,6 do c=c+(x:sub(i,i)=='1' and 2^(6-i) or 0) end 245 + return b:sub(c+1,c+1) 246 + end)..({ '', '==', '=' })[#data%3+1]) 247 +end 248 + 249 +function encodeUrl(str) 250 + str = string.gsub(str, "([^%w%.%- ])", function(c) 251 + return string.format("%%%02X", string.byte(c)) end) 252 + return string.gsub(str, " ", "+") 253 +end 254 + 255 + 256 + 257 + 258 +function requestBodySplice(message, sender, receiver) 259 + local reqBody = '' 260 + local encodeMess = encodeUrl(message) 261 + local encodeSend = encodeUrl(sender) 262 + local encodeRece = encodeUrl(receiver) 263 + --reqBody = "Body=Hello%20Wecon2&From=whatsapp%3A%2B14155238886&To=whatsapp%3A%2B8615880018277" 264 + reqBody = string.format("Body=%s&From=whatsapp:%s&To=whatsapp:%s", encodeMess, encodeSend, encodeRece) 265 + print(reqBody) 266 + return reqBody 267 +end 268 + 269 + 270 +-- Send http.get request and return response result 271 +function getHttpsUrl(url,header,reqbody) 272 + local body = {} 273 + local bodyJson = json.encode(body) 274 + local result_table, code, headers, status = https.request{ 275 + method = "POST", 276 + url = url, 277 + source = ltn12.source.string(reqbody), 278 + headers = header, 279 + sink = ltn12.sink.table(body) 280 + } 281 + print("code:"..code) 282 + if code~= 200 then 283 + return 284 + else 285 + return body 286 + end 287 +end 288 + 289 +function getMessageUrl(whatsAppMessage) 290 + local auth = SID..':'..Token 291 + local url = "https://api.twilio.com/2010-04-01/Accounts/"..SID.."/Messages" 292 + --local reqMess = "message="..twilioMessage 293 + local reqMess = requestBodySplice(whatsAppMessage, twilioPhoneNumber, receiverPhoneNumber) 294 + local headers = 295 + { 296 + ["Authorization"] = "Basic "..encodingBase64(auth), 297 + ["Content-Type"] = "application/x-www-form-urlencoded", 298 + ["Content-Length"] = #reqMess 299 + } 300 + 301 + print("Get the link:"..url) 302 + getHttpsUrl(url, headers, reqMess) 303 +end 304 + 305 + 306 + 307 +function Twilio.main() 308 + --dosomething 309 + --local auth = SID..':'..Token 310 + --print(requestBodySplice("HelloWorld", twilioPhoneNumber, receiverPhoneNumber)) 311 + --print(encodingBase64(auth)) 312 + local bitValue = addr_getbit("@testBit"); 313 + local message = '' 314 + print("b=="..bitValue) 315 + if bitValue == 1 and bitValue ~= tempBit then 316 + message = 'Alarm V-Box triggered, the output is '.. bitValue 317 + getMessageUrl(message) 318 + print("Notification pushed of triggering alarm,"..bitValue) 319 + elseif bitValue == 0 and bitValue ~= tempBit then 320 + message = 'Alarm V-Box dismissed, the output is '.. bitValue 321 + getMessageUrl(message) 322 + print("Notification pushed of dismissing alarm,"..bitValue) 323 + end 324 + tempBit = bitValue----Prevent monitoring values from continuous being sent to the platform 325 + 326 + local wordValue = addr_getword("@testWord") 327 + print("w=="..wordValue) 328 + --dosomething 329 + if wordValue >= 100 and wordValue ~= tempWord and tempWord <= 100 then 330 + message = 'Alarm V-Box triggered, the temperature is '.. wordValue 331 + getMessageUrl(message) 332 + print("Notification pushed of triggering alarm,"..wordValue) 333 + elseif wordValue < 100 and wordValue ~= tempWord and tempWord >= 100 then 334 + message = 'Alarm V-Box dismissed, the temperature is '.. wordValue 335 + getMessageUrl(message) 336 + print("Notification pushed of dismissing alarm,"..wordValue) 337 + end 338 + tempWord = wordValue----Prevent monitoring values from continuous being sent to the platform 339 +end 340 +{{/code}} 341 + 138 138 = **2 V-Box connect with third part server** = 139 139 140 140 V-Box have two mode.One is for V-Net,User need to use WECON server to store data.We call this V-NET platform. ... ... @@ -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** == 360 +(% class="wikigeneratedid" %) 361 +**✎Note: **Before program the script of MQTT, please make sure the server(MQTT broker) can be connected through MQTT Client tool. 157 157 363 +(% class="wikigeneratedid" %) 364 +Tool link: **[[MQTT.fx>>http://mqttfx.jensd.de/index.php/download]]** 365 + 366 +== **2.1 V-Box connect with test server(General Example)** == 367 + 368 +{{code language="lua"}} 369 +--MQTT configuration table 370 +local MQTT_CFG={} 371 +MQTT_CFG.username = "weconsupport" 372 +MQTT_CFG.password = "123456" 373 +MQTT_CFG.netway = 0 374 +MQTT_CFG.keepalive = 60 375 +MQTT_CFG.cleansession = 1 376 +--TCP URL 377 +MQTT_URL = "tcp://mq.tongxinmao.com:1883" 378 +--Client ID 379 +MQTT_CLIENT_ID = "V-BOXH-AG" 380 + 381 +--Generate UUID 382 +function uuid() 383 + local seed = {'e','1','2','3','4','5','6','7','8','9','a','b','c','d','e','f'} 384 + local tb = {} 385 + for i=1, 32 do 386 + table.insert(tb, seed[math.random(1,16)]) 387 + end 388 + local sid=table.concat(tb) 389 + return string.format('%s', 390 + string.sub(sid,1,32) 391 + ) 392 +end 393 + 394 + 395 +--Topic name to subscribed 396 +local SUBSCRIBE_TOPIC = 'testtopic/test/no1/123456' 397 + 398 +--Topic name to be published 399 +local PUBLISH_TOPIC = 'testtopic/test/no1/7890' 400 + 401 + 402 +--real time 403 +local LAST_TIME = 0 404 + 405 + 406 +--initialize mqtt 407 +function mqtt_init() 408 + print(string.format("mqtt init mqtt_url:%s mqtt_clientid:%s", MQTT_URL, MQTT_CLIENT_ID)) 409 + g_mq, err = mqtt.create(MQTT_URL, MQTT_CLIENT_ID) -- create mqtt object,and declare it as a global variable 410 + if g_mq then 411 + g_mq:on("message", mqtt_msg_callback) -- Register a callback for receiving messages 412 + print("mqtt init success") 413 + else 414 + print("mqtt init failed:", err) 415 + end 416 +end 417 + 418 +-- connect to mqtt 419 +function mqtt_connect() 420 + print("mqtt connecting...") 421 + local stat, err = g_mq:connect(MQTT_CFG) 422 + if stat == nil then 423 + print("mqtt connect failed:", err) 424 + return 425 + else 426 + print("mqtt connected") 427 + end 428 + g_mq:subscribe(SUBSCRIBE_TOPIC, 0) 429 +end 430 + 431 +-- Received message callback function 432 +function mqtt_msg_callback(topic, msg) 433 + print("topic:", topic) 434 + print("msg:", msg) 435 + local objMsg = json.decode(msg) 436 + local water = objMsg.data.waterlevel 437 + local temp = objMsg.data.temperature 438 + addr_setword("@HDW20",water) 439 + addr_setword("@HDW10",temp) 440 +end 441 + 442 +--Send data (data upload to platform and encapsulate it with custom functions) 443 +function send_data() 444 + local pub_data = { 445 + timestamp = os.time(), 446 + messageId = 1, 447 + event = 'test_data', 448 + mfrs = 'V-Box', 449 + data = { 450 + id = uuid(), 451 + waterlevel = addr_getword("@HDW10"), 452 + temperature = addr_getword("@HDW20") 453 + } 454 + } 455 + return g_mq:publish(PUBLISH_TOPIC, json.encode(pub_data), 0, 0) 456 +end 457 + 458 + 459 +--main function fixed timed execution 460 +function MQTT.main() 461 + --dosomething 462 + print(os.date("%Y-%m-%d %H:%M %S", os.time()) .. " main start") 463 + --determine the mqtt object whether exist 464 + if g_mq then 465 + --determine the mqtt object whether has been connected or not 466 + if g_mq:isconnected() then 467 + send_data() 468 + else 469 + --if exceed 20 sec not connect, reconnect once 470 + if os.time() - LAST_TIME > 20 then 471 + LAST_TIME = os.time() 472 + --connect to mqtt or reconnect 473 + mqtt_connect() 474 + end 475 + end 476 + else 477 + --mqtt object does not exist so create new one 478 + mqtt_init() 479 + end 480 + print(os.date("%Y-%m-%d %H:%M %S", os.time()) .. " main end") 481 +end 482 +{{/code}} 483 + 484 +== **2.2 V-Box connect with customer server:grouprobotinfo.com** == 485 + 158 158 This demo does not use SSL certification. Script is as below 159 159 160 160 Demo1: 161 161 162 -{{code language=" Lua"}}490 +{{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 - 611 + 284 284 } 285 285 286 286 -- ("@B_25395#CIO1.02") ... ... @@ -302,7 +302,7 @@ 302 302 end 303 303 {{/code}} 304 304 305 -== **2. 2V-Box connect with Azure platform** ==633 +== **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 643 +(% class="box infomessage" %) 644 +((( 645 +~-~-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" 648 +~-~-Get custom configuration parameters (vbox custom information) 649 +~-~-local CUSTOM = bns_get_config("bind") 650 +~-~-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) 653 +~-~-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' 656 +~-~-MQTT_CFG.username = '60a71ccbbbe12002c08f3a1a_WECON' 657 +~-~-MQTT_CFG.password='wecon123' 658 +~-~-MQTT_CLIENTID = '60a71ccbbbe12002c08f3a1a_WECON_0_0_2021052110usernxame:60a71ccbbbe12002c08f3a1a_WECONpassword:a0a951581855aa8e0262129da6cf1b43f2c0ecfac4fa56117fc5a20c90be169a' 331 331 332 ---publish to topics 660 +~-~-publish to topics 333 333 local pub_RE_TOPIC = string.format('devices/wecon_02/messages/events/') 334 ---Subscribe topics 662 +~-~-Subscribe topics 335 335 local Subscribe_RE_TOPIC1 = string.format('devices/wecon_02/messages/devicebound/#') 336 336 337 ---variable 665 +~-~-variable 338 338 local last_time = 0 339 339 340 340 341 - 342 ---Timing main function 669 +~-~-Timing main function 343 343 function Azure.main() 344 344 345 - 346 - 347 - 348 - 349 - 350 - 351 - 352 - 353 - 354 - 355 - 356 - 357 - 358 - 672 + sprint(os.date("%Y-%m-%d %H:%M %S", os.time()) .. " Azureiot.main start") 673 + if g_mq then 674 + if g_mq:isconnected() then 675 + send_Data() 676 + else 677 + if os.time() - last_time > 20 then 678 + last_time = os.time() 679 + mymqtt_connect() 680 + end 681 + end 682 + else 683 + mymqtt_init() 684 + end 685 + sprint(os.date("%Y-%m-%d %H:%M %S", os.time()) .. " Azureiot.main end") 359 359 end 360 360 361 --- Initialize MQTT 688 +~-~- Initialize MQTT 362 362 function mymqtt_init() 363 - 364 - 365 - 366 - 367 - 368 - 369 - 370 - 690 + sprint(string.format("mqtt init mqtt_url:%s mqtt_clientid:%s", MQTT_URL, MQTT_CLIENTID)) 691 + g_mq, err = mqtt.create(MQTT_URL, MQTT_CLIENTID) ~-~- Create the object and declare it as a global variable 692 + if g_mq then 693 + g_mq:on("message", mymqtt_msg_callback) ~-~- Register to receive message callbacks 694 + sprint("mqtt init success") 695 + else 696 + sprint("mqtt init failed:", err) 697 + end 371 371 end 372 372 373 --- Connect to MQTT server 700 +~-~- Connect to MQTT server 374 374 function mymqtt_connect() 375 - 376 - 377 - 378 - 379 - 380 - 381 - 382 - 383 - 702 + sprint("mqtt connecting...") 703 + local stat, err = g_mq:connect(MQTT_CFG,MQTT_LWT, MQTT_CART) 704 + if stat == nil then 705 + sprint("mqtt connect failed:", err) 706 + return 707 + else 708 + sprint("mqtt connected") 709 + end 710 + g_mq:subscribe(Subscribe_RE_TOPIC1, 0) 384 384 end 385 385 386 --- Receive MQTT message callback function 713 +~-~- Receive MQTT message callback function 387 387 function mymqtt_msg_callback(topic, msg) 388 - 389 - 390 - 391 - 392 --- if string.match(topic,Subscribe_RE_TOPIC1) then 393 - 394 - 395 - 715 + print("topic:",topic) 716 + print("revdata:",msg) 717 + ~-~- local revData = json.decode(msg) 718 + ~-~- if topic == Subscribe_RE_TOPIC1 then ~-~-Process topic information subscribed from the cloud 719 +~-~- if string.match(topic,Subscribe_RE_TOPIC1) then 720 + ~-~- print("topi11:",topic) 721 + setValue(revData) 722 + ~-~- end 396 396 end 397 397 398 ---Process the received data 399 ---function setValue(revData) 400 - 401 - 402 - 403 - 404 - 405 ---end 725 +~-~-Process the received data 726 +~-~-function setValue(revData) 727 + ~-~- if revData ~~=nil then 728 + ~-~- for i,v in pairs(revData) do 729 + ~-~- print("Data received:",i,v) 730 + ~-~- end 731 + ~-~- end 732 +~-~-end 406 406 407 ---Get real-time data 734 +~-~-Get real-time data 408 408 function getData() 409 - 410 - 411 - 412 - 413 - 414 - 415 - 416 - 417 - 418 -end 736 + local jdata = {} 737 + local addr = bns_get_alldata() 738 + print(json.encode(addr)) 739 + for i,v in pairs(addr) do 740 + if v[2] == 1 then 741 + jdata[v[3]] = v[4] 742 + end 743 + end 744 + return jdata 745 +end 419 419 420 420 421 - 422 ---send data 748 +~-~-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 - -- }} 750 + local pub_data = {100 751 + ~-~- services=~{~{ 752 +\\ ~-~-serviceId ='Temperature', 753 + ~-~- properties={ 754 + ~-~- value = 55 755 + ~-~- }, 756 + ~-~- }} 432 432 } 433 433 sprint(json.encode(pub_data)) 434 434 print("..........",pub_RE_TOPIC) 435 - 760 + return g_mq:publish(pub_RE_TOPIC, json.encode(pub_data), 0, 0) 436 436 end 437 - {{/code}}762 +))) 438 438 439 -== **2. 3How 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)** ==764 +== **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. 4V-Box connect with Huawei platform** ==913 +== **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. 5V-Box connect with AWS platform** ==1034 +== **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**1091 +=== **Create things** === 767 767 768 768 Click “Manage”~-~-->“Things”~-~-->“Create things”~-~-->“Create single thing” 769 769 1095 +[[image:image-20220709165402-6.png]] 770 770 771 -| 772 -| |[[image:image-20220709165402-6.png]] 1097 +[[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 1101 +[[image:image-20220709165402-8.png]] 782 782 783 783 Select the way to create certificate 784 784 1105 +[[image:image-20220709165402-9.png]] 785 785 786 -| 787 -| |[[image:image-20220709165402-9.png]] 788 - 789 789 Select policy 790 790 1109 +[[image:image-20220709165402-10.png]] 791 791 792 -| 793 -| |[[image:image-20220709165402-10.png]] 1111 +[[image:image-20220709165402-11.png]] 794 794 795 795 1114 +=== **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 1118 +[[image:image-20220709165402-13.png]] 809 809 810 -| 811 -| |[[image:image-20220709165402-12.png]] 1120 +[[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 1124 +[[image:image-20220709165402-14.png]] 1125 + 825 825 Upload the CA File, Client Certificate File, Client Key File 826 826 1128 +[[image:image-20220709165402-15.png]] 827 827 828 -| 829 -| |[[image:image-20220709165402-15.png]] 830 - 831 831 Publish message to topic “TEST” 832 832 1132 +[[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 1136 +[[image:image-20220709173500-1.png]] 1137 + 842 842 And we can also send message form AWS platform to MQTT.fx tool. 843 843 1140 +[[image:image-20220709165402-18.png]] 844 844 845 -| 846 -| |[[image:image-20220709165402-18.png]] 1142 +=== **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 1146 +[[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 1150 +[[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]] 1334 +[[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