CheerLights https://cheerlights.com We are all connected. Fri, 08 Nov 2024 14:49:05 +0000 en-US hourly 1 https://wordpress.org/?v=6.9.4 https://i0.wp.com/cheerlights.com/wp-content/uploads/2022/10/cropped-CheerLights-Icon-No.png?fit=32%2C32&ssl=1 CheerLights https://cheerlights.com 32 32 99191707 Arduino Library for CheerLights https://cheerlights.com/arduino-library-for-cheerlights/ https://cheerlights.com/arduino-library-for-cheerlights/#respond Sun, 03 Nov 2024 15:06:04 +0000 https://cheerlights.com/?p=1226 Read More “Arduino Library for CheerLights” »

]]>
We have published an official library that supports Arduino-compatible Wi-Fi-enabled boards, along with several examples. The library supports the Arduino MKR1000, Arduino MKR WiFi 1010, Arduino Uno WiFi Rev2, Arduino Mega WiFi Rev2, Arduino Uno R4 WiFi, ESP8266, and ESP32. Include the library at the top of your Arduino sketch, use the method CheerLights.getCurrentColor(), and set the color of your RGB LEDs.

Arduino Library Installation

  1. Open the Arduino IDE.
  2. Select Tools > Manage Libraries.
  3. Search for “CheerLights” and click “install”.
How to install the CheerLights Arduino Library

CheerLights Arduino Methods

  • begin(const char* ssid, const char* password): Initialize the library with your WiFi credentials to let the library handle the WiFi connection.
  • begin(): Initialize the library without WiFi credentials (use this to manually connect to the WiFi network and manage the WiFi connection outside the library).
  • reconnect(): Reconnect to the WiFi network.
  • isConnected(): Returns a boolean indicating whether the library is connected to the WiFi network.
  • getCurrentColor(): Get the current CheerLights color from ThingSpeak channel 1417. Returns a pointer to a constant char array.
  • currentColorName(): The current CheerLights color name (e.g., “red”). Returns a pointer to a constant char array.
  • currentColorHex(): The current CheerLights color as a hex value (e.g., 0xFF0000). Returns a uint32_t.
  • currentRed()currentGreen()currentBlue(): The RGB values for the current CheerLights color (e.g., 255, 0, 0). Returns a uint8_t.
  • hasColorChanged(): Returns a boolean indicating whether the current CheerLights color has changed since the last call to this method.

CheerLights Arduino Library Reference: https://reference.arduino.cc/reference/en/libraries/cheerlights/

]]>
https://cheerlights.com/arduino-library-for-cheerlights/feed/ 0 1226
Offical Python Package for the CheerLights API https://cheerlights.com/offical-python-package-for-the-cheerlights-api/ https://cheerlights.com/offical-python-package-for-the-cheerlights-api/#comments Fri, 01 Nov 2024 16:00:23 +0000 https://cheerlights.com/?p=1216 Read More “Offical Python Package for the CheerLights API” »

]]>
We just released an official Python Package for the CheerLights API. Use this package to interact with the CheerLights API hosted at ThingSpeak. This enables users to get the current CheerLights color, retrieve the color history, and perform various color-related utilities. The CheerLights API Python Package is distributed by PyPI, and its code is hosted on GitHub.

CheerLights Python Package on PyPi

Installation

The Python Package for the CheerLights API is easy to install using pip.

pip install cheerlights_api

Usage Examples

To use the CheerLights Python package, import it at the start of your script and use one of the defined methods like get_current_color.

import cheerlights_api

# Get the current color name and hex code
current_color = cheerlights_api.get_current_color()
print(current_color)  # Example: {'color': 'red', 'hex': '#FF0000'}

# Get the current color name
color_name = cheerlights_api.get_current_color_name()
print(color_name)  # Example: 'red'

# Get the current hex code
hex_code = cheerlights_api.get_current_hex()
print(hex_code)  # Example: '#FF0000'

# Get the history of colors
history = cheerlights_api.get_color_history(5)
for entry in history:
    print(f"{entry['timestamp']}: {entry['color']} ({entry['hex']})")

# Convert a color name to hex
hex_code = cheerlights_api.color_name_to_hex('green')
print(hex_code)  # '#00FF00'

# Convert hex code to RGB
rgb = cheerlights_api.hex_to_rgb('#00FF00')
print(rgb)  # (0, 255, 0)

# Check if a color is valid
is_valid = cheerlights_api.is_valid_color('purple')
print(is_valid)  # True

]]>
https://cheerlights.com/offical-python-package-for-the-cheerlights-api/feed/ 1 1216
CheerLights JavaScript Widgets https://cheerlights.com/cheerlights-javascript-widgets/ https://cheerlights.com/cheerlights-javascript-widgets/#respond Wed, 30 Oct 2024 18:48:22 +0000 https://cheerlights.com/?p=1189 Read More “CheerLights JavaScript Widgets” »

]]>
We have created a GitHub repo of widgets that leverage the CheerLights JavaScript library. You can use the widgets on your webpage or embed them on your Home Assistant dashboard.

Home Assistant Dashboard Showing the CheerLights Snow Widget

You can pick one widget you like, get the URL, and embed it using an iframe with the URL as the source.

CheerLights Snow Widget

WordPress

Use the “Shortcode” block in the editor to embed these widgets on your WordPress site.

CheerLights Logo Widget iframe code

[iframe src="proxy.php?url=https://cheerlights.com/widgets/snow.html" width="100%" height="200"]

Steps

  • Add a new block
  • Search for “Shortcode”
  • Copy the iframe code and adjust the src, width, and height as needed
WordPress Shortcode Block for CheerLights Widgets
Rendered CheerLights Logo Widget
CheerLights Logo Widget on the CheerLights Blog

Embed CheerLights Widgets on a Home Assistant Dashboard

To embed CheerLights widgets on a Home Assistant dashboard, follow these steps:

  1. Open Home Assistant: Open your Home Assistant instance in a web browser.
  2. Navigate to the Dashboard: Go to the dashboard where you want to add the CheerLights widget.
  3. Edit the Dashboard: Click on the three dots menu in the top right corner and select “Edit Dashboard”.
  4. Add a New Card: Click the “Add Card” button to add a new card to your dashboard.
  5. Select the “Webpage” Card: Scroll down and select the “Webpage” card option. This allows you to embed a webpage.
  6. Enter the Widget URL: Enter the URL of the CheerLights widget you want to embed (e.g., https://widgets.cheerlights.com/snow.html).
  7. Save the Card: Click on the “Save” button to save the new card to your dashboard.
CheerLights Snow Widget on Home Assistant

CheerLights Widget Links

Let us know if you have any ideas for new widgets.

]]>
https://cheerlights.com/cheerlights-javascript-widgets/feed/ 0 1189
Learn How to Make a CheerLights Tree Topper https://cheerlights.com/learn-how-to-make-a-cheerlights-tree-topper/ https://cheerlights.com/learn-how-to-make-a-cheerlights-tree-topper/#respond Wed, 20 Dec 2023 19:11:19 +0000 https://cheerlights.com/?p=1182 Read More “Learn How to Make a CheerLights Tree Topper” »

]]>
Becky Stern has just dropped a new tutorial to show you step-by-step how to make your first CheerLights circuit with a NeoPixel LED strip and Arduino Nano ESP32 board. If you follow the process, you will learn how to setup the Arduino, program it with code to get the latest CheerLights color, and transform it into a tree topper.

CheerLights Christmas Tree Topper

Becky also produced a video for her awesome YouTube channel describing the process of creating your first CheerLights circuit.

Getting started with CheerLights

Be sure to like and subscribe to Becky’s channel for awesome maker and electronics videos. Also follow Becky’s work at BeckyStern.com.

Join the rest of the community on Discord to learn, control, and connect with others.

Cheers!

]]>
https://cheerlights.com/learn-how-to-make-a-cheerlights-tree-topper/feed/ 0 1182
Christmas in July with CheerLights https://cheerlights.com/christmas-in-july-with-cheerlights/ https://cheerlights.com/christmas-in-july-with-cheerlights/#respond Wed, 26 Jul 2023 17:58:50 +0000 https://cheerlights.com/?p=1155 Read More “Christmas in July with CheerLights” »

]]>
It’s the special time of year again… Christmas in July. This is a good time to build an Internet of Things (IoT) project and join the CheerLights project.

Christmas in July

We found an awesome video produced by the illustrious Becky Stern and posted on the DigiKey YouTube channel. In this video, Becky covers easy ways to connect your project to the internet ands a bunch of project ideas to get your IoT journey started.

IoT is a network of physical objects, embedded with sensors, software, and other technologies, aiming to connect and exchange data with other devices and systems over the Internet.

To kick start your IoT journey, you’ll need some WiFi microcontrollers. Excellent choices for beginners are the ESP8266 and the ESP32. These microcontrollers are fantastic for their affordable price and compatibility with Arduino-based projects. Additionally, Arduino’s line of WiFi boards, Particle, and Raspberry Pi Pico W are also worth mentioning.

With these tools in your hands, you can easily connect your projects to the web. Now, let’s start with a fun project: controlling LEDs with CheerLights!

CheerLights

One of the coolest projects to try out is connecting your LEDs to CheerLights, a global RGB LED color-sharing platform. When a new color comes into the system, all of the CheerLights projects worldwide update to that color. It’s a simple concept, yet an excellent stepping stone for beginners into the world of IoT.

Visualizing Project Data with Cloud Services

Visualizing and logging sensor data is an essential aspect of any IoT project. Cloud services like Arduino Cloud, Adafruit IO, and ThingSpeak make this process a breeze. These platforms allow you to store, analyze, and visualize your project data for free. For instance, you can set up a project to read from a temperature sensor, then send that reading to the cloud at regular intervals. When you check back in on the cloud service, you’ll see a graph of the data over time.

IFTTT: If This, Then That

IFTTT is an API gateway that allows you to connect your project to a plethora of web services. You can visually code workflows connected to your favorite web services and your existing cloud service using their applets system. It adds an extra layer of functionality to your IoT projects.

Arduino API Libraries

Working with APIs directly using Arduino API libraries can provide even fewer layers of services and more control. Take, for instance, the Arduino Slack API and the Arduino YouTube API. Both libraries were created by Brian Lough and provide a great starting point for developing your projects.

While connecting your project to the cloud can be exhilarating, it’s vital to remember the importance of secure connections. Ensure that your endpoints are secure, never share your login credentials, and always maintain a private key.

IoT Project Ideas

  1. Home Automation System: With the use of a simple WiFi microcontroller, you could set up a system to control appliances, lights, and even your thermostat from anywhere in the world. Combine this with a platform like Adafruit IO to visualize your energy consumption and devise smarter ways to save.
  2. Plant Monitoring System: Using sensors to detect soil moisture, temperature, and light conditions, you can ensure your plants are in their ideal environment. The data can be logged on ThingSpeak or Arduino Cloud, giving you a clear overview of your plant’s health and letting you know when to water or adjust lighting.
  3. Smart Weather Station: Connect temperature, humidity, and pressure sensors to create your own local weather station. Feed the data to the cloud and set up alerts for specific conditions.
  4. IoT Alarm Clock: Design an alarm clock that checks your calendar and adjusts wake-up times accordingly or syncs with traffic conditions for your morning commute.
  5. CheerLights Globe: A step further from our CheerLights LED project, create a CheerLights globe that represents different regions’ colors and displays the global trends in real-time.
  6. Slack Status Updater: For those who use Slack, build a physical Slack status updater with a rotary switch. Set different statuses, such as “In a meeting,” “Lunch break,” or “On a call” and update your Slack status directly from your desk.
  7. YouTube Subscriber Counter: This could be a fun project for content creators. Build a live counter using Arduino YouTube API that updates with your latest subscriber numbers.

I hope all of this piqued your interest in IoT and showed you how easy it can be to get started with the right projects and tools. Whether it’s lighting up LEDs with CheerLights or building a temperature monitor, there’s an IoT project that’s right for you.

For additional resources, tips, or to share your progress, please join us on our Discord server. Let’s learn and explore the exciting world of IoT together!

]]>
https://cheerlights.com/christmas-in-july-with-cheerlights/feed/ 0 1155
Keep Multiple CheerLights in Sync with MQTT https://cheerlights.com/keep-multiple-cheerlights-in-sync-with-mqtt/ https://cheerlights.com/keep-multiple-cheerlights-in-sync-with-mqtt/#respond Sat, 10 Dec 2022 01:40:58 +0000 https://cheerlights.com/?p=1130 Read More “Keep Multiple CheerLights in Sync with MQTT” »

]]>
[John Milner] shared an update to his Arduino CheerLights project to support MQTT. John wanted multiple CheerLights projects to stay in sync. This means when one changes color, the other one changes color at the same time. John accomplished this by adapting his CheerLights code to read the latest CheerLights color using the CheerLights MQTT broker.

Mini CheerLights Displays Staying in Sync with MQTT

And, everything is better with a demo.

https://twitter.com/jfrmilner/status/1599041597424795648

John has shared the Arduino CheerLights code on GitHub. John has shared additional demos for single RGB LEDs and examples for FastLED animations. You can download the code, modify it, and build your own real-time CheerLights display. Just Tweet John a photo of your CheerLights when you finish your project. Thanks, John.

CheerLights ASCII Art
]]>
https://cheerlights.com/keep-multiple-cheerlights-in-sync-with-mqtt/feed/ 0 1130
CheerClock: A CheerLights Clock Powered by the Pimoroni Galactic Unicorn and Raspberry Pi Pico W https://cheerlights.com/cheerclock/ https://cheerlights.com/cheerclock/#respond Wed, 23 Nov 2022 18:59:27 +0000 https://cheerlights.com/?p=1120 Read More “CheerClock: A CheerLights Clock Powered by the Pimoroni Galactic Unicorn and Raspberry Pi Pico W” »

]]>
I discovered an awesome CheerLights project on Twitter: the CheerClock! This project tells you the time highlighted by the latest CheerLights color.

CheerClock: Pimoroni Galactic Unicord and Raspberry Pi Pico W

The Raspberry Pi Pico W sits on the back of the Galactic Unicorn, connects to your Wi-Fi network, gets the latest time and CheerLights color, and displays the time and color on a massive grid of RGB pixels. Self-proclaimed maker and warranty voider, Tinkering Rocks, also created a custom frame and acrylic diffuser grill to complete the finish of the project.

Laser-cut Box Joint SVG Template

Download the MicroPython code and SVG files on GitHub to make your own CheerClock. Thanks for sharing, Tinkering Rocks!

CheerClock Demo

]]>
https://cheerlights.com/cheerclock/feed/ 0 1120
YouTube Live with Kevin McAleer: Making a CheerLights-connected Christmas Tree Bauble https://cheerlights.com/youtube-live-with-kevin-mcaleer-making-a-cheerlights-connected-christmas-tree-bauble/ https://cheerlights.com/youtube-live-with-kevin-mcaleer-making-a-cheerlights-connected-christmas-tree-bauble/#respond Sun, 13 Nov 2022 19:01:56 +0000 https://cheerlights.com/?p=1086 Read More “YouTube Live with Kevin McAleer: Making a CheerLights-connected Christmas Tree Bauble” »

]]>
Join Kevin McAleer to watch him make the world’s most over-engineered Christmas Tree Bauble. Kevin will be making a Christmas Tree Bauble with Wi-Fi, seven RGB LEDs, and running a MicroPython Web server connected to the CheerLights IoT platform. While the YouTube Live stream is going on you can change Kevin’s CheerLights display and thousands of others simultaneously.

Christmas Tree Bauble
]]>
https://cheerlights.com/youtube-live-with-kevin-mcaleer-making-a-cheerlights-connected-christmas-tree-bauble/feed/ 0 1086
CheerLights + Raspberry Pi Pico W + MicroPython https://cheerlights.com/cheerlights-raspberry-pi-pico-w-micropython/ https://cheerlights.com/cheerlights-raspberry-pi-pico-w-micropython/#respond Thu, 10 Nov 2022 00:02:09 +0000 https://cheerlights.com/?p=1068 Read More “CheerLights + Raspberry Pi Pico W + MicroPython” »

]]>
What if I told you that there was a Raspberry Pi board that you could actually buy right now with Wi-Fi? It’s true. The Raspberry Pi Pico W is here to fill the void and give you some great options as a maker to make anything you want. How about you want to make a CheerLights display?

