Voice Controlled RGB LED Lamp

It is possible to set LED color using voice controlled like "http://hackaday.com/2014/08/17/voice-controlled-rgb-led-lamp/".

If it is possible to how to manage color name string convert to RGB please help me.

Thanks.


Comments

  • Use the Android or iOS app as a starting point and start coding already!
  • edited September 2014
    That VB.NET project has only the following colours recognizable from speech: red, green, blue, yellow, white and off. Should be easy enough to convert those to RGB using if or case statements:

    Dim choices As New System.Speech.Recognition.Choices({"red", "green", "blue", "fade", "random", "white", "yellow", "off"})

    Andrew
This discussion has been closed.