i'm have funduino nano hooked hc-06.
my code stupid simple , i'm not sure i'm doing wrong.
void setup() {
serial.begin(9600);
}
void loop() {
int analogvalue = analogread(0);
serial.print(analogvalue);
delay(200);
}
the nano transmits when ask ide serial monitor.
when close monitor , disconnect usb cable transmit stops (tx light stops flashing).
my hc-06 pairs , connects android device doesn't display anything.
suggestions?
thanks
my code stupid simple , i'm not sure i'm doing wrong.
void setup() {
serial.begin(9600);
}
void loop() {
int analogvalue = analogread(0);
serial.print(analogvalue);
delay(200);
}
the nano transmits when ask ide serial monitor.
when close monitor , disconnect usb cable transmit stops (tx light stops flashing).
my hc-06 pairs , connects android device doesn't display anything.
suggestions?
thanks
try tutorial, maybe got solution...
Arduino Forum > Using Arduino > Project Guidance > Nano (funduino) won't constantly transmit
arduino
Comments
Post a Comment