GLBasic forum

Main forum => GLBasic - en => Topic started by: mentalthink on 2019-Mar-09

Title: Fantastic GLbasic speaks with Arduino using RS232 Gernot Lib.
Post by: mentalthink on 2019-Mar-09
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:

}


Title: Re: Fantastic GLbasic speaks with Arduino using RS232 Gernot Lib.
Post by: MK2004 on 2019-Oct-26
Would you post the GLBasic code please?
Title: Re: Fantastic GLbasic speaks with Arduino using RS232 Gernot Lib.
Post by: erico on 2019-Oct-27
Great stuff Mental! What do you plan to do with it?