🎃 Some spooky code samples to hack yourself a pumpkin 👻

Overview

🎃 Tech Or Treat 👻

It's spooky season for those who celebrate Halloween, and to get in the spirit (spirit - get it? 👻 ) we thought it would be fun to hack on some pumpkins and power them with some electronics and IoT goodness!

We'll be live streaming our pumpkin hacks on the Microsoft Reactor, so watch along with us, or catch the recording if you are busy haunting a house or doing the monster mash!

You can register for the live stream at the following link:

Register here

Hacking your own pumpkin

We've included some samples and instructions here should you want to hack your own pumpkin. These samples are in Python and C#.

Show me the samples!

Hardware

We've based these samples on the following hardware:

Parts List:

Proximity Sensors:

Other Ways to Expand Your Project:

  • Smartphone: to display a video or image inside your creation!
  • An Azure Subscription

Setting up your Pi

You can use the Raspberry Pi Imager to install the Raspberry Pi OS if you don't already have it installed. If you want to develop directly on the Pi, you can use the full desktop Raspberry Pi OS, but if you want to develop remotely you can use Raspberry Pi Lite.

Before you start the imaging process, you can configure things like WiFi which makes it easier to connect to your Pi remotely. The way to do this is not obvious currently in the Imager. To bring up the configuration dialog press Ctrl+Shift+X. In this dialog enable SSH so you can remote support your Pi, and configure your WiFi.

To code on your Pi, you can use Visual Studio Code. This can run on your Pi if you want to connect your Pi to a keyboard/monitor/mouse. Alternatively you can connect to your Pi using the Remote SSH extension and develop on VS Code from your PC or Mac. You will need to install the relevant extensions for the programming language you are using.

Wiring WS2812B LEDs

WS2812B LEDs (also known as NeoPixels) are strings of multi-color, fully programmable LEDs. You can connect a string of these to a device like a Pi using the GPIO pins, and control the color of individual LEDs. They are addressable LEDs, so each LED has an address that starts at 0 for first LED on the string. You can have as many LEDs as you want - limited only by the available power supply and the size of an integer! To add more, you attach more to the end of the string, and they automatically pick up the next address.

For example, if you have a string of 4 LEDs, they would be addresses 0-3. Add 4 more on the end, and those would be addresses 4-7. They detect their address automatically, you just need to connect them.

These LEDs run on 5V. Although a Raspberry Pi can provide 5V, the power draw of anything more than a few LEDs is too much for the Pi, and you would risk damaging your Pi. The simplest way to power these is via a 5V power supply, either connected to mains power, or connected to a USB power supply.

The LEDs have 3 connections - 5V, Control and Ground. On the LEDs linked above, there are 2 5V wires and 2 Ground wires. These LED strips are one way, LED stands for Light-emitting diode, and a diode is an electrical component that only allows current to go one way. The strips will be labelled with an arrow showing the direction of the LEDs, the start of the arrow is the start of the strip and the wires you connect your Pi to.

A roll of LEDs with the arrow showing the direction of the LEDs

In the image above there is a roll of LEDs, with the start of the roll showing. This roll starts with connection wires:

  • 3 wires connected to a plug, with a red wire for 5V, green wire for control and a black wire for Ground.
  • 2 wires not connected to the plug, a red wire for 5V, and a black wire for Ground.

The arrow shows the direction of the addresses, so you connect the outer wires at the start of the arrow. You can also cut the strips to a required length. Each LED has connections to the next one that can be cut, and you can use the offcuts in another project by soldering wires onto the exposed connectors.

An LED strip showing the connectors between each LED

In the image above, each LED element in the strip is separated by a black line, and is connected to the LEDs either side with oval copper connectors. To cut the strip, cut along the black line cutting the 3 oval connectors in half. To connect LED offcuts, you can solder wires to the oval connectors for the 5V, control and ground connections.

To wire the LEDs, you need 2 circuits, power and control. The power circuit provides the power to light the LED, the control circuit allows you to control the LEDs.

Power circuit

This is the 5V of power to light the LEDs. For a few LEDs, this can come directly from the Pi, but it is better to use an external power supply. The power supply linked above is great for this, but any 5V power supply with screw terminal connectors will work.

You can use a USB to terminal block cable, and connect these to a USB power supply, but don't use the USB ports on the Pi to power the LEDs. The draw is too high.

Using pin to pin jumper wires, connect the red wire on the connector of the LED strip to the positive terminal of the power supply. Connect the black wire to the negative terminal.

The red wire going into the connector on the LEDs connected the positive terminal of the power supply, and the black wire going into the connector connected to the negative terminal

Control circuit

The control circuit allows your Pi to send messages to the LEDs to control them. This needs to be a compete circuit, from a GPIO pin on the Pi sending the control messages, returning to a ground pin on the Pi.

