hjd1964 / OnStepX

GNU General Public License v3.0
83 stars 59 forks source link

Bluetooth is not available #59

Closed mcvall closed 1 month ago

mcvall commented 1 month ago

In the last version of OnStepX it was possible to connect via bluetooth. Namely in "Extended.config" (#define SERIAL_BT_MODE SLAVE // OFF, use SLAVE to enable the interface (ESP32 only). In the new version OnStep10.23f it is not there.

vzr314 commented 1 month ago

Bluetooth configuration is moved from Extended.config.h to Config.h few versions ago. Please check following line:

https://github.com/hjd1964/OnStepX/blob/main/Config.h#L29

#define SERIAL_RADIO BLUETOOTH // OFF, Use BLUETOOTH or WIFI_ACCESS_POINT or WIFI_STATION (ESP32 only.) Option

Also, Bluetooth name can be set with optional flag SERIAL_BT_NAME, for example:

#define SERIAL_BT_NAME "MaxESP4" // OnStep, Specify Bluetooth name, if used (ESP32 only.) Option

mcvall commented 1 month ago

Thanks!