Component: IoT Made Easy (Comms: IoT/Cloud): Difference between revisions
Appearance
m Text replacement - "style="background-color:#EAE1EA; color:#4B008D;"" to "class="mtx-class-propfolder"" |
m Text replacement - "style="background-color:#EAE1EA;"" to "class="mtx-class-propfolder"" |
||
| Line 340: | Line 340: | ||
|- | |- | ||
|- | |- | ||
| width="10%" align="center" | | width="10%" align="center" class="mtx-class-propfolder" | [[File:Fc9-conn-icon.png]] | ||
| width="90%" class="mtx-class-propfolder" | MQTT Properties | | width="90%" class="mtx-class-propfolder" | MQTT Properties | ||
|- | |- | ||
| Line 384: | Line 384: | ||
| colspan="2" | Selects if the broker is open or if the broker requires a username and password. | | colspan="2" | Selects if the broker is open or if the broker requires a username and password. | ||
|- | |- | ||
| width="10%" align="center" | | width="10%" align="center" class="mtx-class-propfolder" | [[File:Fc9-conn-icon.png]] | ||
| width="90%" class="mtx-class-propfolder" | Topics | | width="90%" class="mtx-class-propfolder" | Topics | ||
|- | |- | ||
| Line 393: | Line 393: | ||
| colspan="2" | Sets the number of data topics that can be sent or received | | colspan="2" | Sets the number of data topics that can be sent or received | ||
|- | |- | ||
| width="10%" align="center" | | width="10%" align="center" class="mtx-class-propfolder" | [[File:Fc9-conn-icon.png]] | ||
| width="90%" class="mtx-class-propfolder" | Topic ID: 0 | | width="90%" class="mtx-class-propfolder" | Topic ID: 0 | ||
|- | |- | ||
| Line 407: | Line 407: | ||
| colspan="2" | | | colspan="2" | | ||
|- | |- | ||
| width="10%" align="center" | | width="10%" align="center" class="mtx-class-propfolder" | [[File:Fc9-conn-icon.png]] | ||
| width="90%" class="mtx-class-propfolder" | Topic ID: 1 | | width="90%" class="mtx-class-propfolder" | Topic ID: 1 | ||
|- | |- | ||
Latest revision as of 14:37, 13 July 2026
| Author | Matrix TSL |
| Version | 1.0 |
| Category | Comms: IoT/Cloud |
IoT Made Easy component
A component designed to simplify MQTT comms allowing for multiple data streams to be dealt with in a simple manner. Deals with translating values to and from the broker from topic strings into message IDs and numeric values. Works with lots of different MQTT brokers.
Component Source Code
Please click here to download the component source project: FC_Comp_Source_IoTMadeEasy.fcfx
Please click here to view the component source code (Beta): FC_Comp_Source_IoTMadeEasy.fcfx
Detailed description
No detailed description exists yet for this component
Examples
No additional examples
Macro reference
Connect
| Connect | |
| Connect to the MQTT Server. Returns the connected state. 0 if not connected, 1 if successful connection, or already connected. | |
| Return | |
Disconnect
| Disconnect | |
| Disconnects from the MQTT server and the network | |
| Return | |
ErrorAsString
| ErrorAsString | |
| Error | |
| Return | |
GetPayloadFloat
| GetPayloadFloat | |
| Get the Payload of the last received (Read) packet as a floating point value | |
| Return | |
GetPayloadInteger
| GetPayloadInteger | |
| Get the Payload of the last received (Read) packet as a signed long value | |
| Return | |
GetPayloadString
| GetPayloadString | |
| Get the Payload of the last received (Read) packet as a string value | |
| Payload | |
| Size | |
| Return | |
GetTopicID
| GetTopicID | |
| Compares the topic ID of the last received message with enabled IDs. Returns the topic ID received. | |
| Return | |
Initialise
| Initialise | |
| Starts up the MQTT component - call this after initialising the NetworkComms component. | |
| Return | |
LastError
| LastError | |
| Returns the last error | |
| Return | |
Ping
PublishFloat
PublishInteger
PublishString
Read
| Read | |
| Read incoming data. Returns non-zero if packet received. Use GetTopicID and GetPayloadXXX to read the contents. | |
| Return | |