We've connected CR95HF with arduino uno via UART but it seems to give random outputs on the serial monitor.The arduino code:#include <SoftwareSerial.h>
SoftwareSerial BTserial(4, 5);
void setup() {
// put your setup code here, to run once:
...
Did all the changes you suggested, still the problem exists. This code was written for an Arduino UNO and it works absolutely well with it as we have tested it with an UNO as well. But with Nodemcu this problem follows. Kindly help me out with the fu...
I'm using a BM019 board now for evaluation purpose. The board is connected via SPI with a ESP8266 mod - Nodemcu board. The Inventory command runs for a few cycles and then anomalies stars to follow. We're coding using Arduino IDE. Here's my code:
//...
@Brian TIDAL_O I don't think so it solved much.New Code:#include <SoftwareSerial.h>
SoftwareSerial BTserial(4, 5);
void setup() {
BTserial.begin(57600);
Serial.begin(9600);
// put your setup code here, to run once:
delay(1);
BTserial.wr...