Troubleshooting

How to setup Bluno Nano to iPhone 4S

userHead jiasheen 2015-01-05 14:39:18 3049 Views1 Replies

Good day!

I bought a bluno nano last month.

https://wiki.dfrobot.com/Bluno_Nano_SKU_DFR0296


I thought the set up was easy but it turns out the instructions are pretty vague. Could anyone help me?
I'm using an iPhone 4S with iOS 8.1.2

https://wiki.dfrobot.com/Bluno_SKU_DFR0267


On the link above, click 5.Bluno Basic Demo
The step by step instruction says to upload the code to the bluno using 'Arduino UNO' as the board. It uploaded successfully. Next, I need to compile the source code to my apple device. This is the part that frustrates me; since I can't paste anything on my internal storage, I can't do anything else on the bluno.

Please help me set it up  :smiley-sad-blue: 

 

Code: Select allvoid setup() {     Serial.begin(115200);               //initial the Serial } void loop() {     if(Serial.available())     {         Serial.write(Serial.read());    //send what has been received     } }

 

2015-01-05 15:09:03 You need a Apple dev license to upload code compiled from Xcode onto your iPhone. It is a "process". But you can simply install the free Play Bluno app from Apple store and get around this.

BTW... iPhone 4 will not see the Bluno Bluetooth 4.0 HW. Will need 5.0 or greater.
userHeadPic walkabout