🎃 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
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
It is a serial communicator(controller, receiver...), communicate with sensor LP20 which is a laser ranger.

Intro It is a serial communicator(controller, receiver...), communicate with sensor LP20 which is a laser ranger. Its datasheet is contained in this r

3 Sep 19, 2022
OctoPrint is the snappy web interface for your 3D printer!

OctoPrint OctoPrint provides a snappy web interface for controlling consumer 3D printers. It is Free Software and released under the GNU Affero Genera

OctoPrint 7.1k Jan 03, 2023
A versatile program that uses the raspberry pi camera and provides it as a service

PiCameleon Is a daemon program meant to provide the RaspberryPi Camera as a service while running according to a configuration.

André Esser 52 Oct 16, 2022
A python script for macOS to enable scrolling with the 3M ergonomic mouse EM500GPS in any application.

A python script for macOS to enable scrolling with the 3M ergonomic mouse EM500GPS in any application.

3 Feb 19, 2022
Simple Python script to decode and verify an European Health Certificate QR-code

A simple Python script to decode and verify an European Health Certificate QR-code.

Mathias Panzenböck 61 Oct 05, 2022
Automatically draw a KiCad schematic for a circuit prototyped on a breadboard.

Schematic-o-matic Schematic-o-matic automatically draws a KiCad schematic for a circuit prototyped on a breadboard. How It Works The first step in the

Nick Bild 22 Oct 11, 2022
Monitor Live USB Plug In & Plug Out Events

I/O - Live USB Monitoring Author: Jonathan Scott @jonathandata1 Date: 3/13/2021 CURRENT VERSION 1.0 This is just a simple bash script that calls a pyt

Jonathan Scott 17 Dec 03, 2022
LT-OCF: Learnable-Time ODE-based Collaborative Filtering, CIKM'21

LT-OCF: Learnable-Time ODE-based Collaborative Filtering Our proposed LT-OCF Our proposed dual co-evolving ODE Setup Python environment for LT-OCF Ins

Jeongwhan Choi 15 Dec 28, 2022
Detic ros - A simple ROS wrapper for Detic instance segmentation using pre-trained dataset

Detic ros - A simple ROS wrapper for Detic instance segmentation using pre-trained dataset

Hirokazu Ishida 12 Nov 19, 2022
3D-printable hexagonal mirror array capable of reflecting sunlight into arbitrary patterns

3D-printable hexagonal mirror array capable of reflecting sunlight into arbitrary patterns

Ben Bartlett 2.3k Dec 30, 2022
The software that powers the sPot: a 4th generation

This code is meant to accompany this project in which a Spotify client is built into an iPod "Classic" from 2004. Everything is meant to run on a Raspberry Pi Zero W.

Guy Dupont 683 Dec 28, 2022
A simple program to make MSI Modern 15 speaker and microphone mute led work.

MSI Modern 15 sound led fixup for linux A simple program to fix the MSI Modern 15 speaker and microphone mute LEDs. Installation Requirements pulsectl

Seyed Danial Movahed 4 Oct 18, 2022
Parametric open source reconstructions of Voron printed parts

The Parametric Voron This repository contains Fusion 360 reconstructions of various printed parts from the Voron printers

Matthew Lloyd 26 Dec 19, 2022
Simple python3 implementation of microKanren with lots of type annotations for clarity

MicroKanren-py This is (yet another) python implementation of microKanren. It's a reasonably 1:1 translation of the code provided in the paper, but ev

Erik Derohanian 3 Dec 10, 2022
Switch predictor for Home Assistant with AppDeamon

Home Assistant AppDeamon - Event predictor WORK IN PROGRESS - CURRENTLY NOT COMPLETE AND NOT WORK This is an idea under development (when I have free

37 Dec 17, 2022
智能无人机路径规划仿真系统是一个具有操作控制精细、平台整合性强、全方向模型建立与应用自动化特点的软件

Drone智能无人机路径规划仿真系统是一个具有操作控制精细、平台整合性强、全方向模型建立与应用自动化特点的软件。它以A、B两国在C区开展无人机战争为背景,该系统的核心功能是通过仿真平台规划无人机航线,并进行验证输出,数据可导入真实无人机,使其按照规定路线精准抵达战场任一位置,支持多人多设备编队联合行动。

wwy 349 Jan 03, 2023
Poupool is an overflow swimming pool control software

Poupool - The swimming pool controller Poupool is a swimming pool control software. It is based on Transitions, Pykka and Paho MQTT. The user interfac

Cyril Jaquier 8 Jul 18, 2022
Universal Xiaomi MIoT integration for Home Assistant

Xiaomi MIoT Raw 简体中文 | English MIoT 协议是小米智能家居从 2018 年起推行的智能设备通信协议规范,此后凡是可接入米家的设备均通过此协议进行通信。此插件按照 MIoT 协议规范与设备通信,实现对设备的状态读取及控制。

1.9k Jan 02, 2023
Scripts for measuring and displaying thermal behavior on Voron 3D printers

Thermal Profiling Measuring gantry deflection and frame expansion This script runs a series of defined homing and probing routines designed to charact

Jon Sanders 30 Nov 27, 2022