CheerLights on a Pimoroni Galactive Unicorn Display

MicroPython

To make the Raspberry Pi Pico W do something, you need to give it some instructions. One way to do it is to use MicroPython. MicroPython is an efficient subset of the Python 3 programming language tailored for microcontrollers like the Raspberry Pi Pico W.

Install Thonny

Default View of Thonny 4.0.1

Now, we need to do some configuration. Click on View and enable Files.

Files are now being displayed in Thonny

Additionally, we need to tell Thonny that we will be controlling the Raspberry Pi Pico W. Click Tools and then Options. Select the Interpreter tab and select MicroPython (Rasberry Pi Pico).

Thonny Options

Now, plug in the Raspberry Pi Pico W to your computer while holding the BOOTSEL button.

Raspberry Pi Pico W (not to scale)

Find your Raspberry Pi Pico W in your folder explorer and copy over the appropriate UF2 file. The appropriate file is determined if the Pico is standalone or hooked up to something like the Galactic Unicorn from Pimoroni. The Pico will reboot.

UF2 files from Pimoroni

If everything goes well, Thonny should show you that it is connected to the Raspberry Pi Pico W.

Raspberry Pi Pico W successfully connected Thonny

Wi-Fi

We have MicoPython running on the device. We have Thonny running on our PC. We are ready for the fun stuff. All of the fun stuff is on the internet so we need to connect our Raspberry Pi Pico W to Wi-Fi. The Pico requires a 2.4Ghz connection.

Add a new file to the Pico called, “WIFI_CONFIG.py”.

Enter this code in the new file and click save. This will create a new file on your Pico that contains your Wi-Fi credentials and shared among your projects that need to connect to the internet.

SSID = "change"
PSK = "change"
COUNTRY = "US"
Raspberry Pi Pico W Wi-Fi Configuration

In the same way that you created the Wi-Fi config file, create a new file called, “network_manager.py” with this code, and click Save.

“network_manager.py” file on the Raspberry Pi Pico W

Okay… we have done a lot of configuration at this point, so let’s test the Wi-Fi connection. I created a quick “network_test.py” script to set up a Wi-Fi connection based on your Wi-Fi settings. Once connected, the script tries to read data from the ThingSpeak CheerLights channel. If the test is successful, you should see a local IP address and the latest CheerLights HEX color code.

“network_test.py” results

CheerLights

So, the idea behind CheerLights is to keep a global network of multicolored lights in sync with each other. Anyone at any time can set the color and all of the connected lights on CheerLights set their color to match. To set the color of the CheerLights network, you can tweet to @CheerLights to mention a color name or use our Discord server CheerLights bot.

To build a CheerLights display, you need a device to get the latest color from CheerLights or from an IoT platform like ThingSpeak or ADafruit IO, parse the data, and set itself to that color. If your network settings are working, you are in good shape to get your display working.

I recommend using a Raspberry Pi Pico W board connected to the Galactic Unicorn from Pimoroni. It is a wonderful display of 500+ LEDs, a speaker, and a Raspberry Pi Pico W bolted right on the back.

Galactic Unicorn from Pimoroni

The brains of the Galactic Unicorn from Pimoroni is the Raspberry Pi Pico W board. The Pico is what connects to the Wi-Fi and controls the pixels on the display. I spent some time making a straightforward script to get the color and light up the display. I munged code from Hel Gibbons. Thanks for the inspiration. I am still working on new examples and stability. Follow my code updates on GitHub and check in on our Discord server.

The Galactic Unicorn displaying the latest CheerLights color

Resources

]]>
https://cheerlights.com/cheerlights-raspberry-pi-pico-w-micropython/feed/ 0 1068
Learn Redis Streams with the CheerLights IoT Project https://cheerlights.com/learn-redis-streams-with-the-cheerlights-iot-project/ https://cheerlights.com/learn-redis-streams-with-the-cheerlights-iot-project/#respond Thu, 03 Nov 2022 14:03:47 +0000 https://cheerlights.com/?p=1048 Read More “Learn Redis Streams with the CheerLights IoT Project” »

]]>
Simon Prickett, Developer Relations Leader at Redis, shared a CheerLights IoT project live on Twitch during the Simon’s Things show.

Simon shared the details of his CheerLights project on our Discord server. Simon has built a project that takes CheerLights messages from MQTT and put them in a Redis Stream to have a timestamped history. Then, a Raspberry Pi with a Pimoroni Unicorn Hat will consume the messages and set the color of some NeoPixel lights. The project turned out great and shows off the capabilities of Redis and MQTT for IoT messaging. CheerLights is a great way to get started with IoT and learn some of the basics.

Simon’s Things on Thursdays – CheerLights with MQTT and Redis Streams

You can catch a recording of the live stream on Twitch to learn how to connect Redis Streams to the Pimoroni Unicorn Hat. The code to make everything work is on GitHub.

]]>
https://cheerlights.com/learn-redis-streams-with-the-cheerlights-iot-project/feed/ 0 1048
Tom’s Hardware Logo Turned into a Pumpkin for Halloween https://cheerlights.com/toms-hardware-logo-turned-into-a-pumpkin-for-halloween/ https://cheerlights.com/toms-hardware-logo-turned-into-a-pumpkin-for-halloween/#respond Sat, 29 Oct 2022 16:22:34 +0000 https://cheerlights.com/?p=1038 Read More “Tom’s Hardware Logo Turned into a Pumpkin for Halloween” »

]]>
Les Pounder published a tutorial on the Tom’s Hardware website on how to build a custom 3D-printed CheerLights display powered by the Raspberry Pi Pico W.

3D design of a spooky version of Tom’s Hardware logo

Les illuminated the pumpkin using NeoPixel and the background color is set by CheerLights. Les uses the very nimble Raspberry Pi Pico W as the controller. The code running on the controller is based on CircuitPython and is really straightforward for anyone to get started with programming microcontrollers.

The results are gorgeous, I mean scary.

Completed CheerLights Project with the Raspberry Pi Pico W

Check out Les Pounder‘s tutorial on the Tom’s Hardware website.

]]>
https://cheerlights.com/toms-hardware-logo-turned-into-a-pumpkin-for-halloween/feed/ 0 1038
Use MATLAB to Read the Latest CheerLights Color from ThingSpeak https://cheerlights.com/use-matlab-to-read-the-latest-cheerlights-color-from-thingspeak/ https://cheerlights.com/use-matlab-to-read-the-latest-cheerlights-color-from-thingspeak/#respond Fri, 28 Oct 2022 20:19:13 +0000 https://cheerlights.com/?p=1031 Read More “Use MATLAB to Read the Latest CheerLights Color from ThingSpeak” »

]]>
If you are working in MATLAB, it is pretty easy to pull in the latest CheerLights color and work with it.

thingspeak_data = webread("http://api.thingspeak.com/channels/1417/field/2/last.json");
color = thingspeak_data.field2

I used this code for the MATLAB Central Coding Contest to create cool images in 280 characters or less. I use the latest CheerLights color to set the color of the night sky in my Starry Night image.

And, just in time for Halloween, I created a CheerLights-inspired pumpkin illuminated with the latest CheerLights color… FearLights! If hit “Remix” on my code and re-run it, you will likely get a slightly different pumpkin. It has been fun to play with.

MATLAB users have created over 480 awesome images using very little MATLAB code. Check out the gallery of images at MATLAB Central.

]]>
https://cheerlights.com/use-matlab-to-read-the-latest-cheerlights-color-from-thingspeak/feed/ 0 1031
Make Your Own CheerLights Display for Halloween #FearLights https://cheerlights.com/make-your-own-cheerlights-display-for-halloween-fearlights/ https://cheerlights.com/make-your-own-cheerlights-display-for-halloween-fearlights/#respond Wed, 26 Oct 2022 23:24:57 +0000 https://cheerlights.com/?p=1018 Read More “Make Your Own CheerLights Display for Halloween #FearLights” »

]]>
It’s that time of year again… #FearLights are back. FearLights are Halloween-inspired CheerLights displays!

This is a fun twist on building a display for the latest color of CheerLights. Stuff some LEDs into something spooky. How about a glass skull from Pimoroni?

Pimoroni Wireless Plasma Stick + Glass Skull

I have been watching some recent tweets go by tagging Pimoroni and CheerLights in them. The tweets were all photos of this skull. I investigated.

I found out that Pimoroni created an awesome kit (with or without the aforementioned skull) to build a CheerLights display using their Wireless Plasma Stick and a string of NeoPixel LED lights. The Wireless Plasma device is based on the Raspberry Pi Pico W and is able to drive WS2812 LED strips.

What an awesome kit and device for controlled LED strip lights! I am looking forward to getting my own Plasma Stick 2040 W to see what I can build with it.

Introducing Wireless Plasma Kit – Skully Edition (Raspberry Pico W Aboard)

Check out more FearLights projects on the CheerLights site!

]]>
https://cheerlights.com/make-your-own-cheerlights-display-for-halloween-fearlights/feed/ 0 1018
CheerLights Project Featured on The Pi Cast: Robotics and Tinkering With Jorvon Moss by Tom’s Hardware https://cheerlights.com/cheerlights-project-featured-on-the-pi-cast/ https://cheerlights.com/cheerlights-project-featured-on-the-pi-cast/#respond Tue, 25 Oct 2022 17:01:57 +0000 https://cheerlights.com/?p=977 Read More “CheerLights Project Featured on The Pi Cast: Robotics and Tinkering With Jorvon Moss by Tom’s Hardware” »

]]>
Today, Tom’s Hardware is going live on YouTube for another episode of The Pi Cast! On today’s livestream you can checkout a CheerLights project just in time for Halloween.

The Pi Cast (10/25): Robotics and tinkering with Jorvon Moss

The YouTube livestream is scheduled for October 25, 2022 at 2pm EST. Fresh from Maker Faire Rome, this week we are joined by self-taught maker and tinkerer Jorvon Moss. Moss has created a plethora of projects, including a number of wearable robotic companions. Check out the livestream to learn more about Moss’ projects and workflows.

Also, you will get to see a Tom’s Hardware Halloween CheerLights display. I hope we get to control it while the livestream is going on!

Halloween themed @Raspberry_Pi Pico W & @CircuitPython @cheerlights project.

Update

The Pi Cast is Live!

Les gave a demo of the Tom’s Hardware sign with a pumpkin “o” that supports CheerLights! The demo was live so we had fun changing the color on the livestream.

The Pi Cast Featuring a CheerLights Project
]]>
https://cheerlights.com/cheerlights-project-featured-on-the-pi-cast/feed/ 0 977
Use the Mathematica HTTPRequest Symbol to Get CheerLights Data https://cheerlights.com/use-the-mathematica-httprequest-symbol-to-get-cheerlights-data/ https://cheerlights.com/use-the-mathematica-httprequest-symbol-to-get-cheerlights-data/#respond Sat, 22 Oct 2022 14:51:56 +0000 https://cheerlights.com/?p=969 Read More “Use the Mathematica HTTPRequest Symbol to Get CheerLights Data” »

]]>
Nick Holliman posted a screenshot of Mathematica displaying the latest CheerLights color.

The Latest CheerLights Color in Mathematica

The Mathematica code uses the HTTPRequest function to get data from the ThingSpeak API, parse for the color, and set the color of a shape. Nick posted the Mathematica code on GitHub for anyone to try out.

I love how people find a way to use the CheerLights project and integrate it with what they have. We have seen Commodore 64 programs to buildings showing off the CheerLights color. CheerLights is also a great way to learn how to get data from an IoT API and do something with it. Once you know how to do CheerLights, you can build other cool things.

Thanks, Nick!

]]>
https://cheerlights.com/use-the-mathematica-httprequest-symbol-to-get-cheerlights-data/feed/ 0 969
CheerLights Now Supports the WLED Project https://cheerlights.com/cheerlights-now-supports-the-wled-project/ https://cheerlights.com/cheerlights-now-supports-the-wled-project/#respond Tue, 18 Oct 2022 22:09:50 +0000 https://cheerlights.com/?p=948 Read More “CheerLights Now Supports the WLED Project” »

]]>
I discovered the WLED Project two weeks ago and I have been on a mission to get WLED working with CheerLights.

WLED + CheerLights

I was really taken aback by how awesome WLED is for creating interactive LED light displays. WLED is an open-source project created by Aircookie and hosted on GitHub. It’s active with over 9,700 stars. They have thought of everything. I looked over the release notes and the project keeps growing, adding support for more devices, and solving the hard parts of building light displays. WLED lets you get to the fun!

I took out an ESP32 board and connected it to my PC, opened install.wled.me in Chrome, clicked Install, selected the right COM port, and waited for a minute. When WLED finished installing, I entered my Wi-Fi credentials and opened up its control interface. I hooked up a set of WS2812B LED strip lights on GPIO2 (IO16). On the control interface, I clicked around, changed the color wheel, and then found the effects tab. Oh, my. I spent an hour trying out the effects. I wasn’t writing any code. I wasn’t constantly recompiling my project. I was just having fun creating animations.

Now, to make WLED-connected lights work with CheerLights… What I want is for WLED to get the latest color from the CheerLights MQTT server and set the color of the light display accordingly. This is pretty easy with a small config change.

  • Click Config, and then Sync Interfaces.
  • Under the MQTT settings, enter “mqtt.cheerlights.com” for the Broker.
  • Add “wled” as the Device Topic
  • Leave the default value for the Client ID.
  • Click Save.
WLED MQTT Settings for CheerLights Support

Give your device a power cycle and the device will subscribe to the CheerLights MQTT broker. When the color changes, the WLED-connected lights will change to match in real time!

Thanks to Andy Stanford-Clark and Christopher Stapels for some weekend and evening hacking and testing.

Got tangled in LED lights while testing @CheerLights

]]>
https://cheerlights.com/cheerlights-now-supports-the-wled-project/feed/ 0 948
CheerLights on a $5 Lumin+ Light from Five Below Using Bluetooth https://cheerlights.com/cheerlights-on-a-5-lumin-light-from-five-below-using-bluetooth/ https://cheerlights.com/cheerlights-on-a-5-lumin-light-from-five-below-using-bluetooth/#respond Tue, 08 Mar 2022 17:02:10 +0000 https://cheerlights.com/?p=763 Read More “CheerLights on a $5 Lumin+ Light from Five Below Using Bluetooth” »

]]>
After seeing this tutorial on YouTube, I ventured out to Five Below. They are a retailer in the United States that sells things for around $5. I was surprised to discover how many tech items were on sale. I found tablet stands, speakers, and Bluetooth-controlled RGB lights. For $5! That’s incredible. The Lumin+ is a battery-powered, Bluetooth RGB light for $5. Did I mention that it was $5?

Lumin+ RGB Light from Five Below

Stuart Patterson, maker extraordinaire, figured out the Bluetooth protocol that the lights are using to set the colors on the light. You probably figured out what happened next… Stuart connected the light to the latest CheerLights color using a Bluetooth bridge built from an ESP32 microcontroller. The ESP32 has both a Wi-Fi radio and a Bluetooth radio and is the perfect device to bridge the CheerLights API to the Lumin+ light. Stuart shared the source code and a video tutorial so you can replicate this build.

CheerLights Lumin+ Light Using ESP32 Tutorial.

Here are some features of this project:

  • Real-time color updates using MQTT
  • Easy Wi-Fi setup using AutoConnect library for ESP32
  • Wi-Fi to Bluetooth bridging (a great project for other Bluetooth things around your house)

I really like how plug-and-play this project is. For $5, you could build a CheerLights display for someone in your life.

