Wiz Smart Lighting
Affordable smart lighting by Signify (makers of Philips Hue). FaustBot integrates with Wiz to control your lights, create scenes, and sync with your stream in real-time.
View Integration GuideWhat You Can Do With FaustBot
FaustBot provides deep integration with Wiz, giving you full control through actions, triggers, and scripting.
Light Control
Scenes
Rooms
Scripting Examples
# Change light color on channel point redemption
def Execute():
color = CPH.GetArg("color")
if color == "red":
CPH.WizSetColor("Desk Light", 255, 0, 0)
elif color == "blue":
CPH.WizSetColor("Desk Light", 0, 0, 255)
CPH.WizSetBrightness("Desk Light", 100)
return True# Apply scene based on stream category
def Execute():
category = CPH.GetArg("category")
if "Horror" in category:
CPH.WizApplyScene("Desk Light", "Spooky")
elif "Just Chatting" in category:
CPH.WizApplyScene("Desk Light", "Cozy")
else:
CPH.WizApplyScene("Desk Light", "Focus")
return True# Control room lighting for stream states
def Execute():
state = CPH.GetArg("streamState")
if state == "live":
CPH.WizSetRoomScene("Studio", "Streaming")
CPH.WizSetRoomBrightness("Studio", 80)
elif state == "offline":
CPH.WizSetRoomScene("Studio", "Relax")
CPH.WizSetRoomBrightness("Studio", 40)
return TrueSmart Lighting Products
Budget-friendly smart lighting with powerful features and easy setup.
Wiz A19 Smart Bulb
Versatile smart bulb with millions of colors and tunable white light for any room.
- 16 million colors
- Tunable white (2200K-6500K)
- Wi-Fi connected
- 800 lumens output
Wiz BR30 Smart Bulb
Recessed lighting smart bulb perfect for ceilings and downlighting applications.
- BR30 form factor
- Dimmable
- Works with voice assistants
- 650 lumens output
Wiz Light Strip
Flexible LED strip for accent lighting, backlighting, and ambient effects.
- 2 meter length
- Extendable
- Adhesive backing
- Cuttable design
Wiz Smart Plug
Control any lamp or device with scheduling, timers, and automation.
- Remote on/off control
- Scheduling support
- Energy monitoring
- Compact design
What FaustBot Can Do
Control your Wiz smart lights directly from stream events. Set colors, adjust brightness, and activate scenes automatically.
Actions
- Set Color Set any RGB color on your Wiz lights
- Set Brightness Adjust brightness from 0-100%
- Set Scene Activate built-in Wiz scenes (Cozy, Party, Focus, etc.)
- Toggle Power Turn lights on or off
Triggers
Output only — controlled via actions
Examples
def Execute():
# Flash green for new sub
CPH.WizSetColor("Desk Light", 0, 255, 0)
CPH.WizSetBrightness("Desk Light", 100)
CPH.Wait(300)
CPH.WizSetBrightness("Desk Light", 50)
CPH.Wait(300)
CPH.WizSetBrightness("Desk Light", 100)
return Truedef Execute():
category = CPH.GetArg("category")
if "Horror" in category:
CPH.WizApplyScene("Studio", "Spooky")
elif "Just Chatting" in category:
CPH.WizApplyScene("Studio", "Cozy")
else:
CPH.WizApplyScene("Studio", "Focus")
return TrueReady to Connect Your Wiz Lights?
FaustBot makes it easy to integrate your Wiz smart lighting into powerful stream automations.