Sunday, February 21, 2021
Friday, December 18, 2020
Classic bluetooth connection on Arduino
// use the following sample to connect to the mobile Serial bluetooth terminal app by Kai Morich to test // modules are working or not
#include <SoftwareSerial.h>
SoftwareSerial mySerial(2, 4); // RX, TX configured on Arduino to TX, RX of bluetooth module
void setup() {
// Open serial communications and wait for port to open:
Serial.begin(9600); // so far, it seems 9600 is the working baudrate
while (!Serial) {
; // wait for serial port to connect. Needed for native USB port only
}
Serial.println("Goodnight moon!");
// set the data rate for the SoftwareSerial port
mySerial.begin(9600);
mySerial.println("Hello, world?");
}
void loop() { // run over and over
if (mySerial.available()) {
Serial.write(mySerial.read());
}
if (Serial.available()) {
mySerial.write(Serial.read());
}
}
Tuesday, July 14, 2020
Wednesday, March 4, 2020
Tuesday, November 12, 2019
esp32 on Arduino
https://robotzero.one/heltec-wifi-kit-32/