Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 8 Next »

doc_tap_rn2024_configurable_speed;

Click speed.svg

doc_tap_rn2024_description;

doc_tap_rn2024_how_to_configure;

doc_tap_rn2024_packet_parser_heading;

doc_tap_rn2024_pp_added_blinds;

doc_tap_rn2024_pp_speed_up_messages_in_pp;

VAR jsonResponse := TOSTRING(RECEIVEDBYTES);
if parsejson(jsonResponse, "Topic") = "my-topic"
	Va := todouble(parsejson(jsonResponse, "Payload"));
end

doc_tap_rn2024_pp_speed_up_messages_in_pp_new_version;

if RECEIVEDMSG.TOPIC = "my-topic"
	Va := todouble(TOSTRING(RECEIVEDMSG.PAYLOAD));
end

doc_tap_rn2024_pp_minor;

doc_tap_rn2024_pp_more_info;

  • No labels