Best Color LED, Wifi & Dimmable Smart Light Bulbs | Wyze Bulb Color (2024)

Skip to product information
  • Best Color LED, Wifi & Dimmable Smart Light Bulbs | Wyze Bulb Color (1)

  • Best Color LED, Wifi & Dimmable Smart Light Bulbs | Wyze Bulb Color (2)

  • Best Color LED, Wifi & Dimmable Smart Light Bulbs | Wyze Bulb Color (3)

  • Best Color LED, Wifi & Dimmable Smart Light Bulbs | Wyze Bulb Color (4)

  • Best Color LED, Wifi & Dimmable Smart Light Bulbs | Wyze Bulb Color (5)

  • Best Color LED, Wifi & Dimmable Smart Light Bulbs | Wyze Bulb Color (6)

  • Best Color LED, Wifi & Dimmable Smart Light Bulbs | Wyze Bulb Color (7)

1 / of 6

Wyze Bulb Color

Live your life in color with our brightest smart bulb.

Style

In stock

'; // Make the HTTP request fetch(apiUrl) .then((response) => response.json()) .then((data) => { // Check if there are predictions if (data.prediction && data.prediction.length > 0) { // Extract and display the prediction value from the first prediction // console.log('raw respose for mostLikely: ' + data.prediction[0].prediction.mostLikely); var predictionDate = new Date(data.prediction[0].prediction.mostLikely + 'T00:00:00'); // console.log('Returned date: ' + predictionDate); var orderWithin = data.prediction[0].prediction.cutoffLocale; const date_options = { timezone: 'America/Los_Angeles', weekday: 'short', month: 'short', day: 'numeric' }; const newPredictionDate = new Intl.DateTimeFormat('en-US', date_options).format(predictionDate); // add a day buffer that we can control const deliveryBuffer = 0; predictionDate.setDate(predictionDate.getDate() + deliveryBuffer); // Calculate tomorrow's date in UTC var tomorrowUTC = new Date(); tomorrowUTC.setDate(tomorrowUTC.getDate() + 1); var userCurrentDate = new Date(); // Display the date in the specified format var dateOptions = { weekday: 'short', month: 'numeric', day: 'numeric' }; // Check if it's tomorrow in UTC relative to the user's time if (predictionDate.getDate() === tomorrowUTC.getDate()) { wyzePrediction = `Get it as soon as tomorrow ${predictionDate.toLocaleDateString('en-US', dateOptions)}`; } else if (predictionDate.getDate() === userCurrentDate.getDate()) { wyzePrediction = `Get it as soon as today ${predictionDate.toLocaleDateString('en-US', dateOptions)}`; } else { wyzePrediction = `Get it as soon as ${predictionDate.toLocaleDateString( 'en-US', dateOptions )} to ${zipCode}`; } // Display the message document.getElementById('wyzePrediction').innerHTML = wyzePrediction; document.getElementById('orderWithin').textContent = 'Order within ' + orderWithin + ''; } else { document.getElementById('wyzePrediction').innerHTML = `Enter a valid zip for delivery estimate`; } }) .catch((error) => { console.error('Error fetching data:', error); // todo setup with rollbar logs console.log('Error fetching delivery date'); document.getElementById('wyzePrediction').textContent = 'Error fetching delivery date.'; document.getElementById('wyzeDeliveryPromise').style = 'display:none'; }); } function showDeliveryPromiseForm() { document.querySelector('#wyzeDeliveryForm').style = 'display:inline-flex'; var wyzeZipCodeInput = document.querySelector('input[id="zipCode"]'); wyzeZipCodeInput.focus(); } function hideDeliveryPromiseForm() { document.querySelector('#wyzeDeliveryForm').style = 'display:none'; } // Check if the variable exists in local storage if (localStorage.getItem('wyze_promise_zip')) { // If it exists, set the input field value to its value document.getElementById('zipCode').value = localStorage.getItem('wyze_promise_zip'); } // Call the getPrediction function setTimeout(function() { let zipCode = document.getElementById('zipCode').value; // Call the function to fetch the prediction data getPrediction(zipCode); }, 500); // 1000 milliseconds = 1 second // Listen for form submission document.getElementById('wyzeDeliveryPromise').addEventListener('submit', function (event) { event.preventDefault(); // Prevent the form from submitting // Get the value from the input field var newZipCode = document.getElementById('zipCode').value; // Update the locally stored variable localStorage.setItem('wyze_promise_zip', newZipCode); // Call the function to fetch the prediction data getPrediction(newZipCode); // hide the form hideDeliveryPromiseForm(); });