Thanks for sharing, Stuart!

]]>
https://cheerlights.com/cheerlights-on-a-5-lumin-light-from-five-below-using-bluetooth/feed/ 0 763
CheerLights Displayed on the M5StickC PLUS ESP32-PICO IoT Development Kit https://cheerlights.com/cheerlights-displayed-on-the-m5stickc-plus-esp32-pico-iot-development-kit/ https://cheerlights.com/cheerlights-displayed-on-the-m5stickc-plus-esp32-pico-iot-development-kit/#comments Sat, 15 Jan 2022 18:25:27 +0000 https://cheerlights.com/?p=755 Read More “CheerLights Displayed on the M5StickC PLUS ESP32-PICO IoT Development Kit” »

]]>
Over on the CheerLights Discord server, “marksy” shared a neat CheerLights project using the M5StickC PLUS device. This project periodically goes to the CheerLights ThingSpeak channel to get the latest CheerLights color and display the color on the M5StickC integrated LCD display. Imagine if they add an RGB LED to the next generation board!?

The CheerLights client code for the M5StickC is available on GitHub.

M5StickC With CheerLights (And Starburst candy For Scale)

The M5StickC PLUS ESP32-PICO Mini IoT Development Kit is a great device to get started with IoT and also great for building anything you can think of. The tiny, tiny formfactor of the M5StickC should inspire some new project ideas for you. You can use what you know with the Arduino Development Platform or use Development Platform UIFlow and MicroPython.

Here’s what you get built into the M5StickC PLUS:

  • ESP32-PICO-D4
  • BLE 4.2
  • Wi-Fi
  • Six-axis IMU
  • Red LED
  • IR transmitter
  • Microphone
  • Passive Buzzer
  • RTC
  • Buttons
  • LCD
  • Lipo Battery
  • Extendable Socket

For those getting started with the M5StickC, check out this video from Hackster. It’s a great introduction and helped me get going with this plucky device.

Thanks for sharing your project on the #projects channel on the CheerLights Discord server.

]]>
https://cheerlights.com/cheerlights-displayed-on-the-m5stickc-plus-esp32-pico-iot-development-kit/feed/ 1 755
Growing the Community: New CheerLights Discord Bot https://cheerlights.com/growing-the-community-new-cheerlights-discord-bot/ https://cheerlights.com/growing-the-community-new-cheerlights-discord-bot/#respond Wed, 22 Dec 2021 15:59:25 +0000 https://cheerlights.com/?p=746 Read More “Growing the Community: New CheerLights Discord Bot” »

]]>
The CheerLights Discord Server now has a bot. This bot lets you get the latest CheerLights color and even set the color right from Discord. Special thanks to Jeff Lehman for building a bot for our Discord server. Jeff has been a big supporter of the CheerLights project over the years!

CheerLights Discord Bot in Action

Here’s how to use the CheerLights bot:

  • Join the CheerLights Discord Server and introduce yourself!
  • Send this message: /cheerlights – This will return the latest CheerLights color
  • Try sending: /cheerlights blue – This will set CheerLights to blue. Feel free to try the other supported colors too.
  • And, it you need help, send /cheerlights help
CheerLights Discord Bot Help

Thanks again, Jeff. We appreciate your support and contribution to the project. Thanks for helping us grow the community. Cheers!

]]>
https://cheerlights.com/growing-the-community-new-cheerlights-discord-bot/feed/ 0 746
Every Hardware Store Sells Candy Canes: Make Giant CheerLights Displays With PVC Pipes and Fittings https://cheerlights.com/every-hardware-store-sells-candy-canes/ https://cheerlights.com/every-hardware-store-sells-candy-canes/#respond Thu, 16 Dec 2021 16:38:04 +0000 https://cheerlights.com/?p=722 Read More “Every Hardware Store Sells Candy Canes: Make Giant CheerLights Displays With PVC Pipes and Fittings” »

]]>
This project is really clever. I noticed a tweet about candy canes made from PVC pipes and fittings…

Candy Canes Emerge from PVC Pipes and Fittings

And, they are right, you can make giant candy canes from some hardware store parts and wrap them with LED lights to create a CheerLights display!

PVC Pipe Candy Canes

[Kieran Murphy] shared their project on Twitter and also shared the details of the build on their blog. The project uses an ESP8266 microcontroller connected to the Home Assistant project. From there, the candy canes are finished with WS2812B waterproof LED strips and a huge power supply. On the software side, everything flows together using Node-RED.

https://twitter.com/daffy_duc/status/1471425384696532995
]]>
https://cheerlights.com/every-hardware-store-sells-candy-canes/feed/ 0 722
Light Up Your Sports Posters With CheerLights https://cheerlights.com/light-up-your-sports-posters-with-cheerlights/ https://cheerlights.com/light-up-your-sports-posters-with-cheerlights/#respond Thu, 16 Dec 2021 16:14:46 +0000 https://cheerlights.com/?p=719 Read More “Light Up Your Sports Posters With CheerLights” »

]]>
After [elyob] read about CheerLights on Twitter, they decided to join the project. They had some LED strips, microcontrollers, and some time to build a way to light up their sports poster with the latest CheerLights color.

Rugby Poster Illuminated With CheerLights

I love to see how fast people can join the CheerLights project and build something new with what they have. I asked them on Twitter about some more details. [elyob] is using an ESP8266 microcontroller running ESPHome connected to some NeoPixel light strips. They use Node-RED to connect to the CheerLights MQTT server to get the latest color.

CheerLights Demo Video on Twitter
]]>
https://cheerlights.com/light-up-your-sports-posters-with-cheerlights/feed/ 0 719
Updates to the CheerLights System: Node-RED and MQTT https://cheerlights.com/updates-to-the-cheerlights-system-node-red-and-mqtt/ https://cheerlights.com/updates-to-the-cheerlights-system-node-red-and-mqtt/#comments Wed, 15 Dec 2021 22:18:34 +0000 https://cheerlights.com/?p=714 Read More “Updates to the CheerLights System: Node-RED and MQTT” »

]]>
Andy Stanford-Clark and I updated the backend systems that make CheerLights work. We now process the incoming CheerLights tweets with Node-RED and update three IoT platforms using MQTT. This new system allows for different ways to get access to the latest CheerLights color and to build your display or application.

Node-RED Flow for CheerLights

Node-RED is a graphical programming tool for wiring together hardware devices, APIs, and online services. The CheerLights flow passes text from tweets that contain either “#CheerLights” or “@CheerLights” and looks for color names. When there are matches, the flow sends the colors to our supported IoT platforms. Node-RED is helping people of all skills build new applications and take advantage of event-based applications with no-code and low-code.

And, while we were at it, we made some other fixes and updates:

CheerLights now supports long tweets. Twitter used to support 140 characters and over the years, they expanded to 280 characters. CheerLights was still processing the first 140 characters. We would miss color mentions in long tweets. We now have that fixed, thanks to an assist by Andy Piper, a developer advocate at Twitter. We can now catch “red” at the very end of this long tweet.

CheerLights handles multiple colors mentioned in the tweet. You can mention multiple colors in one tweet. We take each color send them along and add a short delay in between. This is a good reason to use MQTT for your CheerLights display. Your lights will change as the colors get processed instead of having your lights continually ask for the latest color. Check out the latest CheerLights API documentation for how to subscribe to CheerLights color using MQTT.

Learn more about CheerLights: BuildAPI, and News.

]]>
https://cheerlights.com/updates-to-the-cheerlights-system-node-red-and-mqtt/feed/ 1 714
The CheerLights Origin Story: Arduino, IoT, Twitter, and Community https://cheerlights.com/the-cheerlights-origin-story/ https://cheerlights.com/the-cheerlights-origin-story/#comments Sun, 12 Dec 2021 20:46:46 +0000 https://cheerlights.com/?p=695 Read More “The CheerLights Origin Story: Arduino, IoT, Twitter, and Community” »

]]>
I have shared bit and pieces of the CheerLights origin story, but I haven’t put it all together in one place. Now that CheerLights has had its 10th Anniversary, I wanted to share the origins of the idea, some of the formable moments, acknowledge those who have helped build up our community of lights, and tell some stories about CheerLights.

In November 2011, I went to Lowes in Uniontown, PA in the United States to look for some deals. Lowes is a home improvement store and they just had moved out all of the summer/fall items like grills and patio furniture to make way for holiday things: big inflatable lawn decorations, Christmas trees, and Christmas lights. The wide array of Christmas lights caught my eye and I noticed a new type of lights from GE. These lights were the GE G-35 ColorEffects lights featuring an RF remote control to set the color of the 29 feet of string lights at a distance. The box said, “Create a spectacular color effects light show.”

GE G-35 ColorEffects Christmas Lights

Lowes had the G-35 lights out as a demo and I clicked the remote buttons and loved the effects. They were $89 US. Yikes. I walked away and continued to looked at the discount grills. My mind wondered and kept coming back to the lights. My neighbors had already put up their holiday lights and had a music show. I kept imagining my Christmas lights synchronized with their lights. Then, I kept the thought going. What if our block was synchronized? What if the entire city had their lights blinking at the same time with the same color? What if The World!? The internet could keep lights in sync!

This was my lightbulb moment, pun intended.

Hans Scharler at Ignite, February 2011

I took out my phone and Googled, “g-35 coloreffects arduino.” I got a few hits. I found a few folks who hacked the RF remote control, determined the signal used by GE, and shared examples of how the lights were controlled by the Arduino microcontroller.

GE ColorEffects Library for Arduino

At this point, I was 100% certain that I could get these lights controlled over the internet. I bought two sets of the GE G-35 ColorEffects lights and the rest was history. Wait, wait, wait. Not so fast. This is just the beginning of the story.

Modding Lights

I had two choices to control the GE lights: bypass the inline controller with an Arduino or create an RF transmitter that could send the control signals. The library that I found during my online research bypassed the controlled and used an Arduino to send the control signals. I had all of those parts handy so that is the direction that I went in. I even made a long explainer video about how I did it. I bypassed the signal wire from the GE controller and connected the signal and ground to the Arduino. The Arduino would send the control signal to the lights instead of the remote control. Then, I used the ioBridge Web Gateway to take color commands from a web API. All of the parts were in place to control the lights from the internet. I had a lot of fun controlling the lights from a webpage and I sent around the link. My friends were controlling my lights strung around my room.

First Photo

Synchronizing Lights

To make the challenge of synchronizing lights a bit simpler, I decided to see if I could get my lights and my friends lights to stay the same color. So, when I changed my color, their lights changed to the same color. I used ThingSpeak to pull this off. ThingSpeak is an IoT platform that I created the year before. In my life ThingSpeak was a hammer and everything was a nail. I was always looking for ways to use ThingSpeak and I made it work. I created ThingSpeak Channel #1417 and used the channel to save a color name. My lights and my friend’s lights would check the ThingSpeak channel for the color and set themselves to that color. Now, I could synchronize the colors of individual lights.

CheerLights System Diagram

Controlling Lights

I really wanted millions of lights staying in sync with each other. That’s what I kept imagining, so I thought of using Twitter. What if someone could tweet a color and that color would control all of the connected lights? Yes! That was the last piece of the puzzle. I went to Twitter and created a new username: CheerLights.

First CheerLights Tweet

The idea behind the name CheerLights is the idea that cheer spreads like I was thinking that a color would do as lights changed all around the world.

Revised Version of the First CheerLights Video on YouTube

I wrote a little service in Ruby that listened to the Twitter Firehouse and filtered out all of the tweets looking for ones that mentioned “cheerlights” somewhere in the text. This service became TweetControl, an app that used to be on the ThingSpeak platform. Then, I looked for a color name and if one matched, I saved the color in the CheerLights ThingSpeak channel.

I sent the first CheerLights tweet on November 30, 2011. This tweet changed exactly one set of lights to blue. This is where it started.

First CheerLights Tweet

Building a Community

The only problem at this point was that I was the only person with a CheerLights display. I had three followers on Twitter and some friends who expressed interest. To get the project going, I did a few things to build a community:

  • Sent 30 direct messages to people who might want to join in the project
  • Created a handful of explainer videos and posted them on YouTube
  • Created a website
  • Published tutorials
  • Open sourced all of the code on GitHub

These activities helped a community to start. I wanted to make it easy to join, so I had to teach, create awareness, and answer every question that I could on the Arduino, Adafruit, ioBridge, and ThingSpeak forums.

I introduced the CheerLights project to HackPGH, a makerspace in Pittsburgh, PA in early December 2011. I gave a presentation about the CheerLights project and helped the members build a set of lights. I was lucky to recruit a couple of people to build their own light displays and they linked their lights to mine using the same public ThingSpeak channel.

First Set of CheerLights at HackPGH

The big moment came on December 3, 2011 when Matt Richardson wrote an article on the MAKE Magazine website. Matt wrote about the project, linked to the website, and shared my teaser video. This really helped get the word out and I soon was gain more followers on Twitter and I was getting messages about new CheerLights displays that were joining the project.

I also went to a Ruby meetup and talked about the Twitter Ruby Firehouse Listener. project at the heart of CheerLights Someone from that group built a webpage that listened to the CheerLights color and set the background color of the page to it. They didn’t know about hardware and Arduino, but they did know a lot about web applications. This was also a big moment in the project. It got me to think about other ways to be informed of the CheerLights color. Other people created an iPhone app that displayed the color, an Android app, Chrome Extension, and even a Commodore 64 program. People really surprised me and that is one of the many gifts of a community.

Keeping My Energy Up

One thing that I reflect on is the idea of sustaining your interest in a project. It is easy to give up or just lose interest especially in the early parts of a project. I sent out a tweet from the ThingSpeak account on December 2, 2011 to introduce the CheerLights project. I got one like on that tweet by Andy Piper (who now works at Twitter). And, if you know me, you know how much I love Twitter projects. That single like really helped me keep going. In a project lasting over 10 years, there are lots of little moments that help keep you going. Thank you for the first one, Andy.

Motivating Tweet

How Can You Help?

We are always looking for new people to join CheerLights. You don’t have to be a hardware expert to take part. Your ideas and your energy to get the word out are also very helpful.

What’s Next?

I have been working on a few new things that I will be discussing with folks on the CheerLights Discord Server . But, the main thing that I have been working on is some training materials for learning IoT with CheerLights. I have some introductory course material for helping people learn IoT concepts by learning about CheerLights. I also teach how to take the basic idea of CheerLights and make something new.

Learning IoT With CheerLights cover

Thanks to the Community

I would like to offer a special thanks to Andy Leer from that HackPGH night, Paul from Digital Misery for publishing the G-35 Arduino library at a timely moment, Andy Piper for your encouragement along the way, Matt Richardson for jumpstarting this project with a blog post, and to Andy Stanford-Clark for your continued support and promotion of CheerLights around the world!

And, a big thanks to the community. I love seeing people learn IoT, hardware, Arduino, and programming with the CheerLights project. I also love to see the creative ways people join CheerLights.

We are all connected.

]]>
https://cheerlights.com/the-cheerlights-origin-story/feed/ 2 695
Draw the Latest CheerLights Color With Interactive Python on Trinket https://cheerlights.com/draw-the-latest-cheerlights-color-with-interactive-python-on-trinket/ https://cheerlights.com/draw-the-latest-cheerlights-color-with-interactive-python-on-trinket/#respond Sat, 11 Dec 2021 21:10:39 +0000 https://cheerlights.com/?p=690 Read More “Draw the Latest CheerLights Color With Interactive Python on Trinket” »

]]>
GeekMomProjects just shared a Trinket project showing how to draw the latest CheerLights color using Interactive Python. This project uses the infamous TurtleDraw to draw a Christmas tree with ornaments colored with colors coming from the CheerLights API.

I love this project. Thanks for sharing GeekMomProjects! This is a great way to learn some coding and IoT without having to get into hardware. And, it looks like a great project for their Python Club.

TurtleDraw Showing the Live CheerLights Color
]]>
https://cheerlights.com/draw-the-latest-cheerlights-color-with-interactive-python-on-trinket/feed/ 0 690
Huge CheerLights Display: Ellie the Dinosaur https://cheerlights.com/huge-cheerlights-display-ellie-the-dinosaur/ https://cheerlights.com/huge-cheerlights-display-ellie-the-dinosaur/#comments Fri, 10 Dec 2021 20:15:00 +0000 https://cheerlights.com/?p=679 Read More “Huge CheerLights Display: Ellie the Dinosaur” »

]]>
Here’s a 12 feet tall CheerLights display! This huge dinosaur is illuminated by two IR controlled LED spotlights. The remote control codes are being sent by an Arduino that is receiving the latest CheerLights color (similar to how the Infrared CheerLights Robot project).

