Bluno & iOS Bluetooth BLE Connection without Serial Command

Hello!
I am having a big issue with the BLE Connection between iPhone and the Bluno.
The connection and communication between both devices works very well when I upload the code from my Mac, but not anymore when I connect the Bluno to an external power source. I guess the problem is that in this case the Serial Command is not available anymore; thatswhy it can not send data anymore. The Bluetooth connection is still working after reconnection...
How to fix that ? I am working since days on it, but cannot find any solution
Thanks for your help!
ps. thats the arduino code i am trying to get to work - a very simple one, but just sending data when the bluno is connected to the computer, not anymore with external power source:
int i = 1000;
void setup() {
Serial.begin(9600);
}
void loop() {
i++;
Serial.println(i);
delay(1000);
}
I am having a big issue with the BLE Connection between iPhone and the Bluno.
The connection and communication between both devices works very well when I upload the code from my Mac, but not anymore when I connect the Bluno to an external power source. I guess the problem is that in this case the Serial Command is not available anymore; thatswhy it can not send data anymore. The Bluetooth connection is still working after reconnection...
How to fix that ? I am working since days on it, but cannot find any solution

Thanks for your help!
ps. thats the arduino code i am trying to get to work - a very simple one, but just sending data when the bluno is connected to the computer, not anymore with external power source:
int i = 1000;
void setup() {
Serial.begin(9600);
}
void loop() {
i++;
Serial.println(i);
delay(1000);
}
2015-05-28 18:20:03 Hi- I'm having exactly the same issue on a Bluno Beetle: I must use Serial.begin() to initialize communication between the ATmega328 and the Bluetooth chip. If I start up connected to my laptop, all is well. However, if I try to run disconnected, from an external battery power supply, it looks like Serial.* just doesn't work.
Any suggestions, DFRobot? I'm using the Play BLUno app and a Bluno Beetle. How can I 'initialize' communication between the 328 and the BT chip when there's no host computer attached?
Thanks!
-Mark
Kriegsman Mark
Any suggestions, DFRobot? I'm using the Play BLUno app and a Bluno Beetle. How can I 'initialize' communication between the 328 and the BT chip when there's no host computer attached?
Thanks!
-Mark

2015-03-17 22:26:29 hi Dimmer,
you moved away the usb cable, certainly the IDE monitor cannot print the i++ anymore.but i didnot get your meaning about the ble problem you've met.
Leff
you moved away the usb cable, certainly the IDE monitor cannot print the i++ anymore.but i didnot get your meaning about the ble problem you've met.