OR

Get it as soon as

'; // Make the HTTP request fetch(apiUrl) .then((response) => response.json()) .then((data) => { // Check if there are predictions if (data.prediction && data.prediction.length > 0) { // Extract and display the prediction value from the first prediction // console.log('raw respose for mostLikely: ' + data.prediction[0].prediction.mostLikely); var predictionDate = new Date(data.prediction[0].prediction.mostLikely + 'T00:00:00'); // console.log('Returned date: ' + predictionDate); var orderWithin = data.prediction[0].prediction.cutoffLocale; const date_options = { timezone: 'America/Los_Angeles', weekday: 'short', month: 'short', day: 'numeric' }; const newPredictionDate = new Intl.DateTimeFormat('en-US', date_options).format(predictionDate); // add a day buffer that we can control const deliveryBuffer = 0; predictionDate.setDate(predictionDate.getDate() + deliveryBuffer); // Calculate tomorrow's date in UTC var tomorrowUTC = new Date(); tomorrowUTC.setDate(tomorrowUTC.getDate() + 1); var userCurrentDate = new Date(); // Display the date in the specified format var dateOptions = { weekday: 'short', month: 'numeric', day: 'numeric' }; // Check if it's tomorrow in UTC relative to the user's time if (predictionDate.getDate() === tomorrowUTC.getDate()) { wyzePrediction = `Get it as soon as tomorrow ${predictionDate.toLocaleDateString('en-US', dateOptions)}`; } else if (predictionDate.getDate() === userCurrentDate.getDate()) { wyzePrediction = `Get it as soon as today ${predictionDate.toLocaleDateString('en-US', dateOptions)}`; } else { wyzePrediction = `Get it as soon as ${predictionDate.toLocaleDateString( 'en-US', dateOptions )} to ${zipCode}`; } // Display the message document.getElementById('wyzePrediction').innerHTML = wyzePrediction; document.getElementById('orderWithin').textContent = 'Order within ' + orderWithin + ''; } else { document.getElementById('wyzePrediction').innerHTML = `Enter a valid zip for delivery estimate`; } }) .catch((error) => { console.error('Error fetching data:', error); // todo setup with rollbar logs console.log('Error fetching delivery date'); document.getElementById('wyzePrediction').textContent = 'Error fetching delivery date.'; document.getElementById('wyzeDeliveryPromise').style = 'display:none'; }); } function showDeliveryPromiseForm() { document.querySelector('#wyzeDeliveryForm').style = 'display:inline-flex'; var wyzeZipCodeInput = document.querySelector('input[id="zipCode"]'); wyzeZipCodeInput.focus(); } function hideDeliveryPromiseForm() { document.querySelector('#wyzeDeliveryForm').style = 'display:none'; } // Check if the variable exists in local storage if (localStorage.getItem('wyze_promise_zip')) { // If it exists, set the input field value to its value document.getElementById('zipCode').value = localStorage.getItem('wyze_promise_zip'); } // Call the getPrediction function setTimeout(function() { let zipCode = document.getElementById('zipCode').value; // Call the function to fetch the prediction data getPrediction(zipCode); }, 500); // 1000 milliseconds = 1 second // Listen for form submission document.getElementById('wyzeDeliveryPromise').addEventListener('submit', function (event) { event.preventDefault(); // Prevent the form from submitting // Get the value from the input field var newZipCode = document.getElementById('zipCode').value; // Update the locally stored variable localStorage.setItem('wyze_promise_zip', newZipCode); // Call the function to fetch the prediction data getPrediction(newZipCode); // hide the form hideDeliveryPromiseForm(); });

Final sale. Not eligible for exchange or return.

