Control WiZ smart bulbs from Windows locally along with f.lux unofficial support
- HSV color picker with live preview
- 5 preset slots
- 2200K to 6500K range
- 5 preset slots
- Auto-sync bulbs to f.lux color temperature
- HTTP bridge listens on localhost
- Control up to 5 bulbs simultaneously
- Per-feature targeting (choose which bulbs respond)
- Individual power controls
- Batch operations (All ON/OFF)
- Minimizes to tray instead of closing
- Quick access from notification area
Download the installer:
- Go to Releases
- Download
WizControl_Setup.exe - Run installer
- Launch from desktop shortcut or Start Menu
Requirements:
- Windows 10/11
- Bulbs connected to same network as PC
Note: This app controls bulbs over your local network, not through WiZ cloud servers. Your bulbs stay on your network.
You need to enable local communication and get the IP address for each bulb:
- Open the WiZ V2 app → Home tab
- Tap "..." (three dots) in top right → Settings
- Go to Security in "My room (or whatebvery your room is called)"
- Enable "Allow local communication"
- Go back → Clock on Lights → select a bulb
- Tap the dropdown icon on the right
- Tap "Device info" → copy the IP address
- Repeat steps 5-7 for all your bulbs (up to 5)
- Make sure "Allow local communication" is enabled for all Rooms you want to control
- Click
+to add bulb slots
- Enter the IP addresses you copied from the WiZ app
- Use "Status" button to verify connection
- Select target bulbs using "Send to" dropdown
-
Open f.lux → Options and Smart Lighting → Connected Lighting

-
Set URL:
http://localhost:8888or other ports
WizControl can be controlled from command line by:
# Turn on specific bulbs
WizControl.exe --on 1 2 3
# Turn on all bulbs
WizControl.exe --on all
WizControl.exe --on
# Turn off bulbs
WizControl.exe --off 1 2
WizControl.exe --off all# Set HSV color (H: 0-360, S: 0-100, V: 0-100)
WizControl.exe --color 120 100 80 --bulbs 1 2
WizControl.exe --color 240 50 100 --bulbs all
# Set color temperature (2200-6500 Kelvin)
WizControl.exe --cct 3500 --bulbs 1
WizControl.exe --cct 6500 --bulbs all
# Set brightness (0-100%)
WizControl.exe --brightness 50 --bulbs 1 2
WizControl.exe --brightness 100 --bulbs all# Turn on all bulbs with warm white
WizControl.exe --on all --cct 2700
# Set bulb 1 to red at 50% brightness
WizControl.exe --color 0 100 50 --bulbs 1
# Turn off bulbs 2 and 3
WizControl.exe --off 2 3- Bulbs must be configured in GUI first
- Bulb/light numbers are 1-5 (matching slot numbers in GUI)
- CLI mode doesn't launch GUI
