# Control your nightlight over the Internet - Virtual IoT Hardware and Raspberry Pi The IoT device needs to be coded to communicate with *test.mosquitto.org* using MQTT to send telemetry values with the light sensor reading, and receive commands to control the LED. In this part of the lesson, you will connect your Raspberry Pi or virtual IoT device to an MQTT broker. ## Install the MQTT client package To communicate with the MQTT broker, you need to install an MQTT library pip package either on your Pi, or in your virtual environment if you are using a virtual device. ### Task Install the pip package 1. Open the nightlight project in VS Code. 1. If you are using a virtual IoT device, ensure the terminal is running the virtual environment. 1. Run the following command to install the MQTT pip package: ```sh pip3 install paho-mqtt ``` ## Code the device The device is ready to code. ### Task Write the device code. 1. Add the following import to the top of the `app.py` file: ```python import paho.mqtt.client as mqtt ``` The `paho.mqtt.client` library allows your app to communicate over MQTT. 1. Add the following code after the definitions of the light sensor and LED: ```python id = '' client_name = id + 'nightlight_client' ``` Replace `` with a unique ID that will be used the name of this device client, and later for the topics that this device publishes and subscribes to. The *test.mosquitto.org* broker is public and used by many people, including other students working through this assignment. Having a unique MQTT client name and topic names ensures your code won't clash with anyone elses. You will also need this ID when you are creating the server code later in this assignment. > 💁 You can use a website like [GUIDGen](https://www.guidgen.com) to generate a unique ID. The `client_name` is a unique name for this MQTT client on the broker. 1. Add the following code below this new code to create an MQTT client object and connect to the MQTT broker: ```python mqtt_client = mqtt.Client(client_name) mqtt_client.connect('test.mosquitto.org') mqtt_client.loop_start() print("MQTT connected!") ``` This code creates the client object, connects to the public MQTT broker, and starts a processing loop that runs in a background thread listening for messages on any subscribed topics. 1. Run the code in the same way as you ran the code from the previous part of the assignment. If you are using a virtual IoT device, then make sure the CounterFit app is running and the light sensor and LED have been created on the correct pins. ```output (.venv) ➜ nightlight python app.py MQTT connected! Light level: 0 Light level: 0 ``` > 💁 You can find this code in the [code-mqtt/virtual-device](code/virtual-device) folder or the [code-mqtt/pi](code/pi) folder. 😀 You have successfully connected your device to an MQTT broker.