mirror of
https://github.com/esphome/esphome.git
synced 2024-11-22 23:18:10 +01:00
Allow for subsecond sampling of hmc5883l (#2735)
This commit is contained in:
parent
f1954df573
commit
b35f509784
1 changed files with 2 additions and 2 deletions
|
@ -114,8 +114,8 @@ CONFIG_SCHEMA = (
|
|||
|
||||
|
||||
def auto_data_rate(config):
|
||||
interval_sec = config[CONF_UPDATE_INTERVAL].seconds
|
||||
interval_hz = 1.0 / interval_sec
|
||||
interval_msec = config[CONF_UPDATE_INTERVAL].total_milliseconds
|
||||
interval_hz = 1000.0 / interval_msec
|
||||
for datarate in sorted(HMC5883LDatarates.keys()):
|
||||
if float(datarate) >= interval_hz:
|
||||
return HMC5883LDatarates[datarate]
|
||||
|
|
Loading…
Reference in a new issue