To connect the control wire, use a pin to connector jumper cable to connect the middle (green) wire on the LED connector block to the GPIO pins.

  • If you are using the Python samples, connect the control wire to pin 18, This is the 6th pin from the SD card slot end on the outside line of GPIO pins.

    The control wire on pin 18 and the ground wire on a ground pin on the Pi

  • If you are using the .NET samples, connect the control wire to pin 10, This is the 10th pin from the SD card slot end on the inside line of GPIO pins.

    The control wire on pin 18 and the ground wire on a ground pin on the Pi

You can see the location of all the pins in the Raspberry Pi GPIO documentation.

To connect the ground to complete the circuit, you need to connect one of the ground GPIO pins to the ground wire of the LED strip. If you are using LED strip linked above, then there is a second ground wire not connected to the LEDs you can use. Strip the end of the black wire, and wrap it around the pin end of a pin to connector jumper wire, fixing it in place with tape. Then connect the other end to one of the Pi's GPIO ground pins, such as the one 3rd from the SD card end of the Pi on the outside edge.

If you are using different LEDs you may need to convert the single ground wire into 2 using multiple wires.

Using Grove sensors

If you want to use Grove sensors with you Pi, you first need to fit the Grove Pi Hat. Fit this onto the Pi over the GPIO pins. You can then connect the LED strip to the pins at the same location on the hat.

The Pi with a Grove hat and the LED pins connected

Once the hardware is installed, you need to install the Grove drivers by following the Seeed Wiki instructions.

Installing your Pi in a pumpkin

The inside of pumpkins is wet, and electronics do not like wet stuff! You should do one of the following:

  • Just put the LEDs inside the pumpkin and leave the Pi outside the pumpkin. You should wrap any bare wires on the LED strip in tape to waterproof them.

    You should only do this if the LED strip is waterproof. The one lined above is waterproof.

  • Wrap everything in a clear plastic bag and seal this against the pumpkin. If you need any holes for power cables and the like, make sure the holes are wrapped in tape to protect them.

You should also make sure that your pumpkin is safe from thieves, wildlife or the elements. We don't want your gadgets getting stolen, eaten by bears or rained on.

Samples

Python samples

These code samples require Python 3 to be installed on your Pi.

You can find all the Python samples in the python folder. Each sample contains 2 files:

  • requirements.txt - a Pip requirements file with all the Pip packages needed for the sample
  • app.py - a Python file containing the code for the sample

When you install the Pip packages, you need to use Python 3 and install using sudo.

sudo pip3 install -r requirements.txt

A default Raspberry Pi OS install may not include Pip. If not use the following command to install everything you need:

sudo apt update && sudo apt install python3-pip python3-dev --yes

To access the LED strips, you need to run the code as sudo.

sudo python3 app.py

The LED samples use the Adafruit NeoPixel library, so in the code you will see each LED referred to as a 'pixel'.

Each LED sample sets the brightness of the pixels, on a scale of 0-1. How bright you can set the pixels depends on what color and the power available. If the brightness is too high for the available power, the pixels will not light up. If you need brighter pixels, you may need a higher amperage power supply. For example, using a USB terminal block with a 1A USB plug won't support as high a brightness as a 2.5A power block. It is advisable to use a power pack like the one linked above that supports higher amperages if you want to light long strips at full brightness.

If your pixels don't light up, as well as checking the power and connections, also try a lower brightness value.

Sample Description
single-pixel Lighting a single pixel
multiple-pixels-same Lighting multiple pixels in the same color
multiple-pixels Lighting multiple pixels in different colors
animated-pixels Lighting multiple pixels to animate colors
spooky-sounds Playing spooky sounds through a speaker
distance-sensor How to detect movement using a distance sensor
internet-control Control your pumpkin via Azure IoT Central

.NET samples

You can find all the .NET samples in the dotnet folder.

These LEDs are often referred to as NeoPixels, and the Ws2812b refers to each LED as a pixel. You will see this naming convention used in the code.

Sample Description
get-started Getting started with LEDs by lighting multiple pixels in the same color
bouncing A bouncing light
wave Light the lights in a sine wave
image-scan Change the color of the lights to follow the colors in an image
Owner
Jim Bennett
I do things with IoT and academic advocacy in the Developer Relations team at @Microsoft. He/Him
Jim Bennett
ROS2 nodes for Waveshare Alphabot2-Pi mobile robot.

ROS2 for Waveshare Alphabot2-Pi This repo contains ROS2 packages for the Waveshare Alphabot2-Pi mobile robot: alphabot2: it contains the nodes used to

Michele Rizzo 2 Oct 11, 2022
Robot Framework keyword library wrapper for atlassian-python-api

Robot Framework keyword library wrapper for atlassian-python-api

Marcin Koperski 3 Jul 29, 2022
A custom mechanical keyboard inspired by the CFTKB Mysterium