Huge CheerLights Display: Ellie the Dinosaur

Ellie the Dinosaur resides on Chale Bay Farm, a luxury five-star self catering apartments nestled among rolling fields with stunning views on the south-west of the Isle of Wight.

Ellie the Dinosaur at Chale Bay Farm

We found out about Ellie the Dinosaur on Twitter. Thanks for mentioning us and sharing a photo of this colossal CheerLights display.

]]>
https://cheerlights.com/huge-cheerlights-display-ellie-the-dinosaur/feed/ 2 679
CheerLights JavaScript Client Library Released at GitHub https://cheerlights.com/cheerlights-javascript-client-library-released-at-github/ https://cheerlights.com/cheerlights-javascript-client-library-released-at-github/#respond Fri, 10 Dec 2021 01:18:02 +0000 https://cheerlights.com/?p=676 Read More “CheerLights JavaScript Client Library Released at GitHub” »

]]>
To quickly get the latest CheerLights color from a webpage, use the new JavaScript client library for CheerLights. All you have to do is call a straightforward JavaScript function to get the color and then do what you want with it.

CheerLights.getColor(callbackFunctionName);

The CheerLights JavaScript Client Library is hosted at GitHub under the open source MIT License. Go forth and build… and star and fork.

CheerLights JavaScript Client Library

]]>
https://cheerlights.com/cheerlights-javascript-client-library-released-at-github/feed/ 0 676
Global Network of Synchronized Lights: CheerLights 10th Anniversary https://cheerlights.com/global-network-of-synchronized-lights-cheerlights-10th-anniversary/ https://cheerlights.com/global-network-of-synchronized-lights-cheerlights-10th-anniversary/#respond Wed, 08 Dec 2021 16:02:45 +0000 https://cheerlights.com/?p=603 Read More “Global Network of Synchronized Lights: CheerLights 10th Anniversary” »

]]>
We started CheerLights in December 2011! 10 years of people joining the project and synchronizing their lights with others.

CheerLights 10th Anniversary

I introduced the CheerLights project to HackPGH, a makerspace in Pittsburgh, PA. The first set of lights were a modded GE Color Effects lights, an Arduino, and an ioBridge Web Gateway.

First Set of CheerLights at HackPGH

I was lucky to recruit a couple of people to build their own light displays and they linked their lights to mine. I started getting the word out more and more people joined the project and the big moment was when Matt Richardson wrote an article on the MAKE Magazine website. CheerLights really took off after Matt’s story!

The idea behind CheerLights is that you take a light that can change color and keep all of the lights synchronized with each no matter where they are located. So, if my light turns red, the rest of the interconnected lights also turn red. The mechanism to control the lights around the world is Twitter. A tweet to @CheerLights along with mentioning a color will set the color of the lights. This opens up the control to virtually anyone one around the world.

CheerLights – Synchronized Lights Around the World

Some Inspiration

How Can You Help?

We are always looking for new people to join CheerLights. You don’t have to be a hardware expert to take part. Your ideas and your energy to get the word out are also very helpful.

Thanks to the Community

I would like to offer a special thanks to Andy Leer from that HackPGH night, Matt Richardson for jumpstarting this project and to Andy Stanford-Clark for your continued support and promotion of the project! And, a big thanks to the community. I love seeing people learn IoT, hardware, Arduino, and programming with the CheerLights project. I also love to see the creative way people join CheerLights.

We are all connected.

]]>
https://cheerlights.com/global-network-of-synchronized-lights-cheerlights-10th-anniversary/feed/ 0 603
Embed a CheerLights Widget on Your Website https://cheerlights.com/embed-a-cheerlights-widget-on-your-website/ https://cheerlights.com/embed-a-cheerlights-widget-on-your-website/#comments Wed, 08 Dec 2021 01:05:29 +0000 https://cheerlights.com/?p=558 We have created new CheerLights widgets you can embed to keep your website updated with the latest CheerLights color.

CheerLights Widget Links

CheerLights Snow Widget

WordPress

Use the “Shortcode” block in the editor to embed these widgets on your WordPress site.

WordPress Shortcode Block for CheerLights Widget
[iframe src="proxy.php?url=https://widgets.cheerlights.com/logo.html" width="100%" height="200"]

]]>
https://cheerlights.com/embed-a-cheerlights-widget-on-your-website/feed/ 1 558
CheerLights is Streaming Live on Twitch https://cheerlights.com/cheerlights-is-streaming-live-on-twitch/ https://cheerlights.com/cheerlights-is-streaming-live-on-twitch/#respond Mon, 06 Dec 2021 20:33:43 +0000 https://cheerlights.com/?p=545 For this year’s holiday season, we are streaming live on Twitch. The stream is live and features some great holiday lo-fi from Stream Beats.

We also have a few other video feeds on the CheerLights Live page. This is useful to see if your CheerLights display is in sync with other ones.

]]>
https://cheerlights.com/cheerlights-is-streaming-live-on-twitch/feed/ 0 545
Virtual, Social, and Physical Worlds Collide: CheerLights Enters Virtual Reality https://cheerlights.com/virtual-social-and-physical-worlds-collide-cheerlights-enters-virtual-reality/ https://cheerlights.com/virtual-social-and-physical-worlds-collide-cheerlights-enters-virtual-reality/#respond Thu, 31 Dec 2020 18:18:35 +0000 https://cheerlights.com/?p=511 Read More “Virtual, Social, and Physical Worlds Collide: CheerLights Enters Virtual Reality” »

]]>
Andy Stanford-Clark has been busy in 2020. Besides working on Quantum Computing and Autonomous Boats at IBM, Andy created a virtual reality world that interacts with the real-world. And, what better way to demonstrate how this works by interacting with virtual holiday lights that control real-world holiday lights.

I asked Andy about what he recommends for VR. He recommends the Oculus Quest 2.

VR is going to be HUGE. (IMHO, LoL)

Andy Stanford-Clark

The combination of virtual reality and the physical world is compelling to me. In fact, if you take a closer look, Andy also adds CheerLights to his virtual world. This means, three spheres of influence are acting at once: Virtual, Social, and Physical. Everything is converging. This is an interesting time for our technological adolescence. Let’s hope we get to grow up.

Cheers.

]]>
https://cheerlights.com/virtual-social-and-physical-worlds-collide-cheerlights-enters-virtual-reality/feed/ 0 511
CheerLights Holiday Wreath with the Adafruit MagTag https://cheerlights.com/cheerlights-holiday-wreath-with-the-adafruit-magtag/ https://cheerlights.com/cheerlights-holiday-wreath-with-the-adafruit-magtag/#respond Sat, 19 Dec 2020 15:32:15 +0000 https://cheerlights.com/?p=506 Read More “CheerLights Holiday Wreath with the Adafruit MagTag” »

]]>
We previously reported about the support of CheerLights using the Adafruit MagTag and now Adafruit has released a new guide. This tutorial walks you through how to build a CheerLighs Holiday Wreath with animations.

CheerLights Holiday Wreath

ADafruit’s guide teaches you about the CircuitPython LED Animation library and how to create dazzling animations to show off the latest CheerLights color.

Check out Cheerlights Holiday Wreath with Animations guide on the Adafruit Learn Platform.

]]>
https://cheerlights.com/cheerlights-holiday-wreath-with-the-adafruit-magtag/feed/ 0 506
CheerLights on the Adafruit MagTag https://cheerlights.com/cheerlights-on-the-adafruit-magtag/ https://cheerlights.com/cheerlights-on-the-adafruit-magtag/#comments Mon, 07 Dec 2020 14:41:54 +0000 https://cheerlights.com/?p=498 Read More “CheerLights on the Adafruit MagTag” »

]]>
Our friends at Adafruit have created an awesome device called the MagTag. The Adafruit MagTag ‘combines the new ESP32-S2 wireless module and a 2.9″ grayscale E-Ink display to make a low-power IoT display that can show data on its screen even when power is removed.’

The MagTag also includes four NeoPixels on the top! So, you know where this is going… Adafruit created a demo to show the latest CheerLights color on the E-Ink display and change the colors of the NeoPixels.

CheerLights on the Adafruit MagTag

Check out the demo from LadyAda.

You can try this demo out right now if you have a MarTag. Adafruit has posted the CheerLights code to GitHub using CircuitPython. The MagTag is really popular and often sells out on Adafruit’s store, so add your email to be notified when it’s back in stock.

]]>
https://cheerlights.com/cheerlights-on-the-adafruit-magtag/feed/ 1 498
CheerLights are back at the MathWorks Campus https://cheerlights.com/cheerlights-are-back-at-the-mathworks-campus/ https://cheerlights.com/cheerlights-are-back-at-the-mathworks-campus/#respond Wed, 02 Dec 2020 22:04:00 +0000 https://cheerlights.com/?p=495 Read More “CheerLights are back at the MathWorks Campus” »

]]>
While everyone is learning, working, and living from home, we wanted to bring back the CheerLights at the MathWorks campus in Natick, MA. We also installed a camera for anyone to check out the lights no matter where you are.

CheerLights at the MathWorks Campus 2020

CheerLights is a network of colored lights all synchronized with each other. Every year, more and more people link their CheerLights display with the CheerLights feed. To change everyone’s lights, send a tweet that mentions @cheerlights and a color.

We are all connected.

]]>
https://cheerlights.com/cheerlights-are-back-at-the-mathworks-campus/feed/ 0 495
Hubitat Home Automation CheerLights Driver https://cheerlights.com/hubitat-home-automation-cheerlights-driver/ https://cheerlights.com/hubitat-home-automation-cheerlights-driver/#respond Wed, 11 Nov 2020 17:14:50 +0000 https://cheerlights.com/?p=482 Read More “Hubitat Home Automation CheerLights Driver” »

]]>
Over at the Hubitat Community, Hasty1 released a driver for CheerLights. This driver allows the latest CheerLights color to pulled in and then set on your connected lights.

Hubitat – Elevate Your Environment

And, I just this quote from the community announcemnt.

“Cheerlights can be a fun way to get help you feel connected when the world has been so isolated.”

Hasty1, member of the Hubitat Community

We agree. We are all connected. Thanks for releasing the driver!

]]>
https://cheerlights.com/hubitat-home-automation-cheerlights-driver/feed/ 0 482
The Bolingey Inn CheerLights! https://cheerlights.com/the-bolingey-inn/ https://cheerlights.com/the-bolingey-inn/#respond Tue, 17 Dec 2019 22:56:42 +0000 https://cheerlights.com/?p=476 Read More “The Bolingey Inn CheerLights!” »

]]>
According to TripAdvisor, The Bolingey Inn is the number #1 restaurant in Bolingey on the north coast of Cornwall, England.

You know what else makes them awesome? They have a set of CheerLights outside of their inn and lots of Christmas lights. The CheerLights makes their lights interactive and synchronized with other people’s lights around the world. Just tweet a color to @CheerLights and watch the lights change!

Follow The Bolingey Inn Lights on Twitter and visit CheerLights.com to learn how to build your own.

]]>
https://cheerlights.com/the-bolingey-inn/feed/ 0 476
JavaScript CheerLights Lamp by @LizMyers https://cheerlights.com/javascript-cheerlights-lamp/ https://cheerlights.com/javascript-cheerlights-lamp/#respond Tue, 16 Jul 2019 14:53:58 +0000 http://cheerlights.com/?p=466 Read More “JavaScript CheerLights Lamp by @LizMyers” »

]]>
I have been following Liz Myers on Twitter for a little while now. She’s always working on interesting projects and recently I noticed a bunch of CheerLights related tweets.

JavaScript Lamp Showing the Latest CheerLights Color

Liz has built a CheerLights Lamp using JavaScript, Sketch, and AE. This lamp stays synchronized with the latest CheerLights color. She uses her CheerLights-based projects for inspiration for Smart Home projects and inspiration at hackathons.

Liz Myers is a UX Designer and has helped Amazon, Microsoft, Vodafone, and RS Components deliver large-scale web and mobile projects. Her passion for smart things and smart home lead her to CheerLights and to other research areas, such as augmented reality, computer vision, and multi-modal experience

Check out Liz’s work at Myers Design.

]]>
https://cheerlights.com/javascript-cheerlights-lamp/feed/ 0 466
R2D2 CheerLights Lamp Streaming on Twitch https://cheerlights.com/r2d2-cheerlights-lamp-streaming-on-twitch/ https://cheerlights.com/r2d2-cheerlights-lamp-streaming-on-twitch/#comments Thu, 27 Jun 2019 14:15:02 +0000 http://cheerlights.com/?p=455 Read More “R2D2 CheerLights Lamp Streaming on Twitch” »

]]>
I love, love getting “CheerLights” Google Alerts for people’s projects. I get an email when Google indexes a page that mentions CheerLights. I get all kinds of alerts, and this latest one caught my eye.

Duuh Duuh da da da Duuh Duuh da da da Duuh Duuh dun-dun-dun-duuuuh…

Julie Stainbrook has created an R2D2 Lamp that is live streaming on Twitch! The killer feature is that you can also control the lamp while you watch it and even set it to CheerLights mode.

Watch and control an R2D2 Lamp on Twitch

Right now on Twitch, you could watch people playing video games , but I would rather watch an R2D2 Lamp next to the Death Star (not to scale). While you are watching the lamp, press some of the controls to change the color of the lamp. Visit http://r2d2.hyperjoule.io to see the embeded Twitch stream and use the controls.

Get the code on GitHub

Julie has posted a full explanation of the project on her hyperjoule.io website and has all of the code available on GitHub.

]]>
https://cheerlights.com/r2d2-cheerlights-lamp-streaming-on-twitch/feed/ 1 455
CheerLights now supports MQTT! https://cheerlights.com/cheerlights-now-supports-mqtt/ https://cheerlights.com/cheerlights-now-supports-mqtt/#comments Wed, 26 Jun 2019 18:39:08 +0000 http://cheerlights.com/?p=445 Read More “CheerLights now supports MQTT!” »

]]>
Over the past few weeks, Andy Stanford-Clark and I, have been setting up a new server dedicated to supporting MQTT access for CheerLights. I am happy to announce that the MQTT server is live at mqtt.cheerlights.com:1883 and available for devices and apps to connect to. The main subscription topic is “cheerlights”. If you want to get the HTML RGB code for each color, subscribe to “cheerlightsRGB”.

Why MQTT?

MQTT allows for real-time subscription to the CheerLights feed. When someone changes the color, the color gets published immediately over the “cheerlights” topic. MQTT also allows for your devices to stay connected versus polling the API for changes.

I choose to use Eclipse Mosquitto™, an open source MQTT broker, as the basis of the MQTT server.

Fun Fact

Andy Stanford-Clark and Arlen Nipper invented the MQTT standard in 1999! They had to create a new protocol for connecting oil pipelines over unreliable networks.

]]>
https://cheerlights.com/cheerlights-now-supports-mqtt/feed/ 2 445
CheerLights ESP8266 Wi-Fi and NeoPixel Strip Example https://cheerlights.com/cheerlights-esp8266-wi-fi-and-neopixel-strip-example/ https://cheerlights.com/cheerlights-esp8266-wi-fi-and-neopixel-strip-example/#respond Wed, 19 Dec 2018 23:41:58 +0000 http://cheerlights.com/?p=440 Read More “CheerLights ESP8266 Wi-Fi and NeoPixel Strip Example” »

]]>
I moved into a new office this week, so I wanted to do something special. I decided to illuminate my bookshelf with the latest CheerLights color. I used the NodeMCU IoT device based on the ESP8266 Wi-Fi module to get the latest CheerLights color and a NeoPixel strip from Adafruit to display the color.

Bookshelf lighting tuned to CheerLights

