| HEADER | EMPHASIS | HORIZONTAL_LINE | LIST | TABLE
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
echo "Installing Mosquitto (MQTT) client tools" | |
opkg update > /dev/null | |
opkg install mosquitto mosquitto-client > /dev/null | |
echo "Configure GCP Cloud IoT" | |
SERVICE_ENDPOINT="mqtt.googleapis.com:8883" | |
read -p "GCP Project ID : " PROJECT | |
read -p "GCP Region : " REGION | |
read -p "GCP IoT Registry ID: " REGISTRY | |
read -p "GCP IoT Device ID : " DEVICE |