Changes for page 05 Lua Script

Last modified by Devin Chen on 2025/03/04 14:07

From version 21.2
edited by Hunter
on 2022/12/13 12:04
Change comment: There is no comment for this version
To version 33.1
edited by Hunter
on 2023/04/26 18:58
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -88,7 +88,10 @@
88 88  
89 89  = 10** How to parse value from subscribing MQTT topic** =
90 90  
91 -This example shows how to parse value from subscribing MQTT topic. The testing topic name is "testtopic/test/no1/123456".
91 +This example shows how to parse value from subscribing MQTT topic. Get the value and calculate the average value for group F1, F2, F3 and F4. The testing topic name is "testtopic/test/no1/123456".
92 +
93 +[[Download link>>https://ftp.we-con.com.cn/Download/WIKI/PI%20HMI/Demo/Lua%20Script/MQTT%20JSON%20parse.zip]]
94 +
92 92  And the subscribed content is like following:
93 93  
94 94  {{code language="json"}}
... ... @@ -209,9 +209,73 @@
209 209  }
210 210  {{/code}}
211 211  
212 - So we decode this json into lua object, and then assign the values from "Value" field into addresses HDW1~~HDW101, HDW112~~HDW202, HDW213~~HDW313, HDW324~~HDW424.
215 + So we decode this json into lua object, and then assign the values from "Value" field into table (addresses HDW1~~HDW101, HDW112~~HDW202, HDW213~~HDW313, HDW324~~HDW424).
213 213  
214 214  (% style="text-align:center" %)
215 215  [[image:MQTTScreen.png]]
216 216  
220 +Due to the MQTT code is not able to running on the simulator from PC, following picture is the testing result from actual HMI screen:
221 +
222 +(% style="text-align:center" %)
223 +[[image:MQTTactualtestingresult.png]]
224 +
225 +The JSON parser function is located on mqttAction.lua, called mqtt_msg_callback.
226 +
227 +(% style="text-align:center" %)
228 +[[image:MQTTJSONparsefunction.png]]
229 +
230 += **11 High-Low Byte Switch** =
231 +
232 +The example shows how to convert high bytes and low bytes for one 16bit address. Main function is like following:
233 +
234 +{{code language="lua"}}
235 +local lowByte = val & 0x00ff
236 +local shiftHigh = lowByte << 8
237 +local highByte = val & 0xff00
238 +local shiftLow = highByte >> 8
239 +local newVal = shiftHigh|shiftLow
240 +{{/code}}
241 +
242 +[[Download link>>https://ftp.we-con.com.cn/Download/WIKI/PI%20HMI/Demo/Lua%20Script/byteswitch.zip]]
243 +
244 += **12 Week time setting** =
245 +
246 +The example shows how to use day time to control functions:
247 +
248 +[[Download link>>https://ftp.we-con.com.cn/Download/WIKI/PI%20HMI/Demo/Lua%20Script/week%20time.zip]]
249 +
250 += **13 MQTT Multi-link** =
251 +
252 +The example shows use mqtt realize multi-machine function:
253 +
254 +[[Download link>>https://ftp.we-con.com.cn/Download/WIKI/PI%20HMI/Demo/Lua%20Script/MQTT%20Multi-link.zip]]
255 +
256 += **14 CSV File Generation** =
257 +
258 +The example shows convert the lua table data into csv string, then output as a file:
259 +
260 +[[Download link>>https://ftp.we-con.com.cn/Download/WIKI/PI%20HMI/Demo/Lua%20Script/csvGenerate.zip]]
261 +
262 +The following steps take HMI simulator as example:
263 +
264 +~1. Click button "Create Table" to draw lua table in screen.
265 +
266 +(% style="text-align:center" %)
267 +[[image:csvGenerateSteps.png]]
268 +
269 +2. Click button "Save as csv" to save the file into HMI storage path. On the HMI simulator, user can enter the simulation path of U disk to check the file whether create successfully.
270 +
271 +(% style="text-align:center" %)
272 +[[image:csvGenerateSimulationPath.png]]
273 +
274 +3. Click button "upload" to upload csv file into server side. In this case, we can check the upload path for PC.
275 +
276 +(% style="text-align:center" %)
277 +[[image:csvGenerateServerPath.png]]
278 +
279 +The table drawing and csv file generation is mainly using the following function to implement, and csv file storage path in HMI is "udisk:weather1.csv":
280 +
281 +(% style="text-align:center" %)
282 +[[image:csvGenerateLuaCode.png]]
283 +
217 217  
MQTTJSONparsefunction.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.Hunter
Size
... ... @@ -1,0 +1,1 @@
1 +124.0 KB
Content
MQTTactualtestingresult.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.Hunter
Size
... ... @@ -1,0 +1,1 @@
1 +945.6 KB
Content
csvGenerateLuaCode.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.Hunter
Size
... ... @@ -1,0 +1,1 @@
1 +50.2 KB
Content
csvGenerateServerPath.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.Hunter
Size
... ... @@ -1,0 +1,1 @@
1 +56.3 KB
Content
csvGenerateSimulationPath.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.Hunter
Size
... ... @@ -1,0 +1,1 @@
1 +29.7 KB
Content
csvGenerateSteps.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.Hunter
Size
... ... @@ -1,0 +1,1 @@
1 +32.5 KB
Content