After searching around for some examples, I didn’t find any up-to-date code. I put together example Arduino code using the ThingSpeak library by MathWorks and the NeoPixel library by Adafruit. This code takes advantage of a “secrets.h” file so you don’t accidentally give away your Wi-Fi credentials if you share the project.

Check out the ESP8266 NeoPixel Strip project on GitHub.

]]>
https://cheerlights.com/cheerlights-esp8266-wi-fi-and-neopixel-strip-example/feed/ 0 440
Particle IoT Christmas Tree Now Supports CheerLights https://cheerlights.com/particle-iot-christmas-tree-now-supports-cheerlights/ https://cheerlights.com/particle-iot-christmas-tree-now-supports-cheerlights/#respond Fri, 14 Dec 2018 19:47:21 +0000 http://cheerlights.com/?p=436 Read More “Particle IoT Christmas Tree Now Supports CheerLights” »

]]>
Last year, Particle.io released the Particle Christmas Tree. This tree is an add-on to the Particle Photon or Electron. It lights up with LEDs. plays music, and receives commands over the internet using the Particle Cloud.

It was a matter of time for someone to add CheerLights support. David posted his code that extends the project to add CheerLights mode when the Particle Christmas Tree is not in animation mode. Thanks, David!

Download the code on GitHub.

]]>
https://cheerlights.com/particle-iot-christmas-tree-now-supports-cheerlights/feed/ 0 436
CheerLights Spotted at the Bodmin College Career Fair https://cheerlights.com/cheerlights-spotted-at-the-bodmin-college-career-fair/ https://cheerlights.com/cheerlights-spotted-at-the-bodmin-college-career-fair/#respond Fri, 07 Dec 2018 20:47:54 +0000 http://cheerlights.com/?p=430 Today on Twitter, I discovered a CheerLights display at the Bodmin College Career Fair. It looks like a NodeMCU using an ESP8266 for Wi-Fi connectivity.

]]>
https://cheerlights.com/cheerlights-spotted-at-the-bodmin-college-career-fair/feed/ 0 430
IoT Mashup: Weather Station and CheerLights https://cheerlights.com/iot-mashup-weather-station-and-cheerlights/ https://cheerlights.com/iot-mashup-weather-station-and-cheerlights/#respond Wed, 17 Oct 2018 14:49:48 +0000 http://cheerlights.com/?p=424 Read More “IoT Mashup: Weather Station and CheerLights” »

]]>
Jeff Mizener published a project that mashes up a weather station and CheerLights display. The weather station part uses the BME260 sensor to measure temperature, humidity, and pressure. The CheerLights part uses the Adafruit NeoPixel Jewel which has 7 addressable LEDs to display the latest CheerLights color. The project is internet-connected using the WEMOS D1 mini Wi-Fi device.

The project got blogged over at Adafruit as part of their #IoTuesday blog series. Check out Jeff’s Twitter to follow his project development.

]]>
https://cheerlights.com/iot-mashup-weather-station-and-cheerlights/feed/ 0 424
What is the Most Popular CheerLights Color? https://cheerlights.com/what-is-the-most-popular-cheerlights-color/ https://cheerlights.com/what-is-the-most-popular-cheerlights-color/#respond Tue, 19 Dec 2017 17:36:44 +0000 http://cheerlights.com/?p=418 Read More “What is the Most Popular CheerLights Color?” »

]]>
When someone changes the CheerLights color via Twitter, we store the color name in a ThingSpeak channel. ThingSpeak stores the color name with a timestamp and keeps adding to the list as the project grows and grows. I get asked questions like, what is the most popular color? Is the most popular color oldlace? There are many ways to do the analysis, but ThingSpeak has free access to MATLAB built-in. Using a little bit of code, I am able to pull the last 30 days of colors and calculate their popularity.

CONTROLLING CHEERLIGHTS

To control CheerLights, send a tweet to @cheerlights or include “cheerlights” somewhere in your message with the name of a color.

EXAMPLE TWEET

@CheerLights Paint the town red

This will cause a chain reaction and all of the CheerLights displays and apps will change their color to red.

THE COLORS OF CHEERLIGHTS

  • red (#FF0000)
  • green (#008000)
  • blue (#0000FF)
  • cyan (#00FFFF)
  • white (#FFFFFF)
  • oldlace / warmwhite (#FDF5E6)
  • purple (#800080)
  • magenta (#FF00FF)
  • yellow (#FFFF00)
  • orange (#FFA500)
  • pink (#FFC0CB)

You can check previous tweets using Twitter Search.

]]>
https://cheerlights.com/what-is-the-most-popular-cheerlights-color/feed/ 0 418
Use Docker Containers to Manage CheerLights-connected Penguins https://cheerlights.com/use-docker-containers-to-manage-cheerlights-connected-penguins/ https://cheerlights.com/use-docker-containers-to-manage-cheerlights-connected-penguins/#respond Fri, 15 Dec 2017 18:07:46 +0000 http://cheerlights.com/?p=395 Read More “Use Docker Containers to Manage CheerLights-connected Penguins” »

]]>
I follow Alex Ellis on Twitter and he mentioned a “holiday blog” coming soon. Alex is a well-known Docker Captain, so I knew his project was going to use Docker containers! Docker Captain is a distinction that Docker awards select members of the community that are both experts in their field and are passionate about sharing their Docker knowledge with others. Alex did not disappoint. He created an awesome penguin that changes color along with the other things synchronized to the latest CheerLights color.

For Alex’s CheerLights-connected penguin project, he used a Raspberry Pi Zero W8GB or 16GB SD CardPimoroni Blinkt LED board, and something to light up.

If you are new to CheerLights on the Raspberry Pi, don’t worry. Alex takes you through the whole process of setting up the operating system to installing Docker. Check out Alex’s tutorial, Holiday lights that harmonize around the globe, on his blog.

]]>
https://cheerlights.com/use-docker-containers-to-manage-cheerlights-connected-penguins/feed/ 0 395
Spreading Cheer Through IoT https://cheerlights.com/spreading-cheer-through-iot/ https://cheerlights.com/spreading-cheer-through-iot/#respond Wed, 22 Nov 2017 16:44:04 +0000 http://cheerlights.com/?p=388 Read More “Spreading Cheer Through IoT” »

]]>
KATHYSTRICK from SparkFun asks, “Who couldn’t use a little extra light in their lives, especially on a rainy spring day?” On April 1, the nonprofit DesignHouse brought precisely that to low-income students from the Austin Career and College Academy in Chicago.

CheerLights is a shareware program that uses a Tweet-controlled app from ThingSpeak to change the color of a light to a ROYGBIV when a color command is sent via Twitter. Tweets can be sent from anywhere in the world to anywhere this program runs, reinforcing the power of the Internet of Things (IoT) to connect individuals and devices around the globe.

In order to join the CheerLights project, students had to build a display. SparkFun Electronics donated a Particle Photon, breadboard and wall charger, and mentors from local colleges, Hands On Training and Aeris, a leading IoT company, visited the school to teach students the basic wiring and technical skills that would transform those components and some LEDs into a gorgeous interactive light display!

A group of students and mentors came up with a circuit design for each pre-cut panel, and the panels were then assembled into one display that will live on at the school, reminding students how we are all connected when the colors change. Send out a tweet with @cheerlights and any phrase with a color to change it for them!

Try it yourself! Build your own CheerLights display and spread the cheer!

]]>
https://cheerlights.com/spreading-cheer-through-iot/feed/ 0 388
CheerLights Internet-connected Hat https://cheerlights.com/cheerlights-internet-connected-hat/ https://cheerlights.com/cheerlights-internet-connected-hat/#respond Sat, 03 Jun 2017 21:29:13 +0000 http://cheerlights.com/?p=380 Read More “CheerLights Internet-connected Hat” »

]]>
Jill Dawson has just released an Instructables for a CheerLights Hat! The result of this wearable project is delightful and for sure will be a conversation starter. Like, “Hey, tweet a color to @cheerlights to change my hat.”

To build your own CheerLights hat, gather some parts like a Particle Photon, NeoPixels, wire, and some tools. Then, follow Jill’s tutorial on Instructables.

Here’s a video of the CheerLights hat in action:

]]>
https://cheerlights.com/cheerlights-internet-connected-hat/feed/ 0 380
Baby Nursery CheerLights Robot Nightlight https://cheerlights.com/baby-nursery-cheerlights-robot-nightlight/ https://cheerlights.com/baby-nursery-cheerlights-robot-nightlight/#respond Mon, 06 Mar 2017 15:56:28 +0000 http://cheerlights.com/?p=373 Read More “Baby Nursery CheerLights Robot Nightlight” »

]]>
Nursery Hacks posted a CheerLights Robot Nightlight project for your baby’s nursery. This is an IR controlled nightlight that is now synchronized to the CheerLights project using a Particle Photon Wi-Fi device and IR LED transmitter.

Demo

Parts

Source Code

The code for the Particle Photon is really straightforward. The gist of the code is that the Particle Photon will request the latest CheerLights color from ThingSpeak. If the color matches one of the defined colors, the Photon will transmit the IR code to the robot just like the IR remote. The robot will change color when CheerLights changes color.

For more information, visit Nursery Hacks and download the source code on GitHub.

]]>
https://cheerlights.com/baby-nursery-cheerlights-robot-nightlight/feed/ 0 373
#PiParty Like It’s Your Birthday With a #CheerLights Blue Cake https://cheerlights.com/piparty-like-its-your-birthday-with-a-cheerlights-blue-cake/ https://cheerlights.com/piparty-like-its-your-birthday-with-a-cheerlights-blue-cake/#respond Sat, 04 Mar 2017 14:29:29 +0000 http://cheerlights.com/?p=370 Read More “#PiParty Like It’s Your Birthday With a #CheerLights Blue Cake” »

]]>
Happy Birthday to Raspberry Pi!

One way to celebrate is to have a CheerLights cake. Just tweet your favorite color (colour) to CheerLights and the Raspberry Pi Cake changes color! Check out GitHub for the source on how to change the color of these candles using a Raspberry Pi, but of course.

Congrats on your 5th birthday!

]]>
https://cheerlights.com/piparty-like-its-your-birthday-with-a-cheerlights-blue-cake/feed/ 0 370
CheerLights Potted Tree Connected With an ESP8266 LED Wi-Fi Controller https://cheerlights.com/cheerlights-potted-tree-with-esp8266-wi-fi/ https://cheerlights.com/cheerlights-potted-tree-with-esp8266-wi-fi/#respond Sat, 10 Dec 2016 17:07:30 +0000 http://cheerlights.com/?p=364 Read More “CheerLights Potted Tree Connected With an ESP8266 LED Wi-Fi Controller” »

]]>
Here’s a project that uses an ESP8266 LED Wi-Fi controller on Amazon. This little device is an LED controller with an ESP8266 Wi-Fi device inside. It can be reprogrammed to subscribe to the CheerLights MQTT topic on iot.eclipse.org.

CheerLights Potted Tree

CheerLights is an “Internet of Things” project created by Hans Scharler where people volunteer to synchronise their lights all across the world to one colour. In a truly democratic fashion, the colour changes by anyone sending a tweet with a colour + #cheerlights.

Learn how to build your own Wi-Fi controlled potted tree at loads.pickle.me.uk.

]]>
https://cheerlights.com/cheerlights-potted-tree-with-esp8266-wi-fi/feed/ 0 364
CheerLights Trees are Back at MathWorks https://cheerlights.com/cheerlights-trees-are-back-at-mathworks/ https://cheerlights.com/cheerlights-trees-are-back-at-mathworks/#respond Wed, 07 Dec 2016 16:06:18 +0000 http://cheerlights.com/?p=362 Read More “CheerLights Trees are Back at MathWorks” »

]]>
Outside of the headquarters of MathWorks, Robert Mawrey outfitted two trees with NeoPixel lights from Adafruit and connected them to the CheerLights project using the Particle Photon.

 

Robert added a new feature to capture multiple colors in one tweet by taking advantage of functions supported by the Particle cloud.

They are beautiful!

]]>
https://cheerlights.com/cheerlights-trees-are-back-at-mathworks/feed/ 0 362
Christmas Tree Connected to CheerLights with the Adafruit HUZZAH ESP8266 https://cheerlights.com/christmas-tree-connected-to-cheerlights-with-the-adafruit-huzzah-esp8266/ https://cheerlights.com/christmas-tree-connected-to-cheerlights-with-the-adafruit-huzzah-esp8266/#respond Mon, 05 Dec 2016 15:13:42 +0000 http://cheerlights.com/?p=356 Read More “Christmas Tree Connected to CheerLights with the Adafruit HUZZAH ESP8266” »

]]>
Over the weekend, we saw a tweet demonstrating a CheerLights Christmas Tree. It looks beautiful!

Christmas Tree Connected to CheerLights

The Christmas tree uses the Adafruit HUZZAH ESP8266 Wi-Fi board to make the connection to ThingSpeak to get the latest CheerLights color.

Have you ever wanted to tweet at your Christmas tree to change its color? Well now you can! Follow this guide to build a set of Christmas lights which will connect to CheerLights. Anyone can tweet @cheerlights with a color, and all CheerLights-connected devices all over the world will update to that color.

Check out the project on Instructables.

]]>
https://cheerlights.com/christmas-tree-connected-to-cheerlights-with-the-adafruit-huzzah-esp8266/feed/ 0 356
Halloween CheerLights Project: Pumpkin of Doom https://cheerlights.com/halloween-cheerlights-project/ https://cheerlights.com/halloween-cheerlights-project/#respond Mon, 03 Oct 2016 14:34:59 +0000 http://cheerlights.com/?p=351 Read More “Halloween CheerLights Project: Pumpkin of Doom” »

]]>
[] created a neat CheerLights project just in time for Halloween. This pumpkin’s color is controlled by CheerLights to help spread the fear. The build features a ring NeoPixel LEDs controlled by a NodeMCU board and a sound player to blast some creepy sound effects.

CheerLights Halloween Project
CheerLights Pumpkin
NodeMCU + NeoPixel LED Ring + Speaker

All of the instructions on how to build this project using an ESP8266 and NeoPixel lights are on Instructables.

]]>
https://cheerlights.com/halloween-cheerlights-project/feed/ 0 351
Adafruit Feather HUZZAH CheerLights Project by Marc de Vinck https://cheerlights.com/adafruit-feather-huzzah-cheerlights-project/ https://cheerlights.com/adafruit-feather-huzzah-cheerlights-project/#respond Thu, 19 May 2016 16:59:34 +0000 http://cheerlights.com/?p=336 Read More “Adafruit Feather HUZZAH CheerLights Project by Marc de Vinck” »

]]>
Marc de Vinck at Adafruit has released his “retro build” of CheerLights connected to the Internet using the Adafruit Feather HUZZAH and ThingSpeak.

Marc has built a really cool way to display the latest CheerLights color. And, if you want to change Marc’s color (and the other 1000’s lights), just send a Tweet mentioning CheerLights and a color name. Marc has also published a full tutorial on how to use the Adafruit Feather HUZZAH to read the latest color from the CheerLights ThingSpeak Channel.

[via Adafruit Learn]

]]>
https://cheerlights.com/adafruit-feather-huzzah-cheerlights-project/feed/ 0 336
Raspberry Pi Bluetooth Gateway for Playbulb and CheerLights https://cheerlights.com/raspberry-pi-bluetooth-gateway-for-playbulb-and-cheerlights/ https://cheerlights.com/raspberry-pi-bluetooth-gateway-for-playbulb-and-cheerlights/#comments Wed, 30 Mar 2016 16:24:04 +0000 http://cheerlights.com/?p=331 Read More “Raspberry Pi Bluetooth Gateway for Playbulb and CheerLights” »

]]>
Colin Kraft bought a Playbulb Candle and wanted the lights to show the latest CheerLights color. Playbulb uses Bluetooth to set its glowing color. There is a bundled app for iOS and Android that lets you set the color, effects, and intensity.

Playbulb Candle

Colin had the idea to use a Raspberry Pi as a Bluetooth gateway. Since the Raspberry Pi is connected to your network and supports Bluetooth, the Raspberry Pi can check the CheerLights color and send it to the Playbulb using Bluetooth just like an app on your phone.

