How do Google, Alexa and other voice assistant control light and other appliances?

948 views

It’s awesome but I’m curious to know what’s happening behind the scenes.

In: Technology

4 Answers

Anonymous 0 Comments

Something along the lines of:

public void light control()
{
If(lightOn == true)
{
Increase power to light;
}
Else
{
Turn off power to light;
}
}

You are viewing 1 out of 4 answers, click here to view all answers.