fix(battery): Warn if using deprecated battery label

This commit is contained in:
Joel Spadin 2022-04-15 22:09:35 -05:00 committed by Pete Johanson
parent 388e345c28
commit f91472fbe5
1 changed files with 2 additions and 0 deletions

View File

@ -26,6 +26,8 @@ uint8_t zmk_battery_state_of_charge() { return last_state_of_charge; }
#if DT_HAS_CHOSEN(zmk_battery)
static const struct device *const battery = DEVICE_DT_GET(DT_CHOSEN(zmk_battery));
#else
#warning \
"Using a node labeled BATTERY for the battery sensor is deprecated. Set a zmk,battery chosen node instead. (Ignore this if you don't have a battery sensor.)"
static const struct device *battery;
#endif