Wyze Bulb Color went to Mardi Gras, and thought it was drab. It yawned at the Holi Festival in India. It fell asleep at the fireworks show on the 4th of July. Wyze Bulb Color is an insufferable snob, but it's tough to get excited when you're the greatest 16 million color smart bulb on earth.It has a dimmable option, yes, but takes personal offense if you use it.

View full details

Best Color LED, Wifi & Dimmable Smart Light Bulbs | Wyze Bulb Color (8)Best Color LED, Wifi & Dimmable Smart Light Bulbs | Wyze Bulb Color (9)Best Color LED, Wifi & Dimmable Smart Light Bulbs | Wyze Bulb Color (10)Best Color LED, Wifi & Dimmable Smart Light Bulbs | Wyze Bulb Color (11)Best Color LED, Wifi & Dimmable Smart Light Bulbs | Wyze Bulb Color (12)Best Color LED, Wifi & Dimmable Smart Light Bulbs | Wyze Bulb Color (13)Best Color LED, Wifi & Dimmable Smart Light Bulbs | Wyze Bulb Color (14)

  • Best Color LED, Wifi & Dimmable Smart Light Bulbs | Wyze Bulb Color (15)

    Extra Bright 1100 Lumens

  • Best Color LED, Wifi & Dimmable Smart Light Bulbs | Wyze Bulb Color (16)

    16 Million Colors & Tunable White

  • Best Color LED, Wifi & Dimmable Smart Light Bulbs | Wyze Bulb Color (17)

    Accurate Colors 90+ CRI

  • Best Color LED, Wifi & Dimmable Smart Light Bulbs | Wyze Bulb Color (18)

    Automate Sleep Routines

Wyze Bulb Color Specs

Dimensions & Weight

  • 2.5” x 2.5” x 5”
  • 0.31 lbs

Lumens

  • 30-1100

Color Temperature

  • 1800K - 6500K

Color Rendering Index

  • 90+

Power

  • 12 watts

Working Voltage

  • AC 120V~60 Hz

Bulb Shape

  • A19

Base Type

  • E26

Life Expectancy

  • 25,000 Hours

Connectivity & Compatibility

  • 802.11 b/g/n, 2.4GHz, Bluetooth
  • Phone Compatibility: Android 9.0+, iOS 15.0+
  • Integrations: Alexa, Google Assistant, IFTTT

Weather & Temperature

  • Suitable for damp locations
  • Not for use in totally enclosed luminaires
  • Operating temp: -4°F - 104°F

Operating Humidity

  • 0-85%

Regulatory & Compliance

  • Energy Star
  • CUL
  • UL
  • FCC
  • IC
  • CA Title 20
  • Prop 65
  • ES

Wyze Bulb Color 2 Pack

  • Wyze Bulb Color x 2
  • Quick Start Guide x 1

Wyze Bulb Color 4 Pack

  • Wyze Bulb Color x 4
  • Quick Start Guide x 1

Wyze Bulb Color should only be dimmed from the Wyze app or via a voice assistant. We do not recommend installing Wyze Bulbs on a dimmer switch, but if you must, make sure the switch is at full power.

Wyze Bulb Color is rated for use in damp locations, but shouldn’t be directly exposed to the elements or used in a fully enclosed luminary. It can operate in -4°F - 104°F.

You can locally control your lights via the Wyze app as long as your phone and Wyze Bulb Color are on the same network, even if that network is not connected to the internet.

Yes, Wyze Bulb Color can be grouped with Wyze Bulb White and Wyze Light Strips.

Nope! Just a 2.4GHz WiFi connection.

Music Mode syncs your lights to the beat of the music using the microphone in the Wyze Light Strip controller (sold separately). To enable Music Mode simply add Wyze Bulb Color to a Light Strip Group in the Wyze app.

Brighter. Dimmer. Better.

Most color bulbs max out at 800lm. Tune ours brighter (1100lm/75W), dimmer (30lm/2W), or anywhere between with a wide-ranging lumen output that’s as intense or as subtle as you need.

Best Color LED, Wifi & Dimmable Smart Light Bulbs | Wyze Bulb Color (19)

Best Color LED, Wifi & Dimmable Smart Light Bulbs | Wyze Bulb Color (20)

16 million colors

Whether it’s game day or wine night, precise color control in the Wyze app lets you turn moments into memories.

