This tutorial will help you use a Twilio Programmable Wireless SIM to build and run your first IoT application. The device you'll build uses a Waveshare SIM7600G-H 4G Hat, a development board which equips a low-cost Raspberry Pi computer with a Simcom 7600G-H cellular modem.
In addition to your configured Programmable Wireless SIM, you will need the following hardware to proceed with this guide:
The Raspberry Pi has its own setup procedure which involves downloading and installing its Linux operating system, called Raspberry Pi OS, onto the Micro SD card. The Raspberry Pi Foundation has a very good walkthrough of its own that covers this process — you should use this to get your Pi ready before proceeding to the next stage of this guide.
During setup you should connect your Pi 4 to your WiFi network as you will need to download extra software later. We'll disable WiFi in due course to demonstrate data access over cellular.
The SIM7600G-H 4G Hat ships with all you need to fit it onto the Pi. Just follow these steps to set everything up:
Fit your Twilio SIM into the SIM7600G-H 4G Hat's SIM retainer. This takes a full-size SIM, so take care removing your SIM from its mount, or use an adapter if you have already removed the SIM as a Micro or Nano SIM:
Lock the SIM retainer in place to keep the Twilio SIM secure:
If it's powered up, turn off the Pi.
sudo shutdown -h
now.Slot the SIM7600G-H 4G Hat onto the Pi's GPIO header:
Connect the supplied USB cable to the micro USB port marked just USB on the SIM7600G-H 4G Hat and a USB port on the Pi:
Assemble the bundled cellular antenna and connect it to the SIM7600G-H 4G Hat. Fit it to the LTE connector marked MAIN on the board:
Here's a close-up:
Finally, power up the Pi by re-inserting the power cable.
We now need to run through a few steps to get the Pi ready to talk to the SIM7600G-H 4G Hat. Some of these will require you to restart the Pi.
If you're at the Raspberry Pi desktop, select Accessories > Terminal from the Raspberry menu.
Run sudo raspi-config
.
Use the cursor keys to highlight Interfacing Options, then hit Enter:
Now highlight Serial Port and hit Enter:
When you are asked Would you like a login shell to be accessible over serial? select No and hit Enter:
When you are asked Would you like the serial port hardware to be enabled? select Yes and hit Enter:
Select Finish.
The raspi-config
utility will offer to restart the Pi — accept its suggestion.
When the Pi is back up, you should see that the SIM7600G-H 4G Hat's PWR LED is lit. Now press the PWRKEY button on the board — after a brief moment, the NET LED should light up.
At the command line or in a desktop Terminal run:
ls /dev/ttyUSB*
You should see a list of items all beginning with ttyUSB
and including ttyUSB2
, which is the device you'll use in subsequent steps. If you don't see a list of TTYs, first check that the SIM7600G-H 4G Hat's PWR and NET LEDs are lit. Make sure your USB cable is not connected to USB TO UART on the Hat.
Now you can connect to the Internet. You need to install the PPP (Point-to-Point Protocol) software the Pi will use to establish the connection, and to configure it. First run the following commands at the command line:
1sudo apt install ppp -y2sudo cp /etc/ppp/peers/provider /etc/ppp/peers/provider.bak3sudo nano /etc/ppp/peers/provider
The last of these commands opens the primary configuration file in a text editor so you can make the required changes. Make sure the file contains the following lines. Some may be missing, others may be present depending on the version of ppp
you've installed:
1nocrtscts2debug3nodetach4ipcp-accept-local5ipcp-accept-remote
In the same file, look for lines very like these and update them so they match what's shown here:
connect '/usr/sbin/chat -s -v -f /etc/chatscripts/gprs -T wireless.twilio.com'
/dev/ttyUSB2
The last line comes from the value you determined earlier.
To initiate an Internet connection, at the command line or in a desktop terminal run:
sudo pon
You'll see a stack of lines displayed at the command line.
Open a fresh terminal and enter:
sudo route add -net "0.0.0.0" ppp0
When the prompt is back, you're ready to try out the Internet connection:
If you're at the desktop, select Turn off Wireless LAN from the network menu at the top right.
If you're at the command line, run sudo ifconfig wlan0 down
.
At the command line or in a desktop terminal, enter ifconfig
and look for the ppp0
entry — it should have a valid IP address listed under inet
:
Open up a browser and navigate to twilio.com/docs/iot:
Well done! You now have a Raspberry Pi computer that's connected to the Internet via Programmable Wireless. You can now start experimenting with cellular Internet connectivity, or begin developing your own IoT application proof-of-concept.
With the hardware working, you're ready to build your first IoT application. You'll be using a technology called MQTT to transmit sensor data generated by the Raspberry Pi. Picture it as an IoT device in the field relaying data back to base. That data might be the location of a shipping container, the state of a piece of machinery, or any other useful item of information that you need to track.
To build your IoT app, you'll need an 'MQTT broker', which is the server-side system that routes messages from sources ('publishers') to receivers ('subscribers'). We're going to use HiveMQ's free MQTT broker, but there are other public MQTT brokers that you may prefer to use instead — there is a list of them here.
HiveMQ's broker is completely open. Anyone can subscribe or publish to your topic. In production, always use encrypted communications only, and either set up your own MQTT broker or use a private broker service.
Use HiveMQ's web UI to set up the broker. You can do this on your computer, or on the Pi: just fire up a browser from the desktop.
Click the Connect button:
In the Subscriptions section, click Add New Topic Subscription.
Think up a topic name, make a note of it, and enter it in the Topic field. Make sure you keep the /#
to the end:
Click Subscribe.
On the Raspberry Pi, run the following command in a Terminal window or at the command line:
sudo pip paho-mqtt
Open the Pi's text editor — it's in the Pi > Accessories menu — and copy the following code into a new document. You can click the copy icon at the top right of the code panel:
1##############################################2# Twilio MQTT Demo for Programmable Wireless #3##############################################4from time import sleep5from sys import exit6from smbus import SMBus7import json8import paho.mqtt.client as mqtt910##############################################11# Global variables #12##############################################13# EDIT THESE14MQTT_CLIENT_ID = "SOME_RANDOM_STRING"15MQTT_PUBLISH_TOPIC = "SOME_RANDOM_STRING/info"16MQTT_ADDRESS = "broker.hivemq.com"17MQTT_BROKER_PORT = 188318MQTT_USERNAME = "YOUR_USERNAME"19MQTT_PASSWORD = "YOUR_PASSWORD"2021##############################################22# MCP9808 driver #23##############################################24MCP9808_I2CADDR_DEFAULT = 0x1825MCP9808_REG_CONFIG = 0x0126MCP9808_REG_AMBIENT_TEMP = 0x0527MCP9808_REG_MANUF_ID = 0x0628MCP9808_REG_DEVICE_ID = 0x072930class MCP9808(object):31def __init__(self, address=MCP9808_I2CADDR_DEFAULT, bus=None):32self.address = address33if bus: self.bus = SMBus(bus)3435def check(self):36# Check we can read correct Manufacturer ID and Device ID values37try:38mid_data = self.bus.read_i2c_block_data(self.address, MCP9808_REG_MANUF_ID, 2)39did_data = self.bus.read_i2c_block_data(self.address, MCP9808_REG_DEVICE_ID, 2)40mid_value = (mid_data[0] << 8) | mid_data[1]41did_value = (did_data[0] << 8) | did_data[1]42return (mid_value == 0x0054 and did_value == 0x0400)43except:44return False4546def read(self):47# Get the ambient temperature48temp_data = self.bus.read_i2c_block_data(self.address, MCP9808_REG_AMBIENT_TEMP, 2)4950# Scale and convert to signed Celsius value.51temp_raw = (temp_data[0] << 8) | temp_data[1]52temp_cel = (temp_raw & 0x0FFF) / 16.053if temp_raw & 0x1000: temp_cel -= 256.054return temp_cel5556##############################################57# The main application code #58##############################################59def app_loop():60tx_count = 161try:62# Setup the temperature sensor63sensor = MCP9808(bus=1)64sensor_state = sensor.check()65if sensor_state is False:66print("[ERROR] No MCP9808 attached")67exit(1)6869# Main application loop70while True:71temp = sensor.read()72print("{}. Ambient temperature is {:.02f} celsius".format(tx_count, temp))73tx_count +=17475# Craft a message to the cloud76msg_formatted = json.dumps({77'device_id': MQTT_CLIENT_ID + "-device",78'temperature': temp,79'units': 'celsius',80'shenanigans': "none"81})8283# Publish the message by MQTT84client.publish(MQTT_PUBLISH_TOPIC, msg_formatted)8586# Loop every minute87sleep(60)88except KeyboardInterrupt:89print(" MQTT Demo 1for Programmable Wireless stopped")90except OSError:91print("[ERROR] Cannot read sensor, check connection")9293##############################################94# Called from the command line #95##############################################96if __name__ == '__main__':97print ("Starting MQTT Demo 1 for Programmable Wireless")9899# Setup MQTT100client = mqtt.Client("TWILIO DEMO 1")101client.username_pw_set(MQTT_USERNAME, password=MQTT_PASSWORD)102client.connect(MQTT_ADDRESS, MQTT_BROKER_PORT, 60)103client.loop_start()104105# Run the main loop106app_loop()
Look for the section marked # EDIT THESE
and change some of the items as follows:
MQTT_CLIENT_ID
— Set this to the topic name you created above, replacing SOME_RANDOM_STRING
.MQTT_PUBLISH_TOPIC
— Use the topic name, replacing SOME_RANDOM_STRING, followed by /info
.Save the program in your home folder as mqtt_publish.py
.
Before you run the program you need a source for the data you'll send. This is where the MCP9808 temperature sensor comes in. You should already have soldered header pins to the small sensor board, so you can now connect the board to the Pi according to the diagram below. The Waveshare modem has pins that extend the Pi's own IO pins, so you can just wire the sensor direct to the modem board. The outer row of pins have even numbers, the inner pins odd numbers, both starting at the end closest to the Waveshare LEDs.
MCP9808 Pin | Pi Pin |
---|---|
VDD | Pin 1: 3V3 |
GND | Any GND |
SCL | Pin 5: I2C SCL |
SDA | Pin 3: I2C SDA |
On the Raspberry Pi, switch to the terminal window and run the program with python mqtt_publish.py
.
Switch back to the browser window or tab showing the HiveMQ MQTT broker interface. You should see messages being logged every 60 seconds — the messages currently being sent by your Pi over the cellular network!
If you're getting errors on the Pi side, check you have correctly connected up the sensor. You should also check you have your topic names and subscription set correctly in the mqtt_publish.py
file and on HiveMQ
Your Raspberry Pi and Waveshare SIM7600G-H 4G Hat are now able to access the cellular network, and you've built a basic IoT application using MQTT messaging on top of them. Now it's over to you: what are you going to build? We can't wait to find out.
Here are some suggestions for things to try:
/state
at the end and add a message, {"units":"fahrenheit"}
, to send when you click the Publish button. Make sure mqtt_subscribe.py
is running on your Pi when you do.