Where do I find the service/char UUID? (Simple project - control an LED from an iOS App)
Did a bunch of things like printing out services/peripherals to see what’s going on but don’t really know what I am doing
func peripheral(_ peripheral: CBPeripheral, didDiscoverServices error: Error?) {}
func centralManager(_ central: CBCentralManager, didDiscover peripheral: CBPeripheral, advertisementData: [String : Any], rssi RSSI: NSNumber) {}
e.g When I print out the services –– I see my computer and a nameless service with a certain UUID - guessing that is the service UUID of the ESP32 as it is listed as an UUID under services plus there are no other bluetooth stuff around - cool - 4 char strings I have seen in various examples are just the hex versions of this UUID . . . I suppose?
The existing tutorials here + others like https://tinyurl.com/y6qr997h - whilst helpful have not really facilitated me with tools to tackle a project on my own (due to my own lacking) - more content associated with IoT+ iOS would be greatly appreciated!
If I could be directed by the community to some solid+extensive resources - would be great!