I tried to build an app that show certain text when it receive a certain number fro the arduino via bluetooth.
I think that my problem is that I didn't built the loop in the blocks right. because it only shows one text, or goes from one to another and stops. Instand of looping.
can some one help ?
this is the code that I is the arduino code that I built
#include<SoftwareSerial.h>
SoftwareSerial Bluetooth(0,1);
void setup() {
Bluetooth.begin(9600);
}
void loop() {
Bluetooth.write("1");
delay(3000);
Bluetooth.println();
Bluetooth.write("2");
delay(3000);
Bluetooth.println();
Bluetooth.write("3");
delay(1000);
Bluetooth.println();
}
and this is the blocks that i built