aboutsummaryrefslogtreecommitdiffstats
path: root/tmk_core/protocol/lufa/adafruit_ble.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Run clang-format manually to fix recently changed fileszvecr2019-11-171-3/+3
|
* Adafruit BLE: Set SPI2X bit only when F_CPU is 8MHz (#6671)fauxpark2019-09-071-2/+3
|
* Fix battery level code in adafruit_ble.cpp (#6648)bwhelm2019-09-041-6/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fix battery level code in adafruit_ble.cpp The code in tsk_core/protocol/lufa/adafluit_ble.cpp that polls the battery level for the Adafruit feather BLE controller reads the regulated voltage, not the raw voltage coming from the battery. To do that, the Adafruit Feather docs say you should read from pin A9: https://learn.adafruit.com/adafruit-feather-32u4-basic-proto/power-management#measuring-battery-4-9. (See also https://learn.adafruit.com/adafruit-feather-32u4-bluefruit-le/pinouts#logic-pins-2-9.) I'm not sure why, but analogRead(9); doesn't read the correct pin. Checking all available analog pins experimentally, it turns out that analogRead(7); returns the correct value. So the code above should read: state.vbat = analogRead(7); * Update tmk_core/protocol/lufa/adafruit_ble.cpp Co-Authored-By: Drashna Jaelre <drashna@live.com> * Remove old comment * Fix linking error * Remove `#ifdef` around `#include analog.h`. * Really fix linking error
* clang-format changesskullY2019-08-301-575/+542
|
* Remove keyboard description from Adafruit BLE device namefauxpark2019-04-071-2/+1
|
* Adafruit Feather BLE / BLE Friend mouse buttons supportPriyadi Iman Nurcahyo2017-05-291-1/+19
|
* Allow negative values for mouse movementsPriyadi Iman Nurcahyo2016-12-101-1/+1
|
* Add support for Adafruit BLE modulesWez Furlong2016-11-271-0/+805
This implements some helper functions that allow sending key reports to an SPI based Bluetooth Low Energy module, such as the Adafruit Feather 32u4 Bluefruit LE. There is some plumbing required in lufa.c to enable this; that is in a follow-on commit.