voice controlled

How to Build an Arduino Voice Controlled TV Remote

How to Build an Arduino Voice Controlled TV Remote

#include <EEPROM.h> #include <Wire.h> #include <SoftwareSerial.h> #include <LiquidCrystal.h> SoftwareSerial voice = SoftwareSerial(15, 16); LiquidCrystal lcd(5, 6, 7, 8, 9, 10); int pulses, A_SIG=0, B_SIG=1, menu=0, datacount, i, buttoncount=0; int count, j, k, m, ready=0, even=0, fail, first_but=0, second_but=0; word Power[100]; word Remote[100]; //word Remote2[100]; word mute_remote[100]; word enter_remote[100]; byte datlow, dathigh, addlow, addhigh; long Start, […]

How to Build an Arduino Voice Controlled TV Remote Continue Reading

voice controlled robot

Build A Voice-Controlled Robot Using Arduino

Story Voice-controlled Robot Voice-controlled robot is both hardware and cloud solution in one piece. The main components are: 1. Alexa Skill – to interpret voice commands and translate them to Google Cloud Messaging messages – deployed to Heroku cloud 2. Android application – to receive messages from Google Cloud Messaging and send them over Bluetooth

Build A Voice-Controlled Robot Using Arduino Continue Reading

Scroll to Top