Raspberry Pi. Create Your First Connected Light
by andrea.reginato in Circuits > Raspberry Pi
4543 Views, 15 Favorites, 0 Comments
Raspberry Pi. Create Your First Connected Light
Create your first connected light using Raspberry Pi. Control and monitor a connected light from mobile, tablet and desktop using Lelylan & MQTT. It takes 15 minutes | $36 (eth) or $44 (WiFi) in hardware | basic level.
Hardware
For this tutorial you need a Raspberry Pi connected to the Internet, either via ethernet (Model B) or via WiFi using a compatible WiFi USB dongle. To configure the network access on your Raspberry Pi have a look at this tutorial. To complete this tutorial you need the following components.
- 1 Raspberry Pi (Model B+) Farnell $35.00
- 1 Edimax EW-7811Un (optional) Amazon$8.00
- 1 Push button Component packs $0.35
- 1 Led Component packs$0.35
- 1 10K Ohm resistor Resistor kit $0.25
Software
To program your Raspberry Pi you need to install a compatible GNU/Linux distribution from the Raw Images list section (if new to this checkout this guide) and the following libraries.
python-mosquitto. This library enables the communication between Lelylan and the Rasp by creating a MQTT client in Python.$ sudo apt-get install python-mosquitto
Hardware Setup
This schema represents the led, resistor and pushbutton setup. With this setup each time you press the button, the LED is turned on and off.
Software Setup
Open Lelylan Dashboard and create a new device by following 3 simple steps (if you are new to Lelylan, you can sign up for free).
1) Set a meaningful name (e.g. bedroom light).
2) Choose the device type. For this tutorial choose Basic Light. What is a type? A type defines what a device is by defining its properties, functions and statuses. For this tutorial you do not need to now more about.
3) Choose "Connect with MQTT" as connectivity option. In this tutorial we'll use MQTT, a publish subscribe protocol for the Internet of Things.
4) Get the Device ID and Device Secret. Once the device is created, click the settings link (placed under the device name) and get the device ID and device secret. You'll need them in the next section.
Code
Once the (virtual) device is defined on Lelylan you need to make it communicate with the Raspberry Pi. Copy the Python sketch below and change , and with your device credentials. Save the sketch in a file named lelylan_light.pyand run it as super user: $ sudo python lelylan_light.py.
You Are Done
Access Lelylan Dashboard and control your connected light from mobile, tablet and desktop. If any problem occours, let @lelylan know.
Learn More
If you want to better understand how the code works checkout the code explenation code explenation section.