Best Color LED, Wifi & Dimmable Smart Light Bulbs | Wyze Bulb Color (21) Best Color LED, Wifi & Dimmable Smart Light Bulbs | Wyze Bulb Color (22)

Game Day

Wine Night

Create custom presets to instantly change scenes with just a tap.

Fort Night, Blue Light, Extra Bright or Warmer Light

Best Color LED, Wifi & Dimmable Smart Light Bulbs | Wyze Bulb Color (23) Best Color LED, Wifi & Dimmable Smart Light Bulbs | Wyze Bulb Color (24)

Fort Night

Blue Light

Best Color LED, Wifi & Dimmable Smart Light Bulbs | Wyze Bulb Color (25)

White light temperature control

Cool it down and focus or warm it up and relax. Dedicated white light controls let you choose the perfect setting for your activity.

90+ CRI Rating

See truer and more brilliant colors in your home with an advanced Color Rendering Index (CRI) rating. Never mistake navy or black in your closet again.

Best Color LED, Wifi & Dimmable Smart Light Bulbs | Wyze Bulb Color (26) Best Color LED, Wifi & Dimmable Smart Light Bulbs | Wyze Bulb Color (27)

Dull, washed out colors

Vibrant, true colors with increased CRI

Best Color LED, Wifi & Dimmable Smart Light Bulbs | Wyze Bulb Color (28)

Brilliant notifications

Shine a brighter light on important reminders. Create time-based color events or automate using other Wyze devices to create powerful visual notifications all in the Wyze app. Never forget to take the bins curbside again.

Best Color LED, Wifi & Dimmable Smart Light Bulbs | Wyze Bulb Color (29)

Did you forget to shut your door?

Trigger a warning with Wyze Color Bulb and Wyze Sense Motion Sensors or Entry Sensors.

Sleep Routines

Wake up or fall asleep to custom lighting routines that gradually illuminate or darken with time. It’s like having your own personal sunrise and sunset.

Best Color LED, Wifi & Dimmable Smart Light Bulbs | Wyze Bulb Color (31)

Dance to the beat of the music

Group with Wyze Light Strip or Wyze Light Strip Pro to Sync your lights to the beat of your favorite tracks with Music Mode. Your dance videos (and dance parties) just got a serious glow-up.

*Requires Wyze Bulb Color to be grouped with Wyze Light Strip or Wyze Light Strip Pro

Best Color LED, Wifi & Dimmable Smart Light Bulbs | Wyze Bulb Color (32)

Best Color LED, Wifi & Dimmable Smart Light Bulbs | Wyze Bulb Color (33)

Best Color LED, Wifi & Dimmable Smart Light Bulbs | Wyze Bulb Color (34)

Best Color LED, Wifi & Dimmable Smart Light Bulbs | Wyze Bulb Color (35)

Best Color LED, Wifi & Dimmable Smart Light Bulbs | Wyze Bulb Color (36)

Best Color LED, Wifi & Dimmable Smart Light Bulbs | Wyze Bulb Color (37)

Smart controls you'd expect

Your voice is now your light switch. Command your lights with your voice by asking Alexa or Google Assistant to turn them on/off, adjust brightness, or change color.

Make it look like someone's home whenever you are away. Just enable "Vacation Mode" in the Wyze app and our bulb does the rest.

Group Wyze Bulb Color together and with Wyze Light Strips for greater and more efficient control.

Best Color LED, Wifi & Dimmable Smart Light Bulbs | Wyze Bulb Color (2024)
Top Articles
Latest Posts
Article information

Author: Fredrick Kertzmann

Last Updated:

Views: 6077

Rating: 4.6 / 5 (66 voted)

Reviews: 89% of readers found this page helpful

Author information

Name: Fredrick Kertzmann

Birthday: 2000-04-29

Address: Apt. 203 613 Huels Gateway, Ralphtown, LA 40204

Phone: +2135150832870

Job: Regional Design Producer

Hobby: Nordic skating, Lacemaking, Mountain biking, Rowing, Gardening, Water sports, role-playing games

Introduction: My name is Fredrick Kertzmann, I am a gleaming, encouraging, inexpensive, thankful, tender, quaint, precious person who loves writing and wants to share my knowledge and understanding with you.