Hi
Initial setup: Megapi + Bluetooth module
My PC and the bluetooth module are paired, I use a Bluetooth Serial Terminal to check output.
The program I use is simple, it sends data to Bluetooth.
#include “MeMegaPi.h”
#include <SoftwareSerial.h>
#include <Arduino.h>
#include <Wire.h>MeBluetooth bluetooth(PORT_5);
int i = 0;void setup()
{
bluetooth.begin(115200);
}void loop()
{ i++;
bluetooth.print(“Bt loop count.”);
bluetooth.println(i);
delay(1000);
}
I check the Bluetooth monitor but I cannot see output.
I also use this loop code:
void loop()
{
bluetooth.write(‘X’);
delay(1000);
}
And the problem is the same, I do not get output.
¿Some suggestions about?
Happy Weekend.
Kike.