File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed
examples/ESP32_BluetoothSerial Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change 20
20
NMEA GGA and RMC are shared with apps like Maps, over the Control Session
21
21
as Location Information.
22
22
NMEA GGA, RMC and GST are shared with apps like Field Maps, over a dedicated
23
- External Accessory protocol session. Here we emulate the Bad Elf GPS Pro,
24
- using the com.bad-elf.gps protocol name. We are grateful to Bad Elf for
25
- sharing details of their protocol openly: https://github.com/BadElf/gps-sdk
23
+ External Accessory protocol session.
26
24
27
25
This example contains a copy of Espressif's BluetoothSerial code, with a
28
26
modified ESP_BT_GAP_ACL_CONN_CMPL_STAT_EVT event.
@@ -107,9 +105,9 @@ const char *manufacturer = "SparkFun Electronics";
107
105
const char *serialNumber = " 123456" ;
108
106
const char *firmwareVersion = " 1.0.0" ;
109
107
const char *hardwareVersion = " 1.0.0" ;
110
- const char *EAProtocol = " com.bad-elf.gps " ; // Emulate the Bad Elf GPS Pro. Thank you Bad Elf
108
+ const char *EAProtocol = " com.sparkfun.rtk " ;
111
109
const char *BTTransportName = " com.sparkfun.bt" ;
112
- const char *LIComponentName = " com.sparkfun.rtk " ;
110
+ const char *LIComponentName = " com.sparkfun.li " ;
113
111
const char *productPlanUID = " 0123456789ABCDEF" ; // This comes from the MFi Portal, when you register the product with Apple
114
112
115
113
// ===================================================================================================================
You can’t perform that action at this time.
0 commit comments