jdanders
jdanders
On [line 454](https://github.com/doegox/python-cryptoplus/blob/master/src/CryptoPlus/Cipher/blockcipher.py#L454) of blockcipher.py, the assertion: ```python assert len(data) < 128*pow(2,20) ``` should be ```python assert len(data) < 16*pow(2,20) ``` The [NIST recommendation](http://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-38e.pdf) reads: > The length of the...
**Is your feature request related to a problem? Please describe.** I love the strength and efficiency of the sparse wall, but not everything I do is oriented as a wall....
**Describe the bug** The econet server loses track of the name set by the user sometimes **To Reproduce** Random occurrence, but also shows up in Econet app as well. **Expected...
One of the variables exposed to override is `econet_update_interval` which I would want to set the update rate of all the sensors provided by this component. The `climate` module seems...
Discussed in issue https://github.com/esphome-econet/esphome-econet/issues/472. I did `throttle_average` on sensors that move gradually, and `throttle` on more discrete value sensors. Please review. I also tried to standardize `filters` to follow `accuracy_decimals`.
I've got a dual-fuel furnace, and the thermostat supports "Emergency Heat" mode which is gas-only mode. ``` STATMODE : 5 (Emergency Heat) ``` I am not sure how to add...
See conversation: https://github.com/esphome-econet/esphome-econet/pull/467 Thermostat outside temp shows 44 while TEMP_OAT shows 43.7, so that's accurate. At the same time TEMP_EVP shows 35, which is likely accurate. Return air temp FURNRTMP...