I have a simple code which i uploaded on the board and it is working with android. My android can detect the arduino bluetooth and it make a connection
But i cannot see my bluetooth arduino name in iphone
i am trying with iphone 6s
here is arduino code
#include <SoftwareSerial.h>
SoftwareSerial BLE_Shield(4,5);
void setup() {
// put your setup code here, to run once:
BLE_Shield.begin(9600);
Serial.print("AT+VERSION");
}
void loop() {
// put your main code here, to run repeatedly:
// See if new position data is available
if (BLE_Shield.available()) {
Serial.print(BLE_Shield.read()); // Write position to servo
}
}
the name of my bluetooth device is "ForceIT" which can be seen in android . it can communicate after connection. but iphone cannot search it