Fantastic GLbasic speaks with Arduino using RS232 Gernot Lib.

Previous topic - Next topic

mentalthink

The first thanks to Gernnot for the Rs232 LIB, now is possible to do very very instesting projects with Arduino using a real nice and cool interface or anything on the Phone..


I leave an Image and the Arduino Code, for if anyone want test with Arduino.

This open another world of possibilities with GLbasic, thanks Gernnot.

I know is possible over TCP connection perhaps using ESP8266, but I want to do using BT.

The String is sended from my Phone... Arduino CODE
Quotevoid setup() {
  Serial.begin(9600);
  Serial.println("Inicio BT");
  // put your setup code here, to run once:

}

void loop() {
  Serial.write("Hello");
  delay(100);
 
  // put your main code here, to run repeatedly:

}



MK2004


erico

Great stuff Mental! What do you plan to do with it?