> **Source:** Core Electronics is an Australian maker-electronics retailer and manufacturer based in Newcastle, NSW, run by a team of makers and educators. We design and manufacture our own product lines (PiicoDev, CE originals) and are official retailers for iconic maker and industrial brands including Raspberry Pi, Arduino, Adafruit, SparkFun and DFRobot. Orders ship Australia-wide from our Newcastle warehouse. Prices are in AUD and include GST. Pricing, stock and dispatch on this page are generated from the store's live catalog. Full machine-readable index: https://core-electronics.com.au/llms.txt

# Tri-Color USB Controlled Tower Light with Buzzer

**Type:** Product page · **SKU:** ADA5125 · **Brand:** [Adafruit](https://core-electronics.com.au/brands/adafruit-australia)
**Page:** https://core-electronics.com.au/tri-color-usb-controlled-tower-light-with-buzzer.html ([markdown](https://core-electronics.com.au/tri-color-usb-controlled-tower-light-with-buzzer.html.md))

With this Tri-Color USB Controlled Tower Light with Buzzer, you can easily monitor and alert humanoids as to the status of a project, machine, or even if...

## Pricing

- **Price:** $164.95 (inc GST) — $149.95 AUD, exc GST
- **Quantity discounts:** 10+ $145.45 (exc GST) · 50+ $142.45 (exc GST)

## Availability & dispatch

- In stock, ships same business day if ordered before 2PM (Australia/Sydney).
- We can dispatch 1 today, and up to 500 more in 8–12 days.

## How to buy

- **Build a cart:** compose `https://core-electronics.com.au/cart/link?items=ADA5125:1` (comma-separated SKU:qty pairs) and share the link. Opening it shows a confirmation page with live pricing and stock before anything is added to the cart.
- **Verify the cart first:** fetch `https://core-electronics.com.au/cart/link/ADA5125:1.md` for live line prices (inc & exc GST, quantity discounts applied), stock and dispatch estimates, and totals. Append `/to/{AU-postcode}` (or `/to/{country-code}:{postcode}`) before `.md` for delivery options and prices to that destination. Unknown, retired, or out-of-stock SKUs are flagged. (Query form `cart/link.md?items=...` also works but some robots parsers refuse query strings here.)
- **Checkout** is completed on-site and includes a captcha at the payment step. Share the cart link; checkout takes it from there.
- **Search the catalogue:** `https://core-electronics.com.au/search/{query}.md` (URL-encode the query; pages 2-3 at `search/{query}/{page}.md`; `search.md?q=` also works)
- **Payment methods, purchase orders, policies and contact details:** https://core-electronics.com.au/llms.txt
## Description

##  Description 

With this **Tri-Color USB Controlled Tower Light 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 other [tower lights](https://core-electronics.com.au/search/?q=tower+light), 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. It's also got a great adjustable-angle body and three mounting holes on the base for easy installation.

The tower 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 red, yellow and green 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 

**Dimensions:**

- Overall length: 25.4cm / 10"
- Lamp diameter: 4.8cm / 1.8"
- Lamp base diameter: ~9cm / 3.5"
- USB cable length: 1.3m / ~50"

**Python code example to control the lamp over USB:**

```
"""

Example for Adafruit USB tower light w/alarm

don't forge to `pip install pyserial` or `pip3 install pyserial`

"""

import serial

import time

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

#serialPort = '/dev/USBserial0'  # on mac/linux, it will be a /dev path

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, re-wind!

    sendCommand(mSerial, BUZZER_OFF)

    sendCommand(mSerial, RED_OFF)

    sendCommand(mSerial, YELLOW_OFF)

    sendCommand(mSerial, GREEN_OFF)

    mSerial.close()
```

## Images

- [Product image 1](https://core-electronics.com.au/media/catalog/product/i/m/image_2628.jpg)
