promethium.c 997 B

1234567891011121314151617181920212223242526272829303132333435
  1. #include "promethium.h"
  2. #include "analog.h"
  3. #include "timer.h"
  4. #include "matrix.h"
  5. #include "musical_notes.h"
  6. #include "bluefruit_le.h"
  7. float fauxclicky_pressed_note[2] = MUSICAL_NOTE(_A4, 0.0625);
  8. float fauxclicky_released_note[2] = MUSICAL_NOTE(_A4, 0.0625);
  9. float fauxclicky_beep_note[2] = MUSICAL_NOTE(_C6, 0.25);
  10. // cubic fit {3.3, 0}, {3.5, 2.9}, {3.6, 5}, {3.7, 8.6}, {3.8, 36}, {3.9, 62}, {4.0, 73}, {4.05, 83}, {4.1, 89}, {4.15, 94}, {4.2, 100}
  11. uint8_t battery_level(void) {
  12. float voltage = bluefruit_le_read_battery_voltage() * 2 * 3.3 / 1024;
  13. if (voltage < MIN_VOLTAGE) return 0;
  14. if (voltage > MAX_VOLTAGE) return 255;
  15. return (voltage - MIN_VOLTAGE) / (MAX_VOLTAGE - MIN_VOLTAGE) * 255;
  16. }
  17. __attribute__ ((weak))
  18. void battery_poll(uint8_t level) {
  19. }
  20. void matrix_scan_kb(void) {
  21. static uint16_t counter = BATTERY_POLL;
  22. counter++;
  23. if (counter > BATTERY_POLL) {
  24. counter = 0;
  25. battery_poll(battery_level());
  26. }
  27. matrix_scan_user();
  28. }