ArduinoCore-arc32
ArduinoCore-arc32 copied to clipboard
I want to control the servo motor's angle through bluetooth connection on android app. It is ok for control the led on and off: ``` void switchCharacteristicWritten(BLEDevice central, BLECharacteristic characteristic)...
This was already fixed in ArduinoCore-API: * https://github.com/arduino/Arduino/issues/7336 * https://github.com/arduino/ArduinoCore-API/commit/d5ae3faba1d69500f920c57b2afac59021831278
Solving that issue: https://github.com/01org/corelibs-arduino101/issues/554 BLEBoolCharacteristic not implemented, causing error: "undefined reference to `BLEBoolCharacteristic::BLEBoolCharacteristic(char const*, unsigned char)'".
Changed "Serail1" to "Serial1"
-enables checking of firmware version before sketch upload
Fix issue #367 Solution: Add service and appearance characteristic in the BLE lib. Changed files BLEDevice.cpp - check the local device BLEDeviceManager.cpp - Change the calls BLEDeviceManager.h - remove appearance...
1. Revert the DCCM change 2. Update the link script
As discussed in #507. Now it will check: - if in peripheral mode and if a central is connected - if in central mode and if a peripheral is connected...
1. Implement the subscribe changed event notify feature. Changed files: BLECallbacks.cpp - Add subscribe changed handler and disconnect process BLECallbacks.h - Callback declaration BLECharacteristicImp.cpp - Add the event changed handler...
Make the BLE support more characteristics and services by separate the service registration Changed files BLEProfileManager.cpp - Remove register all service at same time BLEProfileManager.h - Change the comments BLEServiceImp.cpp...