Tri-Color USB Controlled Hemisphere Alarm Light with Buzzer

SKU: ADA5126 Brand: Adafruit
With this USB Controlled Round Lamp with Buzzer, you can easily monitor and alert humanoids as to the status of a project, machine, or even if...
$204.95 AUD, inc GST
$186.32 AUD, exc GST

Available with a lead time
Expect dispatch between May 17 and May 20

Quantity Discounts:

  • 5-10 $178.86 (exc GST)
  • 10+ $173.27 (exc GST)
- +

0 from local stock, 1 supplier stock; your order will dispatch between Dec 1 to Dec 10. And yes, stock levels and lead times are accurate!

Shipping:

  • $6+ Standard (5+ days*, tracked)
  • $10+ Express (2+ days*, tracked)
  • FREE Pickup (Newcastle only - must order online*)

Shipping costs may increase for heavy products or large orders.

Exact shipping can be calculated on the view cart page.

*Conditions apply, see shipping tab below.

With this USB Controlled Round Lamp with Buzzer, you can easily monitor and alert humanoids as to the status of a project, machine, or even if the bathroom is occupied!

Unlike Adafruit's "12V" style tower lights, no wiring or microcontroller programming is required. It's completely plug-and-play for use with any computer that has a USB port, even a Raspberry Pi SBC - so they recommend it when you just want to get something running and don't want to noodle around with 12V power plugs and transistors. 

The buzzer light is powered and controlled over USB, so just plug it right in. Inside is a microcontroller connected over a CH43x USB-to-UART chip, so you'll need to install a CH43x driver for the COM/Serial port to show up.

Once the serial port is created, connect to it over 9600 baud and send command codes to turn on and off the LEDs and enable/disable the buzzer. There's also a blink command, so you don't have to continuously turn on/off the LED to have a pulsing/blinking effect. See below for an example Python script that will toggle everything on/off to test.

Technical Details

 

Python code example to control the lamp over USB:

"""Example for Adafruit USB tower light w/alarmdon't forget to `pip install pyserial` or `pip3 install pyserial`"""

import serial
import time

serialPort = 'COM57'  # Change to the serial/COM port of the tower light
baudRate = 9600

RED_ON = 0x11
RED_OFF = 0x21
RED_BLINK = 0x41

YELLOW_ON= 0x12
YELLOW_OFF = 0x22
YELLOW_BLINK = 0x42

GREEN_ON = 0x14
GREEN_OFF = 0x24
GREEN_BLINK = 0x44

BUZZER_ON = 0x18
BUZZER_OFF = 0x28
BUZZER_BLINK = 0x48

def sendCommand(serialport, cmd):    
    serialport.write(bytes([cmd]))

if __name__ == '__main__':
    mSerial = serial.Serial(serialPort, baudRate)

    # Clean up any old state
    sendCommand(mSerial, BUZZER_OFF)
    sendCommand(mSerial, RED_OFF)
    sendCommand(mSerial, YELLOW_OFF)
    sendCommand(mSerial, GREEN_OFF)

    # Turn on each LED set in order
    sendCommand(mSerial, RED_ON)
    time.sleep(0.5)

    sendCommand(mSerial, RED_OFF)
    sendCommand(mSerial, YELLOW_ON)
    time.sleep(0.5)
    
    sendCommand(mSerial, YELLOW_OFF)
    sendCommand(mSerial, GREEN_ON)
    time.sleep(0.5)

    sendCommand(mSerial, GREEN_OFF)

    # Beep!
    sendCommand(mSerial, BUZZER_ON)
    time.sleep(0.1)
    sendCommand(mSerial, BUZZER_OFF)

    # Use the built-in blink modes
    sendCommand(mSerial, RED_BLINK)
    time.sleep(3)
    sendCommand(mSerial, RED_OFF)

    sendCommand(mSerial, YELLOW_BLINK)
    time.sleep(3)
    sendCommand(mSerial, YELLOW_OFF)

    sendCommand(mSerial, GREEN_BLINK)
    time.sleep(3)
    sendCommand(mSerial, GREEN_OFF)

    # Please be kind, rewind!
    sendCommand(mSerial, BUZZER_OFF)
    sendCommand(mSerial, RED_OFF)
    sendCommand(mSerial, YELLOW_OFF)
    sendCommand(mSerial, GREEN_OFF)

    mSerial.close()

Product Weight: 128.0g / 4.5oz

Product Comments

Exact shipping can be calculated on the view cart page (no login required).

Products that weigh more than 0.5 KG may cost more than what's shown (for example, test equipment, machines, >500mL liquids, etc).

We deliver Australia-wide with these options (depends on the final destination - you can get a quote on the view cart page):

  • $3+ for Stamped Mail (typically 10+ business days, not tracked, only available on selected small items)
  • $6+ for Standard Post (typically 6+ business days, tracked)
  • $10+ for Express Post (typically 2+ business days, tracked)
  • Pickup - Free! Only available to customers who live in the Newcastle region (must order online and only pickup after we email to notify you the order is ready). Orders placed after 2PM may not be ready until the following business day.

Non-metro addresses in WA, NT, SA & TAS can take 2+ days in addition to the above information.

Some batteries (such as LiPo) can't be shipped by Air. During checkout, Express Post and International Methods will not be an option if you have that type of battery in your shopping cart.

International Orders - the following rates are for New Zealand and will vary for other countries:

  • $11+ for Pack and Track (3+ days, tracked)
  • $16+ for Express International (2-5 days, tracked)

If you order lots of gear, the postage amount will increase based on the weight of your order.

Our physical address (here's a PDF which includes other key business details):

Unit 18, 132 Garden Grove Parade
Adamstown
NSW, 2289
Australia

Take a look at our customer service page if you have other questions such as "do we do purchase orders" (yes!) or "are prices GST inclusive" (yes they are!). We're here to help - get in touch with us to talk shop.

Have a product question? We're here to help!

Write Your Own Review

Guides

The Maker Revolution

The Maker Revolution celebrates the creation of new devices and the modification of existing ones - ...
The Maker Revolution celebrates the creation of new devices and the modification of existing ones - ...

Projects

Analogue Quad Oscillator Drone Synth

I have a peer-reviewed study on my desk and it confidently tells me that all the capacitors...
I have a peer-reviewed study on my desk and it confidently tells me that all the capacitors...

Raspberry Pi Microscope

The Raspberry Pi Microscope was put together to help with soldering PCBs that have small surface mo...
The Raspberry Pi Microscope was put together to help with soldering PCBs that have small surface mo...

Accurate IoT Clock With ESP8266

Being punctual is important. Hence accurate time is required. Clocks tend to miss out when it comes...
Being punctual is important. Hence accurate time is required. Clocks tend to miss out when it comes...
Feedback

Please continue if you would like to leave feedback for any of these topics:

  • Website features/issues
  • Content errors/improvements
  • Missing products/categories
  • Product assignments to categories
  • Search results relevance

For all other inquiries (orders status, stock levels, etc), please contact our support team for quick assistance.

Note: click continue and a draft email will be opened to edit. If you don't have an email client on your device, then send a message via the chat icon on the bottom left of our website.

Makers love reviews as much as you do, please follow this link to review the products you have purchased.