Env-KB A custom mechanical keyboard inspired by the CFTKB Mysterium Build Guide and Parts List What is to do? Right now for the first 5 PCBs I have, i

EnviousData 203 Jan 04, 2023
BoneIO is a compact IO controller for home automation.

Project description BoneIO is a compact IO controller for home automation. Main features of this controller are Compact size (27x11x6)cm - 15 DIN modu

Maciej Krasuski 120 Nov 30, 2022
Examples to accompany the

Examples to accompany the "Raspberry Pi Pico Python SDK" book published by Raspberry Pi Trading, which forms part of the technical documentation in support of Raspberry Pi Pico and the MicroPython po

Raspberry Pi 589 Jan 08, 2023
Simple Weather Check base on Hefeng api, Work on raspberry Pi

Simple Weather Check base on Hefeng api, Work on raspberry Pi

Retr0mous 28 Sep 17, 2022
Implemented robot inverse kinematics.

robot_inverse_kinematics Project setup # put the package in the workspace $ cd ~/catkin_ws/ $ catkin_make $ source devel/setup.bash Description In thi

Jianming Han 2 Dec 08, 2022
Repo for the esp32s2 version of the Wi-Fi Nugget

Repo for the esp32s2 version of the Wi-Fi Nugget

HakCat 30 Nov 05, 2022
A Simple Python KeyLogger App

✨ Kurulum Uygulamayı bilgisayarınızda kullana bilmek için bazı işlemler yapmanız gerekiyor. Aşağıdaki yönlendirmeleri takip ederek bunu yapabilirsiniz

VorteX 7 Jun 11, 2022
CircuitPython Driver for Adafruit 24LC32 I2C EEPROM Breakout 32Kbit / 4 KB

Introduction CircuitPython driver for Adafruit 24LC32 I2C EEPROM Breakout Dependencies This driver depends on: Adafruit CircuitPython Bus Device Regis

foamyguy 0 Dec 20, 2021
A ch341dll Wrap is for using in Python 32bits windows to access I2C SPI and MDIO (by GPIO), and Demo with display PC sreen on OLED by i2c or SPI .

ch341dll_wrap_typcal_app A ch341dll Wrap is for using in Python 32bits windows to access I2C SPI and MDIO (by GPIO). In addition, I provided 3 Demo. I

13 Jan 02, 2023
What if home automation was homoiconic? Just transformations of data? No more YAML!

radiale what if home-automation was also homoiconic? The upper or proximal row contains three bones, to which Gegenbaur has applied the terms radiale,

Felix Barbalet 21 Mar 26, 2022
A battery pack simulation tool that uses the PyBaMM framework

Overview of liionpack liionpack takes a 1D PyBaMM model and makes it into a pack. You can either specify the configuration e.g. 16 cells in parallel a

PyBaMM Team 40 Jan 05, 2023
Point Density-Aware Voxels for LiDAR 3D Object Detection (CVPR 2022)

PDV PDV is LiDAR 3D object detection method. This repository is based off [OpenPCDet]. Point Density-Aware Voxels for LiDAR 3D Object Detection Jordan

Toronto Robotics and AI Laboratory 114 Dec 21, 2022
An embedded application for toy-car controlling based on Raspberry Pi 3 Model B and AlphaBot2-Pi.

An embedded application for toy-car controlling based on Raspberry Pi 3 Model B and AlphaBot2-Pi. This is the source codes of my programming assignmen

StardustDL 4 Oct 19, 2022
CPU benchmark by calculating Pi, powered by Python3

cpu-benchmark Info: CPU benchmark by calculating Pi, powered by Python 3. Algorithm The program calculates pi with an accuracy of 10,000 decimal place

Alex Dedyura 20 Jan 03, 2023
Kwcpu - An unobtrusive CPU meter that fits in the default Windows 11 taskbar. Supports up to 32 cores.

kwcpu An unobtrusive CPU meter that fits in the default Windows 11 taskbar. Supports up to 32 cores. kwcpu is provided as a Rainmeter skin. By default

Jay Oster 2 Nov 07, 2022
Raspberry Pi Pico support for VS Code

Pico-Go VS Code Extension Pico-Go provides code auto-completion and allows you to communicate with your Raspberry Pi Pico board using the built-in REP

Chris Wood 114 Dec 28, 2022
ENC28J60 Ethernet chip driver for MicroPython (RP2)

micropy-ENC28J60 ENC28J60 Ethernet chip driver for MicroPython v1.17 (RP2) Rationale ENC28J60 is a popular and cheap module for DIY projects. At the m

11 Nov 16, 2022
Volkswagen ID component for Home Assistant

Volkswagen ID component for Home Assistant This folder contains both a generic Python 3 library for the Volkswagen ID API and a component for Home Ass

55 Jan 07, 2023