Skip to main content

Explore cloudBit


The cloudBit module allows tinkerers, kids and grownups alike, to connect their littleBit creations to a smartphone. This turns your littleBits into an IoT (Internet of Things) device. After I received my cloudBit Starter Kit, my daughter and I tried out a basic circuit to communicate with each other between the two different levels of our house.


Each littleBit has magnets on both ends of the module. This makes it easy for kids to build circuits.
The modules snap together when they are arranged correctly.

The magnets push apart when the modules are not arranged correctly and do not snap together.

Here’s the basic circuit my daughter and I created to test out our communication device idea.

Connecting the cloudBit to our router was easy using a smartphone and the littleBits cloud start website.


After our littleBits cloudBit was connected to the router, we set up some rules (or recipes) with triggers and events using my IFTTT (If This Then That) account. The first recipe we set up was to trigger the long LED module on the circuit using an IFTTT DO button (now referred to as a widget) on my smartphone.


When I pushed the Turn On LED button shown on my smartphone while sitting downstairs, the long LED module in our littleBits circuit would illuminate upstairs where my daughter could see it.


Then we set up a recipe (now referred to as applets) to show an IFTTT notification on my smartphone indicating that my daughter would be on her way down from the upstairs. The recipe would be triggered by the littleBits push button input module on the circuit.


Each time I pressed the button on my smartphone, the LED would light up. My daughter would see it and respond with an IFTTT notification sent to my phone by pushing the button module on the littleBits circuit.


We had a lot of fun testing out our littleBits cloudBit by signaling each other in our house! My daughter loved sending me a message and running downstairs to see if it actually worked. I’m sure will be making many more connected projects with littleBits!

Comments

Popular posts from this blog

Tippe Top Design

The physics behind the tippe top toy have been the subject of studies by scientists for years - dating back to the early 1890s. The tippe top is spun just like any other top, but pulls a surprise stunt. The top flips over and spins on its stem when given a strong twist. Why does the tippe top flip over? What does this mean for anyone planning to make one on a 3D printer? Nobel Prize winners, Wolfgang Pauli and Niels Bohr, take a break with a tippe top at the 1954 inauguration of the Institute of Physics in Lund, Sweden. Early Top Patents The first patent for the top, listed as “Wendekreisel”, was filed in Germany by Helene Sperl in 1891. While the patent seems to describe the top’s inversion property, reproductions of the top have proved unsuccessful. The patent expired after one year because the fee wasn’t paid. During a trip to South America, Danish engineer Werner Østberg noticed kids spinning a small, round fruit. While spinning, the fruit would flip over (or...

Creating VR Environments

Virtual reality (and augmented reality) have become major buzz words in educational technology. With inexpensive VR headsets, such as Google Cardboard , and the use of student smart phones, teachers can take their classes on virtual reality field trips - a much more preferred trip to administrators than pouring money into bus fuel. But besides immersing students in gimmicky games and field trips until the VR sickness kicks in, how else can virtual reality be leveraged as a learning tool? Building with A-Frame I attended the annual Computer Science Teachers Association (CSTA) Conference in Omaha, Nebraska. I had made it my personal and professional mission to learn how virtual reality could be used as a learning tool in computer science education. On the very first day I dove into a VR workshop where I discovered one method of programming virtual reality worlds and creating interactive 3D environments. Anyone who thinks code must be developed from scratch is kidding ...

Sprites & Games

Any graphical object or character in a video game is known as a sprite. Code provides instructions for sprites. A game’s program can tell the sprite how to move or react when a button is pressed. Every time Mario bops his head on a box and a mushroom appears, sprites (Mario, the box, the mushroom) are interacting with each other and responding accordingly based on the game’s code. You can create your own sprites to use in your video games! I used Piskel , an online sprite creation tool, to create my m4ttbit sprite for a blob-catching game I made using Scratch . Piskel lets you create an 8-bit or pixelated sprite and even animate it. To create an animated sprite, you’ll want to develop a frame for each movement. A frame toolbar in Piskel lets you easily create a frame for a standing sprite or a series of images to make it look as though your sprite is running, jumping, or flipping. When you’re finished creating the frames or series of images for your sprite, export them by savin...