If you are bored and want to talk to someone and no one is available, here is the solution!
Create a Bot with the Serial Monitor.
If you want the Code, please write it.
I did not know that the Serial monitor had a speech interface.
(probably a better location for this is the bar)
Serial monitor dont have speech interface, but it can reply to your messages, for example:
void loop () {
Serial.begin (9600);
while (!Serial);
}
void setup {
if (Serial.available())
{
int state = Serial.parseInt();
if (state == "HI!")
{
Serial.println ("HI!");
}
}
}
sure...
I let you discuss with your Serial monitor (or better, go do some basic tutorials to understand C++ and the Arduino classes)
Bye Mr Troll
sounds like someone needs to port LISA to arduino
I think it's a good idea for a beginner...
One of my first programs was a chat bot made with the Pawn language for SA-MP, it could detect when players sweared, and replied things like "Calm down, player_name !" (it took a random line from a list, instead of always the same line, so it was more "alive"). It was like a scripted admin with a very basic AI...
Good memories
This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.