Details on how to use the Playbulb Candle with the Raspberry Pi and CheerLights are available on Colin’s blog.

]]>
https://cheerlights.com/raspberry-pi-bluetooth-gateway-for-playbulb-and-cheerlights/feed/ 1 331
Python Wrapper for the CheerLights API https://cheerlights.com/python-wrapper-for-the-cheerlights-api/ https://cheerlights.com/python-wrapper-for-the-cheerlights-api/#respond Fri, 25 Mar 2016 21:43:18 +0000 http://cheerlights.com/?p=327 ElectronicsGeek released a Python wrapper for the CheerLights API. This makes it easy to read the latest CheerLights color programmatically using Python. Check out the wrapper on GitHub.

Update

There is now an official Python Package for the CheerLights API. The CheerLights team maintains this package, which is officially supported.

 

]]>
https://cheerlights.com/python-wrapper-for-the-cheerlights-api/feed/ 0 327
CheerLights Has Been Nominated For an IoT Award https://cheerlights.com/cheerlights-has-been-nominated-for-an-iot-award/ https://cheerlights.com/cheerlights-has-been-nominated-for-an-iot-award/#respond Tue, 19 Jan 2016 18:50:42 +0000 http://cheerlights.com/?p=319 Read More “CheerLights Has Been Nominated For an IoT Award” »

]]>
CheerLights has been nominated for the Best IoT DIY Project for 2015/16 by Postscapes. The do-it-yourself (DIY) category includes “projects and people harnessing connected technologies for their lives on their own terms.”

IoT Awards 2016

Voting is open to the public. If you want to support your favorite IoT project, please vote at Postscapes.

Thanks for the nomination! And, thanks to everyone who joined CheerLights last year. It was huge!

]]>
https://cheerlights.com/cheerlights-has-been-nominated-for-an-iot-award/feed/ 0 319
L3D Cube Now Supports CheerLights https://cheerlights.com/l3d-cube-now-supports-cheerlights/ https://cheerlights.com/l3d-cube-now-supports-cheerlights/#respond Thu, 14 Jan 2016 17:18:34 +0000 http://cheerlights.com/?p=314 Read More “L3D Cube Now Supports CheerLights” »

]]>
We recently discovered an awesome 3D LED Cube. It is called the L3D Cube by the Looking Glass. Alex Hornstein quickly integrated CheerLights with the L3D Cube to show the latest color of CheerLights on the cube.

The L3D Cube uses the Particle Photon so you can remotely program and control your 3D LED cube. The code for CheerLights is currentyl located at Pastebin and will be shared with the CubeTube.org community.

]]>
https://cheerlights.com/l3d-cube-now-supports-cheerlights/feed/ 0 314
CheerBorg – Library for the LedBorg on a Raspberry Pi https://cheerlights.com/cheerborg-library-for-the-ledborg-on-a-raspberry-pi/ https://cheerlights.com/cheerborg-library-for-the-ledborg-on-a-raspberry-pi/#respond Sun, 10 Jan 2016 22:17:44 +0000 http://cheerlights.com/?p=311 Read More “CheerBorg – Library for the LedBorg on a Raspberry Pi” »

]]>
If you have a Raspberry Pi and want to get a CheerLights display up and running quickly, then get yourself a LedBorg.

LedBorg HueSweep

The LedBorg is a bright RGB LED that you can control with the GPIO of the Raspberry Pi. To get the LED to illuminate the latest CheerLights color, use their library called CheerBorg. This is a driver-free library for the Raspberry Pi to read the latest CheerLights color from the API and set the color of the LedBorg to the same.

Using the LedBorg, you can creatively display the latest CheerLights color by setting something on top of the LedBorg to diffuse the color. @vwillcox is showing the latest CheerLights color by illuminating a Wales Crystal.

Wales Crystal

Check out CheerBorg at the PiBorg.org website to learn more.

]]>
https://cheerlights.com/cheerborg-library-for-the-ledborg-on-a-raspberry-pi/feed/ 0 311
Rudolph the (Not Always) Red-Nosed Reindeer Powered by CheerLights https://cheerlights.com/rudolph-the-not-always-red-nosed-reindeer-powered-by-cheerlights/ https://cheerlights.com/rudolph-the-not-always-red-nosed-reindeer-powered-by-cheerlights/#respond Thu, 24 Dec 2015 18:22:01 +0000 http://cheerlights.com/?p=285 Read More “Rudolph the (Not Always) Red-Nosed Reindeer Powered by CheerLights” »

]]>
Matt Holmes tweeted that not all reindeer have red noses thanks to CheerLights and introduced the world to his latest project. Matt built laser cut reindeer with electronics to control the color of its nose by syncing with the CheerLights project.

Reindeer Cheer

The nose color is created by controlling a Neopixel and connected to CheerLights by a Particle Photon. It may be the world’s first reincheer!

Find all of the project details on GitHub.

]]>
https://cheerlights.com/rudolph-the-not-always-red-nosed-reindeer-powered-by-cheerlights/feed/ 0 285
Dr. Lucy’s CheerLights Cast https://cheerlights.com/cheerlights-cast/ https://cheerlights.com/cheerlights-cast/#respond Thu, 24 Dec 2015 04:00:31 +0000 http://cheerlights.com/?p=281 Read More “Dr. Lucy’s CheerLights Cast” »

]]>
Dr. Lucy Rogers took her broken wrist cast and turned it into a cheerful thing. She dazzled her cast with some electronics from Adafruit, including the Flora, Bluefruit, and Neopixels. Bluefruit is a Bluetooth module that connects to her phone. The phone is listening to the latest CheerLights color and sends it her cast using Bluetooth.

CheerLights Cast

The CheerLights Cast made its debut at the ThingMonk conference and lots of people sent Tweets controlling the color of Dr. Lucy’s cast.

CheerLights Cast Tweet

For more information, check out Dr. Lucy’s blog post at element14.

]]>
https://cheerlights.com/cheerlights-cast/feed/ 0 281
A CheerLights Lightsaber #skywalker #blue #StarWars https://cheerlights.com/a-cheerlights-lightsaber/ https://cheerlights.com/a-cheerlights-lightsaber/#respond Tue, 22 Dec 2015 23:09:19 +0000 http://cheerlights.com/?p=270 LeRoy Miller built a CheerLights Lightsaber complete with color changing lights and sound effects!

The project uses a strip of NeoPixels, a serial MP3 player, and an Arduino to create a multicolored lightsaber.

Check Instructables for more information about how to build your own CheerLights Lightsaber.

]]>
https://cheerlights.com/a-cheerlights-lightsaber/feed/ 0 270
CheerLights – What Will You Build? https://cheerlights.com/what-will-you-build-iot/ https://cheerlights.com/what-will-you-build-iot/#respond Tue, 22 Dec 2015 21:17:59 +0000 http://cheerlights.com/?p=266 @AnkitTheCoder created an awesome video introduction the CheerLights project!

The video features the CheerLights trees at the MathWorks headquarters in Natick, MA. The lights on the trees are 40 meters of Adafruit NeoPixels and connected to the Internet with the Particle Photon.

]]>
https://cheerlights.com/what-will-you-build-iot/feed/ 0 266
Holiday Lights at Deanna Rose Farmstead https://cheerlights.com/holiday-lights-at-deanna-rose-farmstead/ https://cheerlights.com/holiday-lights-at-deanna-rose-farmstead/#respond Sat, 12 Dec 2015 03:55:09 +0000 http://cheerlights.com/?p=258 Read More “Holiday Lights at Deanna Rose Farmstead” »

]]>
If you drive up to the Deanna Rose Farmstead in Overland Park, Kansas, you will see a huge display of holiday lights, whimsical trees, roof washers, and new for 2015, Twitter Trees! Inventor, Mark Callegari is responsible for this amazing display.

Holiday Lights at Deanna Rose Farmstead

The Twitter Trees are linked to CheerLights and allow anyone to control the lights at Deanna Rose Farmstead from your car or anywhere while watching the display and animations. A tweet to CheerLights with a color will turn the rightmost tree to that color and new tweets will move the color left. The idea is great. You can watch your color for a little longer as other people around the world change the color.

“CheerLights does more than just change the trees you see at Deanna Rose. Each tweet you make using the CheerLights tag changes more than 10,000 sites around the world all listening to the CheerLights feed,” said Mark Callegari. “Similarly, our trees are listening to the CheerLights feed so not only will you see your own color changes, but also changes from around the globe.”

Check out the Facebook page to learn more about the really impressive display at Deanna Rose Farmstead.

]]>
https://cheerlights.com/holiday-lights-at-deanna-rose-farmstead/feed/ 0 258
Sneak Peek of the CheerLights Display @MathWorks https://cheerlights.com/sneak-peek-of-the-cheerlights-display-mathworks/ https://cheerlights.com/sneak-peek-of-the-cheerlights-display-mathworks/#respond Tue, 08 Dec 2015 03:10:56 +0000 http://cheerlights.com/?p=254 Robert Mawrey created a huge display of lights at the MathWorks headquarters. The lights have twinkle and transition effects as it switch from color to color. The lights use 40 meters of Adafruit NeoPixels. Here’s a sneak peek.

]]>
https://cheerlights.com/sneak-peek-of-the-cheerlights-display-mathworks/feed/ 0 254
Read Latest CheerLights Color into MATLAB for Analysis https://cheerlights.com/read-latest-color-into-matlab/ https://cheerlights.com/read-latest-color-into-matlab/#respond Thu, 03 Dec 2015 01:20:05 +0000 http://cheerlights.com/?p=246 Read More “Read Latest CheerLights Color into MATLAB for Analysis” »

]]>
Using MATLAB you can read in the latest color or do analysis on CheerLights to discover popular colors and how long colors get displayed during the day. To use CheerLights with MATLAB, install the ThingSpeak Support Toolbox. Once you install the toolbox, you will have access to the “thingSpeakRead” function. This is what you will use to read the latest colors into MATLAB.

CheerLights MATLAB ThingSpeak

Here’s some quick MATLAB code to read in the latest color from CheerLights:

