This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* jshint esversion:6, bitwise:false, node:true, strict:true */ | |
| /* globals msg */ | |
| "use strict"; | |
| /** | |
| * Node-RED function to decode Axioma water meter payloads. | |
| * Example assuming that msg.req.body contains an HTTP POST callback from The Things Networks. | |
| */ | |
| function statusAxiomaShort(s) { | |
| const messages = []; |