I noticed Android has a ReadRemoteRSSI function, but I cannot find it in the iOS version.
iOS does have a ReadRSSI() feature that works once per second interval for retrieving a connected RSSI value.
For example,
How do I make this work in B4I?
iOS does have a ReadRSSI() feature that works once per second interval for retrieving a connected RSSI value.
For example,
B4X:
-(void)update
{
[_peripheral readRSSI];// _peripheral is the connected device
deviceRSSI.text = [NSString stringWithFormat:@"%d",[[_peripheral RSSI] intValue]];
}
How do I make this work in B4I?