The IoT Bridge provides rapid integration for Murata 1SC cellular modules to AWS IoT Core.
The IoT Bridge receives data from your Murata 1SC modules, transforms the payload, and sends the data to AWS IoT Core so you can build your applications leveraging AWS IoT Core's amazing feature set.
Before we get into the details, it is important for you to understand the concepts related to establishing connectivity from your 1SC module to AWS IoT Core.
You have several protocols and encodings you can choose between to get the best behavior possible for your use case. There are pros and cons for each protocol decision, so you should take care to select the correct protocol and perhaps try multiple to make the best decision.
Simple UDP
mode allows you to send any packet contents from your cellular module to AWS IoT Core.IoT Bridge
creates a single UDP Proxy
thing in AWS IoT Core
.AWS IoT Core
on topics in the form of udp/inbound/<ip:port>
. The raw packet is sent as the payload of the topic.AWS IoT Core
you can send packets to devices by publishing on topics in the form udp/outbound/<ip:port>
. IoT Bridge
will send the payload of the publish to the IP and port specified in the topic.Delimited UDP
mode allows you to send ASCII packets, with a required prefix of a unique device identifier followed by a comma.IoT Bridge
creates things in AWS IoT Core
for each unique device ID that is received in a packet.AWS IoT Core
on topics in the form of udp/inbound/<deviceId>
. The raw packet is sent as the payload of the topic, including the deviceId.AWS IoT Core
you can send packets to devices by publishing on topics in the form udp/outbound/<deviceId>
. IoT Bridge
will send the payload of the publish to the IP and port specified in the topic.MQTT
mode allows you to connect with unencrypted MQTT to communicate with AWS IoT Core.IoT Bridge
intelligently upgrades the device connection to TLS and adds additional metadata as needed.AWS IoT Core
you can interact with the device like it is locally connected.IoT Brdige
and AWS IoT Core
.Thing Shadow and Job support is on the roadmap.
Coming soon...
Coming soon...
Before you begin, you will need the following:
In the future, additional connectivity options will be available, including dedicated private APNs from your CSP.