latestCheer = thingSpeakRead(1417, 'outputFormat', 'table');
currentColor = latestCheer.LastCheerLightsCommand
]]>
https://cheerlights.com/read-latest-color-into-matlab/feed/ 0 246
iPhone App for CheerLights Updated by @SunshineApps https://cheerlights.com/iphone-app-for-cheerlights-updated-by-sunshineapps/ https://cheerlights.com/iphone-app-for-cheerlights-updated-by-sunshineapps/#respond Thu, 03 Dec 2015 00:47:34 +0000 http://cheerlights.com/?p=239 https://cheerlights.com/iphone-app-for-cheerlights-updated-by-sunshineapps/feed/ 0 239 Greenlight A Vet Happened – How Did We Do? https://cheerlights.com/greenlight-a-vet-analysis/ https://cheerlights.com/greenlight-a-vet-analysis/#respond Thu, 12 Nov 2015 15:46:29 +0000 http://cheerlights.com/?p=229 https://cheerlights.com/greenlight-a-vet-analysis/feed/ 0 229 Greenlight A Vet with CheerLights @GreenlightAVet #green https://cheerlights.com/greenlight-a-vet-with-cheerlights-greenlightavet-green/ https://cheerlights.com/greenlight-a-vet-with-cheerlights-greenlightavet-green/#respond Wed, 11 Nov 2015 18:56:17 +0000 http://cheerlights.com/?p=226 https://cheerlights.com/greenlight-a-vet-with-cheerlights-greenlightavet-green/feed/ 0 226 CheerLights for Halloween? https://cheerlights.com/cheerlights-for-halloween/ https://cheerlights.com/cheerlights-for-halloween/#respond Wed, 28 Oct 2015 23:49:37 +0000 http://cheerlights.com/?p=223 https://cheerlights.com/cheerlights-for-halloween/feed/ 0 223 CheerLights NeoPixel Using a Spark Core https://cheerlights.com/cheerlights-neopixel-using-a-spark-core/ https://cheerlights.com/cheerlights-neopixel-using-a-spark-core/#respond Thu, 08 Oct 2015 16:51:54 +0000 http://cheerlights.com/?p=218 https://cheerlights.com/cheerlights-neopixel-using-a-spark-core/feed/ 0 218 Analyzing CheerLights with MATLAB https://cheerlights.com/analyzing-cheerlights-with-matlab/ https://cheerlights.com/analyzing-cheerlights-with-matlab/#respond Mon, 05 Oct 2015 20:28:31 +0000 http://cheerlights.com/?p=192 https://cheerlights.com/analyzing-cheerlights-with-matlab/feed/ 0 192 CheerLights API Updates – We Added HEX Color Values! https://cheerlights.com/we-added-hex-color-values-api/ https://cheerlights.com/we-added-hex-color-values-api/#comments Thu, 10 Sep 2015 16:15:10 +0000 http://cheerlights.com/?p=155 https://cheerlights.com/we-added-hex-color-values-api/feed/ 4 155 Getting Ready for a New Season of CheerLights… https://cheerlights.com/getting-ready-for-a-new-season-of-cheerlights/ https://cheerlights.com/getting-ready-for-a-new-season-of-cheerlights/#respond Wed, 09 Sep 2015 22:31:13 +0000 http://cheerlights.com/?p=144 https://cheerlights.com/getting-ready-for-a-new-season-of-cheerlights/feed/ 0 144 CheerLights at Microsoft Tech Link https://cheerlights.com/cheerlights-display-at-microsoft-tech-link/ https://cheerlights.com/cheerlights-display-at-microsoft-tech-link/#respond Tue, 21 Apr 2015 17:47:21 +0000 http://cheerlights.apps-1and1.com/cheerlights-display-at-microsoft-tech-link https://cheerlights.com/cheerlights-display-at-microsoft-tech-link/feed/ 0 7 PixelCheer – Massive CheerLights Display in Liverpool, UK https://cheerlights.com/cheerlights-display-fact-gallery-liverpool-uk/ https://cheerlights.com/cheerlights-display-fact-gallery-liverpool-uk/#respond Fri, 19 Dec 2014 19:48:01 +0000 http://cheerlights.apps-1and1.com/cheerlights-display-fact-gallery-liverpool-uk https://cheerlights.com/cheerlights-display-fact-gallery-liverpool-uk/feed/ 0 10 Arduino CheerLights Christmas Tree on Instructables https://cheerlights.com/arduino-tweetmas-tree-on-instructables-follow-a/ https://cheerlights.com/arduino-tweetmas-tree-on-instructables-follow-a/#respond Fri, 19 Dec 2014 19:27:46 +0000 http://cheerlights.apps-1and1.com/arduino-tweetmas-tree-on-instructables-follow-a https://cheerlights.com/arduino-tweetmas-tree-on-instructables-follow-a/feed/ 0 13 CheerLights Santa Hat with an Adafruit NeoPixel Ring https://cheerlights.com/cheerlights-santa-hat/ https://cheerlights.com/cheerlights-santa-hat/#respond Fri, 19 Dec 2014 18:50:57 +0000 http://cheerlights.apps-1and1.com/cheerlights-santa-hat https://cheerlights.com/cheerlights-santa-hat/feed/ 0 16 CheerLights Christmas Tree with Arduino, Raspberry Pi, and Node-RED https://cheerlights.com/cheerlights-christmas-tree-with-arduino-raspberry-pi-and-node-red/ https://cheerlights.com/cheerlights-christmas-tree-with-arduino-raspberry-pi-and-node-red/#respond Fri, 19 Dec 2014 16:23:39 +0000 http://cheerlights.apps-1and1.com/ben-pirt-created-a-cheerlights-christmas-tree-with https://cheerlights.com/cheerlights-christmas-tree-with-arduino-raspberry-pi-and-node-red/feed/ 0 18 CheerLights Christmas Tree Topper https://cheerlights.com/cheerlights-christmas-tree-topper-by-paul-gorman/ https://cheerlights.com/cheerlights-christmas-tree-topper-by-paul-gorman/#respond Tue, 09 Dec 2014 13:20:21 +0000 http://cheerlights.apps-1and1.com/cheerlights-christmas-tree-topper-by-paul-gorman https://cheerlights.com/cheerlights-christmas-tree-topper-by-paul-gorman/feed/ 0 20 Kitchen Accent Lighting with CheerLights https://cheerlights.com/using-mqtt-to-build-accent-lighting-in/ https://cheerlights.com/using-mqtt-to-build-accent-lighting-in/#respond Wed, 03 Dec 2014 22:53:40 +0000 http://cheerlights.apps-1and1.com/using-mqtt-to-build-accent-lighting-in https://cheerlights.com/using-mqtt-to-build-accent-lighting-in/feed/ 0 23 At the Command Line and Want to Know the Latest CheerLights Color? https://cheerlights.com/at-the-command-line-and-want-to-know-the-latest/ https://cheerlights.com/at-the-command-line-and-want-to-know-the-latest/#respond Thu, 13 Nov 2014 22:37:09 +0000 http://cheerlights.apps-1and1.com/at-the-command-line-and-want-to-know-the-latest https://cheerlights.com/at-the-command-line-and-want-to-know-the-latest/feed/ 0 26 CheerPumpkin by Stephen Kenny https://cheerlights.com/cheerpumpkin-by-stephen-kenny/ https://cheerlights.com/cheerpumpkin-by-stephen-kenny/#respond Fri, 07 Nov 2014 03:16:46 +0000 http://cheerlights.apps-1and1.com/cheerpumpkin-by-stephen-kenny https://cheerlights.com/cheerpumpkin-by-stephen-kenny/feed/ 0 27 CheerLights Tray – A Windows Client for CheerLights https://cheerlights.com/cheerlights-tray-windows-client/ https://cheerlights.com/cheerlights-tray-windows-client/#respond Fri, 18 Jul 2014 15:57:12 +0000 http://cheerlights.apps-1and1.com/cheerlights-tray-is-a-windows-client-for https://cheerlights.com/cheerlights-tray-windows-client/feed/ 0 30 Internet of Things Awards 2013 https://cheerlights.com/vote-now-for-cheerlights-at-the-postscapes-iot/ https://cheerlights.com/vote-now-for-cheerlights-at-the-postscapes-iot/#respond Wed, 29 Jan 2014 18:05:37 +0000 http://cheerlights.apps-1and1.com/vote-now-for-cheerlights-at-the-postscapes-iot https://cheerlights.com/vote-now-for-cheerlights-at-the-postscapes-iot/feed/ 0 33 Cheertree, a Twitter Controlled LED Christmas Tree for #CheerLights #iot https://cheerlights.com/cheertree-a-twitter-controlled-led-christmas-tree/ https://cheerlights.com/cheertree-a-twitter-controlled-led-christmas-tree/#respond Fri, 20 Dec 2013 15:49:22 +0000 http://cheerlights.apps-1and1.com/cheertree-a-twitter-controlled-led-christmas-tree https://cheerlights.com/cheertree-a-twitter-controlled-led-christmas-tree/feed/ 0 36 The MCQN Ltd and DefProc CheerLights LED Christmas Tree in Action https://cheerlights.com/cheerlights-led-christmas-tree-in-action/ https://cheerlights.com/cheerlights-led-christmas-tree-in-action/#respond Fri, 20 Dec 2013 14:42:30 +0000 http://cheerlights.apps-1and1.com/37-2 https://cheerlights.com/cheerlights-led-christmas-tree-in-action/feed/ 0 37 Connect your Mac to CheerLights with an OSX App @N0HIO #mac #iot https://cheerlights.com/connect-your-mac-to-cheerlights-with-an-osx-app/ https://cheerlights.com/connect-your-mac-to-cheerlights-with-an-osx-app/#respond Fri, 20 Dec 2013 13:31:18 +0000 http://cheerlights.apps-1and1.com/connect-your-mac-to-cheerlights-with-an-osx-app https://cheerlights.com/connect-your-mac-to-cheerlights-with-an-osx-app/feed/ 0 39 Code for the BlinkStick and CheerLights @bassdread @adafruit #iot https://cheerlights.com/code-for-the-blinkstick-and-cheerlights-bassdread/ https://cheerlights.com/code-for-the-blinkstick-and-cheerlights-bassdread/#respond Fri, 20 Dec 2013 13:23:56 +0000 http://cheerlights.apps-1and1.com/code-for-the-blinkstick-and-cheerlights-bassdread https://cheerlights.com/code-for-the-blinkstick-and-cheerlights-bassdread/feed/ 0 40 LED Christmas Tree with 3D Printed Star https://cheerlights.com/from-twitter-our-jointly-developed-with/ https://cheerlights.com/from-twitter-our-jointly-developed-with/#respond Fri, 20 Dec 2013 13:07:27 +0000 http://cheerlights.apps-1and1.com/from-twitter-our-jointly-developed-with https://cheerlights.com/from-twitter-our-jointly-developed-with/feed/ 0 41 Freetronics Cube4 Connected to CheerLights https://cheerlights.com/heres-a-photo-from-the-master-inventor-andy/ https://cheerlights.com/heres-a-photo-from-the-master-inventor-andy/#respond Wed, 18 Dec 2013 16:00:31 +0000 http://cheerlights.apps-1and1.com/heres-a-photo-from-the-master-inventor-andy https://cheerlights.com/heres-a-photo-from-the-master-inventor-andy/feed/ 0 44 Color-Hunting Robot Finds Colors and Controls Christmas Lights https://cheerlights.com/color-hunting-robot-finds-colors/ https://cheerlights.com/color-hunting-robot-finds-colors/#respond Fri, 06 Dec 2013 23:15:00 +0000 http://cheerlights.apps-1and1.com/color-hunting-robot-finds-colors-and-controls https://cheerlights.com/color-hunting-robot-finds-colors/feed/ 0 47 2014 is the year of the internet of things—no, seriously, we mean it this time https://cheerlights.com/2014-is-the-year-of-the-internet-of-thingsno/ https://cheerlights.com/2014-is-the-year-of-the-internet-of-thingsno/#respond Fri, 06 Dec 2013 16:09:18 +0000 http://cheerlights.apps-1and1.com/2014-is-the-year-of-the-internet-of-thingsno https://cheerlights.com/2014-is-the-year-of-the-internet-of-thingsno/feed/ 0 48 CheerLights Illuminated Wales Crystal https://cheerlights.com/cheerlights-illuminated-wales-crystal/ https://cheerlights.com/cheerlights-illuminated-wales-crystal/#respond Tue, 30 Apr 2013 14:54:41 +0000 http://cheerlights.apps-1and1.com/vwillcox-is-showing-the-cheerlights-color https://cheerlights.com/cheerlights-illuminated-wales-crystal/feed/ 0 49 Bookshelf With CheerLights Accent Lighting https://cheerlights.com/bookshelf-with-cheerlights-accent-lighting/ https://cheerlights.com/bookshelf-with-cheerlights-accent-lighting/#respond Thu, 04 Apr 2013 20:31:16 +0000 http://cheerlights.apps-1and1.com/using-the-raspi-graham https://cheerlights.com/bookshelf-with-cheerlights-accent-lighting/feed/ 0 52 CheerLights Glitter Tree https://cheerlights.com/cheerlights-glitter-tree/ https://cheerlights.com/cheerlights-glitter-tree/#respond Tue, 25 Dec 2012 20:27:39 +0000 http://cheerlights.apps-1and1.com/cheerlights-glitter-tree https://cheerlights.com/cheerlights-glitter-tree/feed/ 0 54 CheerLights Christmas Tree Topper #arduino #ethernet https://cheerlights.com/cheerlights-christmas-tree-topper-arduino/ https://cheerlights.com/cheerlights-christmas-tree-topper-arduino/#respond Tue, 25 Dec 2012 20:07:00 +0000 http://cheerlights.apps-1and1.com/cheerlights-christmas-tree-topper-arduino https://cheerlights.com/cheerlights-christmas-tree-topper-arduino/feed/ 0 57 Huge CheerLights Christmas Tree https://cheerlights.com/huge-cheerlights-christmas-tree/ https://cheerlights.com/huge-cheerlights-christmas-tree/#respond Tue, 25 Dec 2012 19:52:03 +0000 http://cheerlights.apps-1and1.com/huge-cheerlights-christmas-tree https://cheerlights.com/huge-cheerlights-christmas-tree/feed/ 0 58 LED Holiday Wreath Connected to CheerLights https://cheerlights.com/led-holiday-wreath-connected-to-cheerlights/ https://cheerlights.com/led-holiday-wreath-connected-to-cheerlights/#respond Tue, 25 Dec 2012 19:28:43 +0000 http://cheerlights.apps-1and1.com/led-holiday-wreath-connected-to-cheerlights https://cheerlights.com/led-holiday-wreath-connected-to-cheerlights/feed/ 0 59 CheerLights Client for Commodore 64 #C64 https://cheerlights.com/cheerlights-client-for-commodore-64-c64/ https://cheerlights.com/cheerlights-client-for-commodore-64-c64/#respond Mon, 24 Dec 2012 23:12:28 +0000 http://cheerlights.apps-1and1.com/cheerlights-client-for-commodore-64-c64 https://cheerlights.com/cheerlights-client-for-commodore-64-c64/feed/ 0 60 Watch Moore’s Cloud Light Live! #iot https://cheerlights.com/watch-moores-cloud-light-live-iot/ https://cheerlights.com/watch-moores-cloud-light-live-iot/#respond Mon, 24 Dec 2012 09:53:58 +0000 http://cheerlights.apps-1and1.com/watch-moores-cloud-light-live-iot https://cheerlights.com/watch-moores-cloud-light-live-iot/feed/ 0 61 Teensy Arduino CheerLights Snowman #perl https://cheerlights.com/teensy-arduino-cheerlights-snowman-perl/ https://cheerlights.com/teensy-arduino-cheerlights-snowman-perl/#respond Sun, 23 Dec 2012 16:09:00 +0000 http://cheerlights.apps-1and1.com/teensy-arduino-cheerlights-snowman-perl https://cheerlights.com/teensy-arduino-cheerlights-snowman-perl/feed/ 0 62 CheerLights Nominated for Best DIY Internet of Things Project #IoT https://cheerlights.com/cheerlights-nominated-for-best-diy-internet-of/ https://cheerlights.com/cheerlights-nominated-for-best-diy-internet-of/#respond Sat, 15 Dec 2012 15:58:00 +0000 http://cheerlights.apps-1and1.com/cheerlights-nominated-for-best-diy-internet-of https://cheerlights.com/cheerlights-nominated-for-best-diy-internet-of/feed/ 0 63 The Tiny, Arduino-enabled Digispark Supports CheerLights https://cheerlights.com/the-tiny-arduino-enabled-digispark-supports/ https://cheerlights.com/the-tiny-arduino-enabled-digispark-supports/#respond Sat, 15 Dec 2012 15:38:51 +0000 http://cheerlights.apps-1and1.com/the-tiny-arduino-enabled-digispark-supports https://cheerlights.com/the-tiny-arduino-enabled-digispark-supports/feed/ 0 66 Smart Star – Arduino, Node.js, and MQTT https://cheerlights.com/smart-star-arduino-nodejs-and-mqtt/ https://cheerlights.com/smart-star-arduino-nodejs-and-mqtt/#respond Sat, 15 Dec 2012 15:14:15 +0000 http://cheerlights.apps-1and1.com/smart-star-arduino-nodejs-and-mqtt https://cheerlights.com/smart-star-arduino-nodejs-and-mqtt/feed/ 0 67 CheerLCD Displays the Latest CheerLights Color on your Desktop https://cheerlights.com/cheerlcd-displays-the-latest-cheerlights-color-on/ https://cheerlights.com/cheerlcd-displays-the-latest-cheerlights-color-on/#respond Thu, 13 Dec 2012 21:07:57 +0000 http://cheerlights.apps-1and1.com/cheerlcd-displays-the-latest-cheerlights-color-on https://cheerlights.com/cheerlcd-displays-the-latest-cheerlights-color-on/feed/ 0 68 Web-connected, Interactive Light on Kickstarter Supports CheerLights #internetofthings https://cheerlights.com/web-connected-interactive-light-on-kickstarter/ https://cheerlights.com/web-connected-interactive-light-on-kickstarter/#respond Wed, 12 Dec 2012 21:31:44 +0000 http://cheerlights.apps-1and1.com/web-connected-interactive-light-on-kickstarter https://cheerlights.com/web-connected-interactive-light-on-kickstarter/feed/ 0 69 Updated CheerLights Code on GitHub https://cheerlights.com/updated-cheerlights-code-on-github/ https://cheerlights.com/updated-cheerlights-code-on-github/#respond Sun, 09 Dec 2012 05:40:01 +0000 http://cheerlights.apps-1and1.com/updated-cheerlights-code-on-github https://cheerlights.com/updated-cheerlights-code-on-github/feed/ 0 70 CheerLightsPi = Arduino + Raspberry Pi + CheerLights API https://cheerlights.com/cheerlightspi-arduino-raspberry-pi/ https://cheerlights.com/cheerlightspi-arduino-raspberry-pi/#respond Fri, 07 Dec 2012 21:07:04 +0000 http://cheerlights.apps-1and1.com/cheerlightspi-arduino-raspberry-pi https://cheerlights.com/cheerlightspi-arduino-raspberry-pi/feed/ 0 71 Wireless CheerLights Tree with Raspberry Pi https://cheerlights.com/wireless-cheerlights-tree-with-raspberry-pi/ https://cheerlights.com/wireless-cheerlights-tree-with-raspberry-pi/#respond Thu, 06 Dec 2012 14:57:00 +0000 http://cheerlights.apps-1and1.com/wireless-cheerlights-tree-with-raspberry-pi-raspi https://cheerlights.com/wireless-cheerlights-tree-with-raspberry-pi/feed/ 0 72 CheerPaper – Sync Your Desktop Wallpaper to CheerLights https://cheerlights.com/cheerpaper-sync-your-desktop-wallpaper-to/ https://cheerlights.com/cheerpaper-sync-your-desktop-wallpaper-to/#respond Thu, 22 Nov 2012 17:00:50 +0000 http://cheerlights.apps-1and1.com/cheerpaper-sync-your-desktop-wallpaper-to https://cheerlights.com/cheerpaper-sync-your-desktop-wallpaper-to/feed/ 0 73 CheerLights is going big this year https://cheerlights.com/we-can-tell-already-that-cheerlights-is-going-big/ https://cheerlights.com/we-can-tell-already-that-cheerlights-is-going-big/#respond Thu, 15 Nov 2012 15:18:40 +0000 http://cheerlights.apps-1and1.com/we-can-tell-already-that-cheerlights-is-going-big https://cheerlights.com/we-can-tell-already-that-cheerlights-is-going-big/feed/ 0 74 CheerLights v1.1 iPhone / iPad App by SunshineApps https://cheerlights.com/cheerlights-v11-iphone-ipad-app-by-sunshineapps/ https://cheerlights.com/cheerlights-v11-iphone-ipad-app-by-sunshineapps/#respond Fri, 07 Sep 2012 20:29:22 +0000 http://cheerlights.apps-1and1.com/cheerlights-v11-iphone-ipad-app-by-sunshineapps https://cheerlights.com/cheerlights-v11-iphone-ipad-app-by-sunshineapps/feed/ 0 76 CheerLights in Chartwood https://cheerlights.com/cheerlights-in-chartwood/ https://cheerlights.com/cheerlights-in-chartwood/#respond Sat, 07 Jan 2012 19:54:42 +0000 http://cheerlights.apps-1and1.com/77-2 https://cheerlights.com/cheerlights-in-chartwood/feed/ 0 77 CheerLights using ioBridge and XBee Radios https://cheerlights.com/noel-created-a-wireless-version-of-cheerlights/ https://cheerlights.com/noel-created-a-wireless-version-of-cheerlights/#respond Wed, 04 Jan 2012 22:31:00 +0000 http://cheerlights.apps-1and1.com/noel-created-a-wireless-version-of-cheerlights https://cheerlights.com/noel-created-a-wireless-version-of-cheerlights/feed/ 0 79 Ewen, the CheerLights-enabled Ewok robot https://cheerlights.com/this-is-ewen-the-cheerlights-enabled-ewok-robot/ https://cheerlights.com/this-is-ewen-the-cheerlights-enabled-ewok-robot/#respond Mon, 26 Dec 2011 20:19:00 +0000 http://cheerlights.apps-1and1.com/this-is-ewen-the-cheerlights-enabled-ewok-robot https://cheerlights.com/this-is-ewen-the-cheerlights-enabled-ewok-robot/feed/ 0 81 Hack a Day lamp connected to Cheerlights https://cheerlights.com/hack-a-day-lamp/ https://cheerlights.com/hack-a-day-lamp/#respond Sat, 24 Dec 2011 21:03:22 +0000 http://cheerlights.apps-1and1.com/hack-a-day-lamp-connected-to https://cheerlights.com/hack-a-day-lamp/feed/ 0 83 CheerLights Nativity Scene https://cheerlights.com/cheerlights-nativity-scene-with-nanode/ https://cheerlights.com/cheerlights-nativity-scene-with-nanode/#respond Fri, 23 Dec 2011 23:45:17 +0000 http://cheerlights.apps-1and1.com/cheerlights-nativity-scene-with-nanode https://cheerlights.com/cheerlights-nativity-scene-with-nanode/feed/ 0 86 Cheerlights by PepperSuite https://cheerlights.com/cheerlights-by-peppersuite-on-flickr/ https://cheerlights.com/cheerlights-by-peppersuite-on-flickr/#respond Fri, 23 Dec 2011 21:23:31 +0000 http://cheerlights.apps-1and1.com/cheerlights-by-peppersuite-on-flickr https://cheerlights.com/cheerlights-by-peppersuite-on-flickr/feed/ 0 89 CheerLights Inspired Pictures from Flickr https://cheerlights.com/cheerlights-inspired-pictures-from-flickr/ https://cheerlights.com/cheerlights-inspired-pictures-from-flickr/#respond Fri, 23 Dec 2011 21:19:21 +0000 http://cheerlights.apps-1and1.com/cheerlights-inspired-pictures-from-flickr https://cheerlights.com/cheerlights-inspired-pictures-from-flickr/feed/ 0 92 https://cheerlights.com/petter-solberg-created-a-cheerlantern/ https://cheerlights.com/petter-solberg-created-a-cheerlantern/#respond Fri, 23 Dec 2011 08:19:44 +0000 http://cheerlights.apps-1and1.com/petter-solberg-created-a-cheerlantern https://cheerlights.com/petter-solberg-created-a-cheerlantern/feed/ 0 93 Sunlight Labs are Joining the CheerLights Project https://cheerlights.com/sunlight-labs/ https://cheerlights.com/sunlight-labs/#respond Fri, 23 Dec 2011 00:01:18 +0000 http://cheerlights.apps-1and1.com/today-sunlight-labs-announced-that-they-are https://cheerlights.com/sunlight-labs/feed/ 0 96 CheerLights on Wired UK and Interview https://cheerlights.com/cheerlights-on-wired-uk-and-interview/ https://cheerlights.com/cheerlights-on-wired-uk-and-interview/#respond Wed, 21 Dec 2011 19:44:24 +0000 http://cheerlights.apps-1and1.com/cheerlights-on-wired-uk-and-interview https://cheerlights.com/cheerlights-on-wired-uk-and-interview/feed/ 0 99 Outside Holiday Lights Controlled by Twitter https://cheerlights.com/outside-holiday-lights-controlled-by-twitter/ https://cheerlights.com/outside-holiday-lights-controlled-by-twitter/#respond Wed, 21 Dec 2011 18:55:00 +0000 http://cheerlights.apps-1and1.com/outside-holiday-lights-controlled-by-twitter https://cheerlights.com/outside-holiday-lights-controlled-by-twitter/feed/ 0 100 CheerLights-enabled Christmas Tree with Color Backlighting https://cheerlights.com/cheerlights-enabled-christmas-tree-with-color/ https://cheerlights.com/cheerlights-enabled-christmas-tree-with-color/#respond Wed, 21 Dec 2011 18:48:00 +0000 http://cheerlights.apps-1and1.com/cheerlights-enabled-christmas-tree-with-color https://cheerlights.com/cheerlights-enabled-christmas-tree-with-color/feed/ 0 101 Arduino Ethernet + ShiftBrite LED = CheerLights https://cheerlights.com/arduino-ethernet-shiftbrite-led-cheerlights/ https://cheerlights.com/arduino-ethernet-shiftbrite-led-cheerlights/#respond Wed, 21 Dec 2011 18:32:50 +0000 http://cheerlights.apps-1and1.com/arduino-ethernet-shiftbrite-led-cheerlights https://cheerlights.com/arduino-ethernet-shiftbrite-led-cheerlights/feed/ 0 102 https://cheerlights.com/omg-it-worked-cheerlights-is-the-coolest-thing/ https://cheerlights.com/omg-it-worked-cheerlights-is-the-coolest-thing/#respond Mon, 19 Dec 2011 21:10:02 +0000 http://cheerlights.apps-1and1.com/omg-it-worked-cheerlights-is-the-coolest-thing https://cheerlights.com/omg-it-worked-cheerlights-is-the-coolest-thing/feed/ 0 103 CheerioBot: It can be your friend or enemy https://cheerlights.com/cheeriobot-it-can-be-your-friend-or-enemy/ https://cheerlights.com/cheeriobot-it-can-be-your-friend-or-enemy/#respond Mon, 19 Dec 2011 21:02:36 +0000 http://cheerlights.apps-1and1.com/cheeriobot-it-can-be-your-friend-or-enemy https://cheerlights.com/cheeriobot-it-can-be-your-friend-or-enemy/feed/ 0 104 USB CheerLights for your Desktop https://cheerlights.com/usb-cheerlights-for-your-desktop/ https://cheerlights.com/usb-cheerlights-for-your-desktop/#respond Mon, 19 Dec 2011 20:34:12 +0000 http://cheerlights.apps-1and1.com/usb-cheerlights-for-your-desktop https://cheerlights.com/usb-cheerlights-for-your-desktop/feed/ 0 105 CheerLights on Hackaday https://cheerlights.com/cheerlights-on-hack-a-day/ https://cheerlights.com/cheerlights-on-hack-a-day/#respond Mon, 19 Dec 2011 20:16:44 +0000 http://cheerlights.apps-1and1.com/cheerlights-on-hack-a-day https://cheerlights.com/cheerlights-on-hack-a-day/feed/ 0 106 Call or TXT CheerLights for the Latest Color https://cheerlights.com/call-or-txt-cheerlights-for-the-latest-color/ https://cheerlights.com/call-or-txt-cheerlights-for-the-latest-color/#respond Fri, 16 Dec 2011 01:41:36 +0000 http://cheerlights.apps-1and1.com/call-or-txt-cheerlights-for-the-latest-color https://cheerlights.com/call-or-txt-cheerlights-for-the-latest-color/feed/ 0 107 CheerLights iPhone App from SunshineApps https://cheerlights.com/cheerlights-iphone-app-from-sunshineapps/ https://cheerlights.com/cheerlights-iphone-app-from-sunshineapps/#respond Fri, 16 Dec 2011 00:40:37 +0000 http://cheerlights.apps-1and1.com/cheerlights-iphone-app-from-sunshineapps https://cheerlights.com/cheerlights-iphone-app-from-sunshineapps/feed/ 0 108 Milwaukee Makerspace CheerLights Build https://cheerlights.com/milwaukee-makerspace-cheerlights-build/ https://cheerlights.com/milwaukee-makerspace-cheerlights-build/#respond Thu, 15 Dec 2011 17:16:32 +0000 http://cheerlights.apps-1and1.com/milwaukee-makerspace-cheerlights-build https://cheerlights.com/milwaukee-makerspace-cheerlights-build/feed/ 0 109 https://cheerlights.com/check-out-hans-scharler-of-iobridge-and-the-hack/ https://cheerlights.com/check-out-hans-scharler-of-iobridge-and-the-hack/#respond Thu, 15 Dec 2011 05:51:15 +0000 http://cheerlights.apps-1and1.com/check-out-hans-scharler-of-iobridge-and-the-hack https://cheerlights.com/check-out-hans-scharler-of-iobridge-and-the-hack/feed/ 0 110 CheerLights on MAKE Live! https://cheerlights.com/cheerlights-on-make-live/ https://cheerlights.com/cheerlights-on-make-live/#respond Wed, 14 Dec 2011 21:18:00 +0000 http://cheerlights.apps-1and1.com/cheerlights-on-make-live https://cheerlights.com/cheerlights-on-make-live/feed/ 0 112 CheerLights Desktop Christmas Tree https://cheerlights.com/cheerlights-desktop-christmas-tree/ https://cheerlights.com/cheerlights-desktop-christmas-tree/#respond Wed, 14 Dec 2011 05:41:00 +0000 http://cheerlights.apps-1and1.com/cheerlights-desktop-christmas-tree https://cheerlights.com/cheerlights-desktop-christmas-tree/feed/ 0 113 CheerLights with one RGB LED https://cheerlights.com/cheerlights-with-one-rgb-led/ https://cheerlights.com/cheerlights-with-one-rgb-led/#respond Sun, 11 Dec 2011 19:55:13 +0000 http://cheerlights.apps-1and1.com/cheerlights-with-one-rgb-led https://cheerlights.com/cheerlights-with-one-rgb-led/feed/ 0 115 Great Comment on Twitter! https://cheerlights.com/i-love-the-cheerlights-project-change-the-color/ https://cheerlights.com/i-love-the-cheerlights-project-change-the-color/#respond Sun, 11 Dec 2011 19:22:15 +0000 http://cheerlights.apps-1and1.com/i-love-the-cheerlights-project-change-the-color https://cheerlights.com/i-love-the-cheerlights-project-change-the-color/feed/ 0 116 ¿Quieres sincronizar conmigo? Nuestros colores para la navidad https://cheerlights.com/quieres-sincronizar-conmigo-nuestros-colores/ https://cheerlights.com/quieres-sincronizar-conmigo-nuestros-colores/#respond Thu, 08 Dec 2011 15:26:24 +0000 http://cheerlights.apps-1and1.com/quieres-sincronizar-conmigo-nuestros-colores https://cheerlights.com/quieres-sincronizar-conmigo-nuestros-colores/feed/ 0 117 https://cheerlights.com/curiosa-la-idea-de-cheerlights/ https://cheerlights.com/curiosa-la-idea-de-cheerlights/#respond Thu, 08 Dec 2011 01:05:56 +0000 http://cheerlights.apps-1and1.com/curiosa-la-idea-de-cheerlights https://cheerlights.com/curiosa-la-idea-de-cheerlights/feed/ 0 118 https://cheerlights.com/absolutely-loving-playing-with-the-cheerlights-and/ https://cheerlights.com/absolutely-loving-playing-with-the-cheerlights-and/#respond Wed, 07 Dec 2011 18:45:04 +0000 http://cheerlights.apps-1and1.com/absolutely-loving-playing-with-the-cheerlights-and https://cheerlights.com/absolutely-loving-playing-with-the-cheerlights-and/feed/ 0 119 AWESOME THING OF THE DAY: A Social Network for Holiday Lights https://cheerlights.com/awesome-thing-of-the-day-a-social-network-for/ https://cheerlights.com/awesome-thing-of-the-day-a-social-network-for/#respond Wed, 07 Dec 2011 12:35:12 +0000 http://cheerlights.apps-1and1.com/awesome-thing-of-the-day-a-social-network-for https://cheerlights.com/awesome-thing-of-the-day-a-social-network-for/feed/ 0 120 Add CheerLights to your Chrome Web Browser https://cheerlights.com/add-cheerlights-to-your-chrome-web-browser/ https://cheerlights.com/add-cheerlights-to-your-chrome-web-browser/#respond Wed, 07 Dec 2011 04:05:40 +0000 http://cheerlights.apps-1and1.com/add-cheerlights-to-your-chrome-web-browser https://cheerlights.com/add-cheerlights-to-your-chrome-web-browser/feed/ 0 121 CheerLights on Lifehacker https://cheerlights.com/cheerlights-on-lifehacker/ https://cheerlights.com/cheerlights-on-lifehacker/#respond Wed, 07 Dec 2011 04:02:46 +0000 http://cheerlights.apps-1and1.com/cheerlights-on-lifehacker https://cheerlights.com/cheerlights-on-lifehacker/feed/ 0 122 CheerLights Warms my Geeky Heart https://cheerlights.com/warms-my-geeky-heart/ https://cheerlights.com/warms-my-geeky-heart/#respond Tue, 06 Dec 2011 03:46:45 +0000 http://cheerlights.apps-1and1.com/have-you-heard-of-cheerlights-an-app-that-allows https://cheerlights.com/warms-my-geeky-heart/feed/ 0 123 https://cheerlights.com/twitter-puts-the-twinkle-in-christmas-lights/ https://cheerlights.com/twitter-puts-the-twinkle-in-christmas-lights/#respond Tue, 06 Dec 2011 00:43:55 +0000 http://cheerlights.apps-1and1.com/twitter-puts-the-twinkle-in-christmas-lights https://cheerlights.com/twitter-puts-the-twinkle-in-christmas-lights/feed/ 0 124 Had to Share This Quote: “I totally love this idea.” https://cheerlights.com/i-totally-love-this-idea-connecting-people-via/ https://cheerlights.com/i-totally-love-this-idea-connecting-people-via/#respond Tue, 06 Dec 2011 00:35:29 +0000 http://cheerlights.apps-1and1.com/i-totally-love-this-idea-connecting-people-via https://cheerlights.com/i-totally-love-this-idea-connecting-people-via/feed/ 0 125 MAKE: Creating a Global Network of Christmas Lights https://cheerlights.com/make-creating-a-global-network-of-christmas/ https://cheerlights.com/make-creating-a-global-network-of-christmas/#respond Mon, 05 Dec 2011 18:12:36 +0000 http://cheerlights.apps-1and1.com/make-creating-a-global-network-of-christmas https://cheerlights.com/make-creating-a-global-network-of-christmas/feed/ 0 126 CheerLights Android App https://cheerlights.com/cheerlights-android-app/ https://cheerlights.com/cheerlights-android-app/#comments Sun, 04 Dec 2011 08:29:45 +0000 http://cheerlights.apps-1and1.com/cheerlights-android-app https://cheerlights.com/cheerlights-android-app/feed/ 2 127 CheerLights is now live on Ustream https://cheerlights.com/cheerlights-is-now-live-on-ustream/ https://cheerlights.com/cheerlights-is-now-live-on-ustream/#respond Sun, 04 Dec 2011 08:09:51 +0000 http://cheerlights.apps-1and1.com/cheerlights-is-now-live-on-ustream https://cheerlights.com/cheerlights-is-now-live-on-ustream/feed/ 0 128 CheerLights Controllers https://cheerlights.com/cheerlights-controllers/ https://cheerlights.com/cheerlights-controllers/#respond Sat, 03 Dec 2011 22:34:00 +0000 http://cheerlights.apps-1and1.com/cheerlights-controllers https://cheerlights.com/cheerlights-controllers/feed/ 0 129 Ideas for taking CheerLights further… https://cheerlights.com/ideas-for-taking-cheerlights-further/ https://cheerlights.com/ideas-for-taking-cheerlights-further/#respond Fri, 02 Dec 2011 18:24:00 +0000 http://cheerlights.apps-1and1.com/ideas-for-taking-cheerlights-further https://cheerlights.com/ideas-for-taking-cheerlights-further/feed/ 0 130 The CheerLights Project is Bubbling Up #internetoflights https://cheerlights.com/cheerlights-internet-synchronized-lights/ https://cheerlights.com/cheerlights-internet-synchronized-lights/#respond Wed, 30 Nov 2011 16:37:00 +0000 http://cheerlights.apps-1and1.com/cheerlights-internet-synchronized-lights https://cheerlights.com/cheerlights-internet-synchronized-lights/feed/ 0 131