mirror of
https://github.com/esphome/esphome.git
synced 2025-11-03 08:31:47 +00:00
Compare commits
35 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8cf15c7f5c | ||
|
|
adc76ca1b8 | ||
|
|
8f8892440c | ||
|
|
570843150d | ||
|
|
f3fc9e4142 | ||
|
|
075fcb77a8 | ||
|
|
e5899ff717 | ||
|
|
2fb3970027 | ||
|
|
1a4efa1b8c | ||
|
|
72f656ffef | ||
|
|
b60239d5e5 | ||
|
|
d02e280c3c | ||
|
|
6535b0966e | ||
|
|
82dbacbee5 | ||
|
|
2432901974 | ||
|
|
ebb5d58c14 | ||
|
|
605e365405 | ||
|
|
5ab995d8ca | ||
|
|
4248741b11 | ||
|
|
4b8ecc7634 | ||
|
|
25d04c759c | ||
|
|
b4ec84030e | ||
|
|
29e8761373 | ||
|
|
a04299c59e | ||
|
|
d7bf3c51d9 | ||
|
|
3ddf5a4ec7 | ||
|
|
f2d6817d8a | ||
|
|
31821e6309 | ||
|
|
ac0b095941 | ||
|
|
cda9bad233 | ||
|
|
41db8a1264 | ||
|
|
e7e785fd60 | ||
|
|
300d3a1f46 | ||
|
|
356554c08d | ||
|
|
ced28ad006 |
@@ -1,5 +1,6 @@
|
|||||||
sudo: false
|
sudo: false
|
||||||
language: python
|
language: python
|
||||||
|
python: '2.7'
|
||||||
install: script/setup
|
install: script/setup
|
||||||
cache:
|
cache:
|
||||||
directories:
|
directories:
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ class CWWWLightOutput : public light::LightOutput {
|
|||||||
traits.set_supports_rgb_white_value(false);
|
traits.set_supports_rgb_white_value(false);
|
||||||
traits.set_supports_color_temperature(true);
|
traits.set_supports_color_temperature(true);
|
||||||
traits.set_min_mireds(this->cold_white_temperature_);
|
traits.set_min_mireds(this->cold_white_temperature_);
|
||||||
traits.set_min_mireds(this->warm_white_temperature_);
|
traits.set_max_mireds(this->warm_white_temperature_);
|
||||||
return traits;
|
return traits;
|
||||||
}
|
}
|
||||||
void write_state(light::LightState *state) override {
|
void write_state(light::LightState *state) override {
|
||||||
|
|||||||
@@ -25,4 +25,4 @@ def to_code(config):
|
|||||||
|
|
||||||
wwhite = yield cg.get_variable(config[CONF_WARM_WHITE])
|
wwhite = yield cg.get_variable(config[CONF_WARM_WHITE])
|
||||||
cg.add(var.set_warm_white(wwhite))
|
cg.add(var.set_warm_white(wwhite))
|
||||||
cg.add(var.set_warm_white_temperature(config[CONF_COLD_WHITE_COLOR_TEMPERATURE]))
|
cg.add(var.set_warm_white_temperature(config[CONF_WARM_WHITE_COLOR_TEMPERATURE]))
|
||||||
|
|||||||
@@ -87,7 +87,7 @@ void DeepSleepComponent::begin_sleep(bool manual) {
|
|||||||
ESP.deepSleep(*this->sleep_duration_);
|
ESP.deepSleep(*this->sleep_duration_);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
float DeepSleepComponent::get_setup_priority() const { return -100.0f; }
|
float DeepSleepComponent::get_setup_priority() const { return setup_priority::LATE; }
|
||||||
void DeepSleepComponent::prevent_deep_sleep() { this->prevent_ = true; }
|
void DeepSleepComponent::prevent_deep_sleep() { this->prevent_ = true; }
|
||||||
|
|
||||||
} // namespace deep_sleep
|
} // namespace deep_sleep
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ FanSpeed = fan_ns.enum('FanSpeed')
|
|||||||
FAN_SPEEDS = {
|
FAN_SPEEDS = {
|
||||||
'OFF': FanSpeed.FAN_SPEED_OFF,
|
'OFF': FanSpeed.FAN_SPEED_OFF,
|
||||||
'LOW': FanSpeed.FAN_SPEED_LOW,
|
'LOW': FanSpeed.FAN_SPEED_LOW,
|
||||||
'MEDIuM': FanSpeed.FAN_SPEED_MEDIUM,
|
'MEDIUM': FanSpeed.FAN_SPEED_MEDIUM,
|
||||||
'HIGH': FanSpeed.FAN_SPEED_HIGH,
|
'HIGH': FanSpeed.FAN_SPEED_HIGH,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -5,8 +5,7 @@ from esphome.const import CONF_OUTPUT_ID, CONF_NUM_LEDS, CONF_RGB_ORDER, CONF_MA
|
|||||||
from esphome.core import coroutine
|
from esphome.core import coroutine
|
||||||
|
|
||||||
fastled_base_ns = cg.esphome_ns.namespace('fastled_base')
|
fastled_base_ns = cg.esphome_ns.namespace('fastled_base')
|
||||||
FastLEDLightOutput = fastled_base_ns.class_('FastLEDLightOutput', cg.Component,
|
FastLEDLightOutput = fastled_base_ns.class_('FastLEDLightOutput', light.AddressableLight)
|
||||||
light.AddressableLight)
|
|
||||||
|
|
||||||
RGB_ORDERS = [
|
RGB_ORDERS = [
|
||||||
'RGB',
|
'RGB',
|
||||||
|
|||||||
@@ -16,7 +16,7 @@
|
|||||||
namespace esphome {
|
namespace esphome {
|
||||||
namespace fastled_base {
|
namespace fastled_base {
|
||||||
|
|
||||||
class FastLEDLightOutput : public Component, public light::AddressableLight {
|
class FastLEDLightOutput : public light::AddressableLight {
|
||||||
public:
|
public:
|
||||||
/// Only for custom effects: Get the internal controller.
|
/// Only for custom effects: Get the internal controller.
|
||||||
CLEDController *get_controller() const { return this->controller_; }
|
CLEDController *get_controller() const { return this->controller_; }
|
||||||
|
|||||||
@@ -50,7 +50,7 @@ void I2CComponent::dump_config() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
float I2CComponent::get_setup_priority() const { return setup_priority::HARDWARE; }
|
float I2CComponent::get_setup_priority() const { return setup_priority::BUS; }
|
||||||
|
|
||||||
void I2CComponent::raw_begin_transmission(uint8_t address) {
|
void I2CComponent::raw_begin_transmission(uint8_t address) {
|
||||||
ESP_LOGVV(TAG, "Beginning Transmission to 0x%02X:", address);
|
ESP_LOGVV(TAG, "Beginning Transmission to 0x%02X:", address);
|
||||||
|
|||||||
@@ -4,6 +4,8 @@
|
|||||||
namespace esphome {
|
namespace esphome {
|
||||||
namespace light {
|
namespace light {
|
||||||
|
|
||||||
|
static const char *TAG = "light.addressable";
|
||||||
|
|
||||||
const ESPColor ESPColor::BLACK = ESPColor(0, 0, 0, 0);
|
const ESPColor ESPColor::BLACK = ESPColor(0, 0, 0, 0);
|
||||||
const ESPColor ESPColor::WHITE = ESPColor(255, 255, 255, 255);
|
const ESPColor ESPColor::WHITE = ESPColor(255, 255, 255, 255);
|
||||||
|
|
||||||
@@ -83,8 +85,46 @@ ESPColorView ESPRangeView::operator[](int32_t index) const {
|
|||||||
index = interpret_index(index, this->size());
|
index = interpret_index(index, this->size());
|
||||||
return (*this->parent_)[index];
|
return (*this->parent_)[index];
|
||||||
}
|
}
|
||||||
|
ESPRangeIterator ESPRangeView::begin() { return {*this, this->begin_}; }
|
||||||
|
ESPRangeIterator ESPRangeView::end() { return {*this, this->end_}; }
|
||||||
|
void ESPRangeView::set_red(uint8_t red) {
|
||||||
|
for (auto c : *this)
|
||||||
|
c.set_red(red);
|
||||||
|
}
|
||||||
|
void ESPRangeView::set_green(uint8_t green) {
|
||||||
|
for (auto c : *this)
|
||||||
|
c.set_green(green);
|
||||||
|
}
|
||||||
|
void ESPRangeView::set_blue(uint8_t blue) {
|
||||||
|
for (auto c : *this)
|
||||||
|
c.set_blue(blue);
|
||||||
|
}
|
||||||
|
void ESPRangeView::set_white(uint8_t white) {
|
||||||
|
for (auto c : *this)
|
||||||
|
c.set_white(white);
|
||||||
|
}
|
||||||
|
void ESPRangeView::set_effect_data(uint8_t effect_data) {
|
||||||
|
for (auto c : *this)
|
||||||
|
c.set_effect_data(effect_data);
|
||||||
|
}
|
||||||
|
void ESPRangeView::fade_to_white(uint8_t amnt) {
|
||||||
|
for (auto c : *this)
|
||||||
|
c.fade_to_white(amnt);
|
||||||
|
}
|
||||||
|
void ESPRangeView::fade_to_black(uint8_t amnt) {
|
||||||
|
for (auto c : *this)
|
||||||
|
c.fade_to_white(amnt);
|
||||||
|
}
|
||||||
|
void ESPRangeView::lighten(uint8_t delta) {
|
||||||
|
for (auto c : *this)
|
||||||
|
c.lighten(delta);
|
||||||
|
}
|
||||||
|
void ESPRangeView::darken(uint8_t delta) {
|
||||||
|
for (auto c : *this)
|
||||||
|
c.darken(delta);
|
||||||
|
}
|
||||||
|
|
||||||
ESPColorView ESPRangeView::Iterator::operator*() const { return (*this->range_->parent_)[this->i_]; }
|
ESPColorView ESPRangeIterator::operator*() const { return this->range_.parent_->get(this->i_); }
|
||||||
|
|
||||||
int32_t HOT interpret_index(int32_t index, int32_t size) {
|
int32_t HOT interpret_index(int32_t index, int32_t size) {
|
||||||
if (index < 0)
|
if (index < 0)
|
||||||
@@ -92,5 +132,24 @@ int32_t HOT interpret_index(int32_t index, int32_t size) {
|
|||||||
return index;
|
return index;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void AddressableLight::call_setup() {
|
||||||
|
this->setup_internal_();
|
||||||
|
this->setup();
|
||||||
|
|
||||||
|
#ifdef ESPHOME_LOG_HAS_VERY_VERBOSE
|
||||||
|
this->set_interval(5000, [this]() {
|
||||||
|
const char *name = this->state_parent_ == nullptr ? "" : this->state_parent_->get_name().c_str();
|
||||||
|
ESP_LOGVV(TAG, "Addressable Light '%s' (effect_active=%s next_show=%s)", name, YESNO(this->effect_active_),
|
||||||
|
YESNO(this->next_show_));
|
||||||
|
for (int i = 0; i < this->size(); i++) {
|
||||||
|
auto color = this->get(i);
|
||||||
|
ESP_LOGVV(TAG, " [%2d] Color: R=%3u G=%3u B=%3u W=%3u", i, color.get_red_raw(), color.get_green_raw(),
|
||||||
|
color.get_blue_raw(), color.get_white_raw());
|
||||||
|
}
|
||||||
|
ESP_LOGVV(TAG, "");
|
||||||
|
});
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
} // namespace light
|
} // namespace light
|
||||||
} // namespace esphome
|
} // namespace esphome
|
||||||
|
|||||||
@@ -335,13 +335,21 @@ class ESPColorView : public ESPColorSettable {
|
|||||||
void darken(uint8_t delta) override { this->set(this->get().darken(delta)); }
|
void darken(uint8_t delta) override { this->set(this->get().darken(delta)); }
|
||||||
ESPColor get() const { return ESPColor(this->get_red(), this->get_green(), this->get_blue(), this->get_white()); }
|
ESPColor get() const { return ESPColor(this->get_red(), this->get_green(), this->get_blue(), this->get_white()); }
|
||||||
uint8_t get_red() const { return this->color_correction_->color_uncorrect_red(*this->red_); }
|
uint8_t get_red() const { return this->color_correction_->color_uncorrect_red(*this->red_); }
|
||||||
|
uint8_t get_red_raw() const { return *this->red_; }
|
||||||
uint8_t get_green() const { return this->color_correction_->color_uncorrect_green(*this->green_); }
|
uint8_t get_green() const { return this->color_correction_->color_uncorrect_green(*this->green_); }
|
||||||
|
uint8_t get_green_raw() const { return *this->green_; }
|
||||||
uint8_t get_blue() const { return this->color_correction_->color_uncorrect_blue(*this->blue_); }
|
uint8_t get_blue() const { return this->color_correction_->color_uncorrect_blue(*this->blue_); }
|
||||||
|
uint8_t get_blue_raw() const { return *this->blue_; }
|
||||||
uint8_t get_white() const {
|
uint8_t get_white() const {
|
||||||
if (this->white_ == nullptr)
|
if (this->white_ == nullptr)
|
||||||
return 0;
|
return 0;
|
||||||
return this->color_correction_->color_uncorrect_white(*this->white_);
|
return this->color_correction_->color_uncorrect_white(*this->white_);
|
||||||
}
|
}
|
||||||
|
uint8_t get_white_raw() const {
|
||||||
|
if (this->white_ == nullptr)
|
||||||
|
return 0;
|
||||||
|
return *this->white_;
|
||||||
|
}
|
||||||
uint8_t get_effect_data() const {
|
uint8_t get_effect_data() const {
|
||||||
if (this->effect_data_ == nullptr)
|
if (this->effect_data_ == nullptr)
|
||||||
return 0;
|
return 0;
|
||||||
@@ -364,23 +372,10 @@ class AddressableLight;
|
|||||||
|
|
||||||
int32_t interpret_index(int32_t index, int32_t size);
|
int32_t interpret_index(int32_t index, int32_t size);
|
||||||
|
|
||||||
|
class ESPRangeIterator;
|
||||||
|
|
||||||
class ESPRangeView : public ESPColorSettable {
|
class ESPRangeView : public ESPColorSettable {
|
||||||
public:
|
public:
|
||||||
class Iterator {
|
|
||||||
public:
|
|
||||||
Iterator(ESPRangeView *range, int32_t i) : range_(range), i_(i) {}
|
|
||||||
Iterator operator++() {
|
|
||||||
this->i_++;
|
|
||||||
return *this;
|
|
||||||
}
|
|
||||||
bool operator!=(const Iterator &other) const { return this->i_ != other.i_; }
|
|
||||||
ESPColorView operator*() const;
|
|
||||||
|
|
||||||
protected:
|
|
||||||
ESPRangeView *range_;
|
|
||||||
int32_t i_;
|
|
||||||
};
|
|
||||||
|
|
||||||
ESPRangeView(AddressableLight *parent, int32_t begin, int32_t an_end) : parent_(parent), begin_(begin), end_(an_end) {
|
ESPRangeView(AddressableLight *parent, int32_t begin, int32_t an_end) : parent_(parent), begin_(begin), end_(an_end) {
|
||||||
if (this->end_ < this->begin_) {
|
if (this->end_ < this->begin_) {
|
||||||
this->end_ = this->begin_;
|
this->end_ = this->begin_;
|
||||||
@@ -388,8 +383,8 @@ class ESPRangeView : public ESPColorSettable {
|
|||||||
}
|
}
|
||||||
|
|
||||||
ESPColorView operator[](int32_t index) const;
|
ESPColorView operator[](int32_t index) const;
|
||||||
Iterator begin() { return {this, this->begin_}; }
|
ESPRangeIterator begin();
|
||||||
Iterator end() { return {this, this->end_}; }
|
ESPRangeIterator end();
|
||||||
|
|
||||||
void set(const ESPColor &color) override;
|
void set(const ESPColor &color) override;
|
||||||
ESPRangeView &operator=(const ESPColor &rhs) {
|
ESPRangeView &operator=(const ESPColor &rhs) {
|
||||||
@@ -431,51 +426,41 @@ class ESPRangeView : public ESPColorSettable {
|
|||||||
|
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
void set_red(uint8_t red) override {
|
void set_red(uint8_t red) override;
|
||||||
for (auto c : *this)
|
void set_green(uint8_t green) override;
|
||||||
c.set_red(red);
|
void set_blue(uint8_t blue) override;
|
||||||
}
|
void set_white(uint8_t white) override;
|
||||||
void set_green(uint8_t green) override {
|
void set_effect_data(uint8_t effect_data) override;
|
||||||
for (auto c : *this)
|
void fade_to_white(uint8_t amnt) override;
|
||||||
c.set_green(green);
|
void fade_to_black(uint8_t amnt) override;
|
||||||
}
|
void lighten(uint8_t delta) override;
|
||||||
void set_blue(uint8_t blue) override {
|
void darken(uint8_t delta) override;
|
||||||
for (auto c : *this)
|
|
||||||
c.set_blue(blue);
|
|
||||||
}
|
|
||||||
void set_white(uint8_t white) override {
|
|
||||||
for (auto c : *this)
|
|
||||||
c.set_white(white);
|
|
||||||
}
|
|
||||||
void set_effect_data(uint8_t effect_data) override {
|
|
||||||
for (auto c : *this)
|
|
||||||
c.set_effect_data(effect_data);
|
|
||||||
}
|
|
||||||
void fade_to_white(uint8_t amnt) override {
|
|
||||||
for (auto c : *this)
|
|
||||||
c.fade_to_white(amnt);
|
|
||||||
}
|
|
||||||
void fade_to_black(uint8_t amnt) override {
|
|
||||||
for (auto c : *this)
|
|
||||||
c.fade_to_white(amnt);
|
|
||||||
}
|
|
||||||
void lighten(uint8_t delta) override {
|
|
||||||
for (auto c : *this)
|
|
||||||
c.lighten(delta);
|
|
||||||
}
|
|
||||||
void darken(uint8_t delta) override {
|
|
||||||
for (auto c : *this)
|
|
||||||
c.darken(delta);
|
|
||||||
}
|
|
||||||
int32_t size() const { return this->end_ - this->begin_; }
|
int32_t size() const { return this->end_ - this->begin_; }
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
friend ESPRangeIterator;
|
||||||
|
|
||||||
AddressableLight *parent_;
|
AddressableLight *parent_;
|
||||||
int32_t begin_;
|
int32_t begin_;
|
||||||
int32_t end_;
|
int32_t end_;
|
||||||
};
|
};
|
||||||
|
|
||||||
class AddressableLight : public LightOutput {
|
class ESPRangeIterator {
|
||||||
|
public:
|
||||||
|
ESPRangeIterator(const ESPRangeView &range, int32_t i) : range_(range), i_(i) {}
|
||||||
|
ESPRangeIterator operator++() {
|
||||||
|
this->i_++;
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
bool operator!=(const ESPRangeIterator &other) const { return this->i_ != other.i_; }
|
||||||
|
ESPColorView operator*() const;
|
||||||
|
|
||||||
|
protected:
|
||||||
|
ESPRangeView range_;
|
||||||
|
int32_t i_;
|
||||||
|
};
|
||||||
|
|
||||||
|
class AddressableLight : public LightOutput, public Component {
|
||||||
public:
|
public:
|
||||||
virtual int32_t size() const = 0;
|
virtual int32_t size() const = 0;
|
||||||
ESPColorView operator[](int32_t index) const { return this->get_view_internal(interpret_index(index, this->size())); }
|
ESPColorView operator[](int32_t index) const { return this->get_view_internal(interpret_index(index, this->size())); }
|
||||||
@@ -487,8 +472,8 @@ class AddressableLight : public LightOutput {
|
|||||||
return ESPRangeView(this, from, to);
|
return ESPRangeView(this, from, to);
|
||||||
}
|
}
|
||||||
ESPRangeView all() { return ESPRangeView(this, 0, this->size()); }
|
ESPRangeView all() { return ESPRangeView(this, 0, this->size()); }
|
||||||
ESPRangeView::Iterator begin() { return this->all().begin(); }
|
ESPRangeIterator begin() { return this->all().begin(); }
|
||||||
ESPRangeView::Iterator end() { return this->all().end(); }
|
ESPRangeIterator end() { return this->all().end(); }
|
||||||
void shift_left(int32_t amnt) {
|
void shift_left(int32_t amnt) {
|
||||||
if (amnt < 0) {
|
if (amnt < 0) {
|
||||||
this->shift_right(-amnt);
|
this->shift_right(-amnt);
|
||||||
@@ -530,13 +515,18 @@ class AddressableLight : public LightOutput {
|
|||||||
this->correction_.set_max_brightness(ESPColor(uint8_t(roundf(red * 255.0f)), uint8_t(roundf(green * 255.0f)),
|
this->correction_.set_max_brightness(ESPColor(uint8_t(roundf(red * 255.0f)), uint8_t(roundf(green * 255.0f)),
|
||||||
uint8_t(roundf(blue * 255.0f)), uint8_t(roundf(white * 255.0f))));
|
uint8_t(roundf(blue * 255.0f)), uint8_t(roundf(white * 255.0f))));
|
||||||
}
|
}
|
||||||
void setup_state(LightState *state) override { this->correction_.calculate_gamma_table(state->get_gamma_correct()); }
|
void setup_state(LightState *state) override {
|
||||||
|
this->correction_.calculate_gamma_table(state->get_gamma_correct());
|
||||||
|
this->state_parent_ = state;
|
||||||
|
}
|
||||||
void schedule_show() { this->next_show_ = true; }
|
void schedule_show() { this->next_show_ = true; }
|
||||||
|
|
||||||
#ifdef USE_POWER_SUPPLY
|
#ifdef USE_POWER_SUPPLY
|
||||||
void set_power_supply(power_supply::PowerSupply *power_supply) { this->power_.set_parent(power_supply); }
|
void set_power_supply(power_supply::PowerSupply *power_supply) { this->power_.set_parent(power_supply); }
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
void call_setup() override;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
bool should_show_() const { return this->effect_active_ || this->next_show_; }
|
bool should_show_() const { return this->effect_active_ || this->next_show_; }
|
||||||
void mark_shown_() {
|
void mark_shown_() {
|
||||||
@@ -559,6 +549,7 @@ class AddressableLight : public LightOutput {
|
|||||||
#ifdef USE_POWER_SUPPLY
|
#ifdef USE_POWER_SUPPLY
|
||||||
power_supply::PowerSupplyRequester power_;
|
power_supply::PowerSupplyRequester power_;
|
||||||
#endif
|
#endif
|
||||||
|
LightState *state_parent_{nullptr};
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace light
|
} // namespace light
|
||||||
|
|||||||
@@ -308,14 +308,15 @@ class AddressableFlickerEffect : public AddressableLightEffect {
|
|||||||
explicit AddressableFlickerEffect(const std::string &name) : AddressableLightEffect(name) {}
|
explicit AddressableFlickerEffect(const std::string &name) : AddressableLightEffect(name) {}
|
||||||
void apply(AddressableLight &it, const ESPColor ¤t_color) override {
|
void apply(AddressableLight &it, const ESPColor ¤t_color) override {
|
||||||
const uint32_t now = millis();
|
const uint32_t now = millis();
|
||||||
const uint8_t delta_intensity = 255 - this->intensity_;
|
const uint8_t intensity = this->intensity_;
|
||||||
|
const uint8_t inv_intensity = 255 - intensity;
|
||||||
if (now - this->last_update_ < this->update_interval_)
|
if (now - this->last_update_ < this->update_interval_)
|
||||||
return;
|
return;
|
||||||
this->last_update_ = now;
|
this->last_update_ = now;
|
||||||
fast_random_set_seed(random_uint32());
|
fast_random_set_seed(random_uint32());
|
||||||
for (auto var : it) {
|
for (auto var : it) {
|
||||||
const uint8_t flicker = fast_random_8() % this->intensity_;
|
const uint8_t flicker = fast_random_8() % intensity;
|
||||||
var = (var.get() * delta_intensity) + (current_color * flicker);
|
var = (var.get() * inv_intensity) + (current_color * flicker);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
void set_update_interval(uint32_t update_interval) { this->update_interval_ = update_interval; }
|
void set_update_interval(uint32_t update_interval) { this->update_interval_ = update_interval; }
|
||||||
|
|||||||
@@ -89,7 +89,7 @@ template<typename... Ts> class LightIsOnCondition : public Condition<Ts...> {
|
|||||||
protected:
|
protected:
|
||||||
LightState *state_;
|
LightState *state_;
|
||||||
};
|
};
|
||||||
template<typename... Ts> class LightIsOffCondition : public Condition<LightState, Ts...> {
|
template<typename... Ts> class LightIsOffCondition : public Condition<Ts...> {
|
||||||
public:
|
public:
|
||||||
explicit LightIsOffCondition(LightState *state) : state_(state) {}
|
explicit LightIsOffCondition(LightState *state) : state_(state) {}
|
||||||
bool check(Ts... x) override { return !this->state_->current_values.is_on(); }
|
bool check(Ts... x) override { return !this->state_->current_values.is_on(); }
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ from esphome.const import CONF_ID, CONF_TRANSITION_LENGTH, CONF_STATE, CONF_FLAS
|
|||||||
CONF_EFFECT, CONF_BRIGHTNESS, CONF_RED, CONF_GREEN, CONF_BLUE, CONF_WHITE, \
|
CONF_EFFECT, CONF_BRIGHTNESS, CONF_RED, CONF_GREEN, CONF_BLUE, CONF_WHITE, \
|
||||||
CONF_COLOR_TEMPERATURE, CONF_RANGE_FROM, CONF_RANGE_TO
|
CONF_COLOR_TEMPERATURE, CONF_RANGE_FROM, CONF_RANGE_TO
|
||||||
from .types import DimRelativeAction, ToggleAction, LightState, LightControlAction, \
|
from .types import DimRelativeAction, ToggleAction, LightState, LightControlAction, \
|
||||||
AddressableLightState, AddressableSet
|
AddressableLightState, AddressableSet, LightIsOnCondition, LightIsOffCondition
|
||||||
|
|
||||||
|
|
||||||
@automation.register_action('light.toggle', ToggleAction, automation.maybe_simple_id({
|
@automation.register_action('light.toggle', ToggleAction, automation.maybe_simple_id({
|
||||||
@@ -145,3 +145,16 @@ def light_addressable_set_to_code(config, action_id, template_arg, args):
|
|||||||
templ = yield cg.templatable(config[CONF_WHITE], args, cg.uint8, to_exp=rgbw_to_exp)
|
templ = yield cg.templatable(config[CONF_WHITE], args, cg.uint8, to_exp=rgbw_to_exp)
|
||||||
cg.add(var.set_white(templ))
|
cg.add(var.set_white(templ))
|
||||||
yield var
|
yield var
|
||||||
|
|
||||||
|
|
||||||
|
@automation.register_condition('light.is_on', LightIsOnCondition,
|
||||||
|
automation.maybe_simple_id({
|
||||||
|
cv.Required(CONF_ID): cv.use_id(LightState),
|
||||||
|
}))
|
||||||
|
@automation.register_condition('light.is_off', LightIsOffCondition,
|
||||||
|
automation.maybe_simple_id({
|
||||||
|
cv.Required(CONF_ID): cv.use_id(LightState),
|
||||||
|
}))
|
||||||
|
def light_is_on_off_to_code(config, condition_id, template_arg, args):
|
||||||
|
paren = yield cg.get_variable(config[CONF_ID])
|
||||||
|
yield cg.new_Pvariable(condition_id, template_arg, paren)
|
||||||
|
|||||||
@@ -129,7 +129,7 @@ class FlickerLightEffect : public LightEffect {
|
|||||||
LightColorValues out;
|
LightColorValues out;
|
||||||
const float alpha = this->alpha_;
|
const float alpha = this->alpha_;
|
||||||
const float beta = 1.0f - alpha;
|
const float beta = 1.0f - alpha;
|
||||||
out.set_state(remote.get_state());
|
out.set_state(true);
|
||||||
out.set_brightness(remote.get_brightness() * beta + current.get_brightness() * alpha +
|
out.set_brightness(remote.get_brightness() * beta + current.get_brightness() * alpha +
|
||||||
(random_cubic_float() * this->intensity_));
|
(random_cubic_float() * this->intensity_));
|
||||||
out.set_red(remote.get_red() * beta + current.get_red() * alpha + (random_cubic_float() * this->intensity_));
|
out.set_red(remote.get_red() * beta + current.get_red() * alpha + (random_cubic_float() * this->intensity_));
|
||||||
@@ -144,6 +144,7 @@ class FlickerLightEffect : public LightEffect {
|
|||||||
if (traits.get_supports_brightness())
|
if (traits.get_supports_brightness())
|
||||||
call.set_transition_length(0);
|
call.set_transition_length(0);
|
||||||
call.from_light_color_values(out);
|
call.from_light_color_values(out);
|
||||||
|
call.set_state(true);
|
||||||
call.perform();
|
call.perform();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ LightState = light_ns.class_('LightState', cg.Nameable, cg.Component)
|
|||||||
# Fake class for addressable lights
|
# Fake class for addressable lights
|
||||||
AddressableLightState = light_ns.class_('LightState', LightState)
|
AddressableLightState = light_ns.class_('LightState', LightState)
|
||||||
LightOutput = light_ns.class_('LightOutput')
|
LightOutput = light_ns.class_('LightOutput')
|
||||||
AddressableLight = light_ns.class_('AddressableLight')
|
AddressableLight = light_ns.class_('AddressableLight', cg.Component)
|
||||||
AddressableLightRef = AddressableLight.operator('ref')
|
AddressableLightRef = AddressableLight.operator('ref')
|
||||||
LightColorValues = light_ns.class_('LightColorValues')
|
LightColorValues = light_ns.class_('LightColorValues')
|
||||||
|
|
||||||
@@ -16,6 +16,8 @@ ToggleAction = light_ns.class_('ToggleAction', automation.Action)
|
|||||||
LightControlAction = light_ns.class_('LightControlAction', automation.Action)
|
LightControlAction = light_ns.class_('LightControlAction', automation.Action)
|
||||||
DimRelativeAction = light_ns.class_('DimRelativeAction', automation.Action)
|
DimRelativeAction = light_ns.class_('DimRelativeAction', automation.Action)
|
||||||
AddressableSet = light_ns.class_('AddressableSet', automation.Action)
|
AddressableSet = light_ns.class_('AddressableSet', automation.Action)
|
||||||
|
LightIsOnCondition = light_ns.class_('LightIsOnCondition', automation.Condition)
|
||||||
|
LightIsOffCondition = light_ns.class_('LightIsOffCondition', automation.Condition)
|
||||||
|
|
||||||
# Effects
|
# Effects
|
||||||
LightEffect = light_ns.class_('LightEffect')
|
LightEffect = light_ns.class_('LightEffect')
|
||||||
|
|||||||
@@ -41,7 +41,8 @@ MQTTClientComponent = mqtt_ns.class_('MQTTClientComponent', cg.Component)
|
|||||||
MQTTPublishAction = mqtt_ns.class_('MQTTPublishAction', automation.Action)
|
MQTTPublishAction = mqtt_ns.class_('MQTTPublishAction', automation.Action)
|
||||||
MQTTPublishJsonAction = mqtt_ns.class_('MQTTPublishJsonAction', automation.Action)
|
MQTTPublishJsonAction = mqtt_ns.class_('MQTTPublishJsonAction', automation.Action)
|
||||||
MQTTMessageTrigger = mqtt_ns.class_('MQTTMessageTrigger',
|
MQTTMessageTrigger = mqtt_ns.class_('MQTTMessageTrigger',
|
||||||
automation.Trigger.template(cg.std_string))
|
automation.Trigger.template(cg.std_string),
|
||||||
|
cg.Component)
|
||||||
MQTTJsonMessageTrigger = mqtt_ns.class_('MQTTJsonMessageTrigger',
|
MQTTJsonMessageTrigger = mqtt_ns.class_('MQTTJsonMessageTrigger',
|
||||||
automation.Trigger.template(cg.JsonObjectConstRef))
|
automation.Trigger.template(cg.JsonObjectConstRef))
|
||||||
MQTTComponent = mqtt_ns.class_('MQTTComponent', cg.Component)
|
MQTTComponent = mqtt_ns.class_('MQTTComponent', cg.Component)
|
||||||
@@ -104,7 +105,7 @@ CONFIG_SCHEMA = cv.All(cv.Schema({
|
|||||||
cv.Optional(CONF_PORT, default=1883): cv.port,
|
cv.Optional(CONF_PORT, default=1883): cv.port,
|
||||||
cv.Optional(CONF_USERNAME, default=''): cv.string,
|
cv.Optional(CONF_USERNAME, default=''): cv.string,
|
||||||
cv.Optional(CONF_PASSWORD, default=''): cv.string,
|
cv.Optional(CONF_PASSWORD, default=''): cv.string,
|
||||||
cv.Optional(CONF_CLIENT_ID, default=lambda: CORE.name): cv.string,
|
cv.Optional(CONF_CLIENT_ID): cv.string,
|
||||||
cv.Optional(CONF_DISCOVERY, default=True): cv.Any(cv.boolean, cv.one_of("CLEAN", upper=True)),
|
cv.Optional(CONF_DISCOVERY, default=True): cv.Any(cv.boolean, cv.one_of("CLEAN", upper=True)),
|
||||||
cv.Optional(CONF_DISCOVERY_RETAIN, default=True): cv.boolean,
|
cv.Optional(CONF_DISCOVERY_RETAIN, default=True): cv.boolean,
|
||||||
cv.Optional(CONF_DISCOVERY_PREFIX, default="homeassistant"): cv.publish_topic,
|
cv.Optional(CONF_DISCOVERY_PREFIX, default="homeassistant"): cv.publish_topic,
|
||||||
@@ -161,7 +162,8 @@ def to_code(config):
|
|||||||
cg.add(var.set_broker_port(config[CONF_PORT]))
|
cg.add(var.set_broker_port(config[CONF_PORT]))
|
||||||
cg.add(var.set_username(config[CONF_USERNAME]))
|
cg.add(var.set_username(config[CONF_USERNAME]))
|
||||||
cg.add(var.set_password(config[CONF_PASSWORD]))
|
cg.add(var.set_password(config[CONF_PASSWORD]))
|
||||||
cg.add(var.set_client_id(config[CONF_CLIENT_ID]))
|
if CONF_CLIENT_ID in config:
|
||||||
|
cg.add(var.set_client_id(config[CONF_CLIENT_ID]))
|
||||||
|
|
||||||
discovery = config[CONF_DISCOVERY]
|
discovery = config[CONF_DISCOVERY]
|
||||||
discovery_retain = config[CONF_DISCOVERY_RETAIN]
|
discovery_retain = config[CONF_DISCOVERY_RETAIN]
|
||||||
@@ -216,6 +218,7 @@ def to_code(config):
|
|||||||
cg.add(trig.set_qos(conf[CONF_QOS]))
|
cg.add(trig.set_qos(conf[CONF_QOS]))
|
||||||
if CONF_PAYLOAD in conf:
|
if CONF_PAYLOAD in conf:
|
||||||
cg.add(trig.set_payload(conf[CONF_PAYLOAD]))
|
cg.add(trig.set_payload(conf[CONF_PAYLOAD]))
|
||||||
|
yield cg.register_component(trig, conf)
|
||||||
yield automation.build_automation(trig, [(cg.std_string, 'x')], conf)
|
yield automation.build_automation(trig, [(cg.std_string, 'x')], conf)
|
||||||
|
|
||||||
for conf in config.get(CONF_ON_JSON_MESSAGE, []):
|
for conf in config.get(CONF_ON_JSON_MESSAGE, []):
|
||||||
|
|||||||
@@ -15,7 +15,10 @@ namespace mqtt {
|
|||||||
|
|
||||||
static const char *TAG = "mqtt";
|
static const char *TAG = "mqtt";
|
||||||
|
|
||||||
MQTTClientComponent::MQTTClientComponent() { global_mqtt_client = this; }
|
MQTTClientComponent::MQTTClientComponent() {
|
||||||
|
global_mqtt_client = this;
|
||||||
|
this->credentials_.client_id = App.get_name() + "-" + get_mac_address();
|
||||||
|
}
|
||||||
|
|
||||||
// Connection
|
// Connection
|
||||||
void MQTTClientComponent::setup() {
|
void MQTTClientComponent::setup() {
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ from esphome.const import CONF_CLOCK_PIN, CONF_DATA_PIN, CONF_METHOD, CONF_NUM_L
|
|||||||
from esphome.core import CORE
|
from esphome.core import CORE
|
||||||
|
|
||||||
neopixelbus_ns = cg.esphome_ns.namespace('neopixelbus')
|
neopixelbus_ns = cg.esphome_ns.namespace('neopixelbus')
|
||||||
NeoPixelBusLightOutputBase = neopixelbus_ns.class_('NeoPixelBusLightOutputBase', cg.Component,
|
NeoPixelBusLightOutputBase = neopixelbus_ns.class_('NeoPixelBusLightOutputBase',
|
||||||
light.AddressableLight)
|
light.AddressableLight)
|
||||||
NeoPixelRGBLightOutput = neopixelbus_ns.class_('NeoPixelRGBLightOutput', NeoPixelBusLightOutputBase)
|
NeoPixelRGBLightOutput = neopixelbus_ns.class_('NeoPixelRGBLightOutput', NeoPixelBusLightOutputBase)
|
||||||
NeoPixelRGBWLightOutput = neopixelbus_ns.class_('NeoPixelRGBWLightOutput',
|
NeoPixelRGBWLightOutput = neopixelbus_ns.class_('NeoPixelRGBWLightOutput',
|
||||||
|
|||||||
@@ -48,7 +48,7 @@ enum class ESPNeoPixelOrder {
|
|||||||
};
|
};
|
||||||
|
|
||||||
template<typename T_METHOD, typename T_COLOR_FEATURE>
|
template<typename T_METHOD, typename T_COLOR_FEATURE>
|
||||||
class NeoPixelBusLightOutputBase : public Component, public light::AddressableLight {
|
class NeoPixelBusLightOutputBase : public light::AddressableLight {
|
||||||
public:
|
public:
|
||||||
NeoPixelBus<T_COLOR_FEATURE, T_METHOD> *get_controller() const { return this->controller_; }
|
NeoPixelBus<T_COLOR_FEATURE, T_METHOD> *get_controller() const { return this->controller_; }
|
||||||
|
|
||||||
|
|||||||
@@ -33,4 +33,5 @@ def to_code(config):
|
|||||||
conf[CONF_TO] - conf[CONF_FROM] + 1))
|
conf[CONF_TO] - conf[CONF_FROM] + 1))
|
||||||
|
|
||||||
var = cg.new_Pvariable(config[CONF_OUTPUT_ID], segments)
|
var = cg.new_Pvariable(config[CONF_OUTPUT_ID], segments)
|
||||||
|
yield cg.register_component(var, config)
|
||||||
yield light.register_light(var, config)
|
yield light.register_light(var, config)
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ class AddressableSegment {
|
|||||||
int32_t dst_offset_;
|
int32_t dst_offset_;
|
||||||
};
|
};
|
||||||
|
|
||||||
class PartitionLightOutput : public light::AddressableLight, public Component {
|
class PartitionLightOutput : public light::AddressableLight {
|
||||||
public:
|
public:
|
||||||
explicit PartitionLightOutput(std::vector<AddressableSegment> segments) : segments_(segments) {
|
explicit PartitionLightOutput(std::vector<AddressableSegment> segments) : segments_(segments) {
|
||||||
int32_t off = 0;
|
int32_t off = 0;
|
||||||
|
|||||||
@@ -293,7 +293,7 @@ template<typename T, typename D> class RemoteReceiverBinarySensor : public Remot
|
|||||||
bool matches(RemoteReceiveData src) override {
|
bool matches(RemoteReceiveData src) override {
|
||||||
auto proto = T();
|
auto proto = T();
|
||||||
auto res = proto.decode(src);
|
auto res = proto.decode(src);
|
||||||
return res.has_value();
|
return res.has_value() && *res == this->data_;
|
||||||
}
|
}
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|||||||
@@ -37,4 +37,4 @@ def to_code(config):
|
|||||||
|
|
||||||
wwhite = yield cg.get_variable(config[CONF_WARM_WHITE])
|
wwhite = yield cg.get_variable(config[CONF_WARM_WHITE])
|
||||||
cg.add(var.set_warm_white(wwhite))
|
cg.add(var.set_warm_white(wwhite))
|
||||||
cg.add(var.set_warm_white_temperature(config[CONF_COLD_WHITE_COLOR_TEMPERATURE]))
|
cg.add(var.set_warm_white_temperature(config[CONF_WARM_WHITE_COLOR_TEMPERATURE]))
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ class RGBWWLightOutput : public light::LightOutput {
|
|||||||
traits.set_supports_rgb_white_value(true);
|
traits.set_supports_rgb_white_value(true);
|
||||||
traits.set_supports_color_temperature(true);
|
traits.set_supports_color_temperature(true);
|
||||||
traits.set_min_mireds(this->cold_white_temperature_);
|
traits.set_min_mireds(this->cold_white_temperature_);
|
||||||
traits.set_min_mireds(this->warm_white_temperature_);
|
traits.set_max_mireds(this->warm_white_temperature_);
|
||||||
return traits;
|
return traits;
|
||||||
}
|
}
|
||||||
void write_state(light::LightState *state) override {
|
void write_state(light::LightState *state) override {
|
||||||
|
|||||||
@@ -101,15 +101,15 @@ void RotaryEncoderSensor::setup() {
|
|||||||
ESP_LOGCONFIG(TAG, "Setting up Rotary Encoder '%s'...", this->name_.c_str());
|
ESP_LOGCONFIG(TAG, "Setting up Rotary Encoder '%s'...", this->name_.c_str());
|
||||||
this->pin_a_->setup();
|
this->pin_a_->setup();
|
||||||
this->store_.pin_a = this->pin_a_->to_isr();
|
this->store_.pin_a = this->pin_a_->to_isr();
|
||||||
this->pin_a_->attach_interrupt(RotaryEncoderSensorStore::gpio_intr, &this->store_, CHANGE);
|
|
||||||
|
|
||||||
this->pin_b_->setup();
|
this->pin_b_->setup();
|
||||||
this->store_.pin_b = this->pin_b_->to_isr();
|
this->store_.pin_b = this->pin_b_->to_isr();
|
||||||
this->pin_b_->attach_interrupt(RotaryEncoderSensorStore::gpio_intr, &this->store_, CHANGE);
|
|
||||||
|
|
||||||
if (this->pin_i_ != nullptr) {
|
if (this->pin_i_ != nullptr) {
|
||||||
this->pin_i_->setup();
|
this->pin_i_->setup();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
this->pin_a_->attach_interrupt(RotaryEncoderSensorStore::gpio_intr, &this->store_, CHANGE);
|
||||||
|
this->pin_b_->attach_interrupt(RotaryEncoderSensorStore::gpio_intr, &this->store_, CHANGE);
|
||||||
}
|
}
|
||||||
void RotaryEncoderSensor::dump_config() {
|
void RotaryEncoderSensor::dump_config() {
|
||||||
LOG_SENSOR("", "Rotary Encoder", this);
|
LOG_SENSOR("", "Rotary Encoder", this);
|
||||||
|
|||||||
@@ -36,7 +36,7 @@ CONFIG_SCHEMA = cv.All(sensor.sensor_schema(UNIT_STEPS, ICON_ROTATE_RIGHT, 0).ex
|
|||||||
pins.validate_has_interrupt),
|
pins.validate_has_interrupt),
|
||||||
cv.Required(CONF_PIN_B): cv.All(pins.internal_gpio_input_pin_schema,
|
cv.Required(CONF_PIN_B): cv.All(pins.internal_gpio_input_pin_schema,
|
||||||
pins.validate_has_interrupt),
|
pins.validate_has_interrupt),
|
||||||
cv.Optional(CONF_PIN_RESET): pins.internal_gpio_input_pin_schema,
|
cv.Optional(CONF_PIN_RESET): pins.internal_gpio_output_pin_schema,
|
||||||
cv.Optional(CONF_RESOLUTION, default=1): cv.enum(RESOLUTIONS, int=True),
|
cv.Optional(CONF_RESOLUTION, default=1): cv.enum(RESOLUTIONS, int=True),
|
||||||
cv.Optional(CONF_MIN_VALUE): cv.int_,
|
cv.Optional(CONF_MIN_VALUE): cv.int_,
|
||||||
cv.Optional(CONF_MAX_VALUE): cv.int_,
|
cv.Optional(CONF_MAX_VALUE): cv.int_,
|
||||||
@@ -50,7 +50,7 @@ def to_code(config):
|
|||||||
pin_a = yield cg.gpio_pin_expression(config[CONF_PIN_A])
|
pin_a = yield cg.gpio_pin_expression(config[CONF_PIN_A])
|
||||||
cg.add(var.set_pin_a(pin_a))
|
cg.add(var.set_pin_a(pin_a))
|
||||||
pin_b = yield cg.gpio_pin_expression(config[CONF_PIN_B])
|
pin_b = yield cg.gpio_pin_expression(config[CONF_PIN_B])
|
||||||
cg.add(var.set_pin_a(pin_b))
|
cg.add(var.set_pin_b(pin_b))
|
||||||
|
|
||||||
if CONF_PIN_RESET in config:
|
if CONF_PIN_RESET in config:
|
||||||
pin_i = yield cg.gpio_pin_expression(config[CONF_PIN_RESET])
|
pin_i = yield cg.gpio_pin_expression(config[CONF_PIN_RESET])
|
||||||
|
|||||||
@@ -16,8 +16,13 @@ CONFIG_SCHEMA = automation.validate_automation({
|
|||||||
|
|
||||||
|
|
||||||
def to_code(config):
|
def to_code(config):
|
||||||
|
# Register all variables first, so that scripts can use other scripts
|
||||||
|
triggers = []
|
||||||
for conf in config:
|
for conf in config:
|
||||||
trigger = cg.new_Pvariable(conf[CONF_ID])
|
trigger = cg.new_Pvariable(conf[CONF_ID])
|
||||||
|
triggers.append((trigger, conf))
|
||||||
|
|
||||||
|
for trigger, conf in triggers:
|
||||||
yield automation.build_automation(trigger, [], conf)
|
yield automation.build_automation(trigger, [], conf)
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -103,7 +103,7 @@ class SunTrigger : public Trigger<>, public PollingComponent, public Parented<Su
|
|||||||
crossed = this->last_elevation_ >= this->elevation_ && this->elevation_ > current;
|
crossed = this->last_elevation_ >= this->elevation_ && this->elevation_ > current;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (crossed) {
|
if (crossed && !isnan(this->last_elevation_)) {
|
||||||
this->trigger();
|
this->trigger();
|
||||||
}
|
}
|
||||||
this->last_elevation_ = current;
|
this->last_elevation_ = current;
|
||||||
@@ -111,7 +111,7 @@ class SunTrigger : public Trigger<>, public PollingComponent, public Parented<Su
|
|||||||
|
|
||||||
protected:
|
protected:
|
||||||
bool sunrise_;
|
bool sunrise_;
|
||||||
double last_elevation_;
|
double last_elevation_{NAN};
|
||||||
double elevation_;
|
double elevation_;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -70,6 +70,14 @@ def convert_tz(pytz_obj):
|
|||||||
transition_times = tz._utc_transition_times
|
transition_times = tz._utc_transition_times
|
||||||
transition_info = tz._transition_info
|
transition_info = tz._transition_info
|
||||||
idx = max(0, bisect.bisect_right(transition_times, now))
|
idx = max(0, bisect.bisect_right(transition_times, now))
|
||||||
|
if idx >= len(transition_times):
|
||||||
|
tzname = tz.tzname(now)
|
||||||
|
utcoffset = tz.utcoffset(now)
|
||||||
|
_LOGGER.info("Detected timezone '%s' with UTC offset %s",
|
||||||
|
tzname, _tz_timedelta(utcoffset))
|
||||||
|
tzbase = '{}{}'.format(tzname, _tz_timedelta(-1 * utcoffset))
|
||||||
|
return tzbase
|
||||||
|
|
||||||
idx1, idx2 = idx, idx + 1
|
idx1, idx2 = idx, idx + 1
|
||||||
dstoffset1 = transition_info[idx1][1]
|
dstoffset1 = transition_info[idx1][1]
|
||||||
if dstoffset1 == datetime.timedelta(seconds=0):
|
if dstoffset1 == datetime.timedelta(seconds=0):
|
||||||
@@ -244,10 +252,12 @@ def validate_tz(value):
|
|||||||
value = cv.string_strict(value)
|
value = cv.string_strict(value)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
return convert_tz(pytz.timezone(value))
|
pytz_obj = pytz.timezone(value)
|
||||||
except Exception: # pylint: disable=broad-except
|
except pytz.UnknownTimeZoneError: # pylint: disable=broad-except
|
||||||
return value
|
return value
|
||||||
|
|
||||||
|
return convert_tz(pytz_obj)
|
||||||
|
|
||||||
|
|
||||||
TIME_SCHEMA = cv.Schema({
|
TIME_SCHEMA = cv.Schema({
|
||||||
cv.Optional(CONF_TIMEZONE, default=detect_tz): validate_tz,
|
cv.Optional(CONF_TIMEZONE, default=detect_tz): validate_tz,
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ MODELS = {
|
|||||||
'2.90in': ('a', WaveshareEPaperTypeAModel.WAVESHARE_EPAPER_2_9_IN),
|
'2.90in': ('a', WaveshareEPaperTypeAModel.WAVESHARE_EPAPER_2_9_IN),
|
||||||
'2.70in': ('b', WaveshareEPaper2P7In),
|
'2.70in': ('b', WaveshareEPaper2P7In),
|
||||||
'4.20in': ('b', WaveshareEPaper4P2In),
|
'4.20in': ('b', WaveshareEPaper4P2In),
|
||||||
'7.50in': ('b', WaveshareEPaperTypeBModel),
|
'7.50in': ('b', WaveshareEPaper7P5In),
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -476,6 +476,7 @@ void WiFiComponent::wifi_scan_done_callback_(void *arg, STATUS status) {
|
|||||||
|
|
||||||
if (status != OK) {
|
if (status != OK) {
|
||||||
ESP_LOGV(TAG, "Scan failed! %d", status);
|
ESP_LOGV(TAG, "Scan failed! %d", status);
|
||||||
|
this->retry_connect();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
auto *head = reinterpret_cast<bss_info *>(arg);
|
auto *head = reinterpret_cast<bss_info *>(arg);
|
||||||
|
|||||||
@@ -1175,7 +1175,6 @@ def validate_registry_entry(name, registry):
|
|||||||
if not isinstance(value, dict):
|
if not isinstance(value, dict):
|
||||||
raise Invalid(u"{} must consist of key-value mapping! Got {}"
|
raise Invalid(u"{} must consist of key-value mapping! Got {}"
|
||||||
u"".format(name.title(), value))
|
u"".format(name.title(), value))
|
||||||
value = base_schema(value)
|
|
||||||
key = next((x for x in value if x not in ignore_keys), None)
|
key = next((x for x in value if x not in ignore_keys), None)
|
||||||
if key is None:
|
if key is None:
|
||||||
raise Invalid(u"Key missing from {}! Got {}".format(name, value))
|
raise Invalid(u"Key missing from {}! Got {}".format(name, value))
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
MAJOR_VERSION = 1
|
MAJOR_VERSION = 1
|
||||||
MINOR_VERSION = 13
|
MINOR_VERSION = 13
|
||||||
PATCH_VERSION = '0b6'
|
PATCH_VERSION = '3'
|
||||||
__short_version__ = '{}.{}'.format(MAJOR_VERSION, MINOR_VERSION)
|
__short_version__ = '{}.{}'.format(MAJOR_VERSION, MINOR_VERSION)
|
||||||
__version__ = '{}.{}'.format(__short_version__, PATCH_VERSION)
|
__version__ = '{}.{}'.format(__short_version__, PATCH_VERSION)
|
||||||
|
|
||||||
|
|||||||
@@ -38,7 +38,7 @@ def validate_board(value):
|
|||||||
|
|
||||||
if value not in board_pins:
|
if value not in board_pins:
|
||||||
raise cv.Invalid(u"Could not find board '{}'. Valid boards are {}".format(
|
raise cv.Invalid(u"Could not find board '{}'. Valid boards are {}".format(
|
||||||
value, u', '.join(pins.ESP8266_BOARD_PINS.keys())))
|
value, u', '.join(sorted(board_pins.keys()))))
|
||||||
return value
|
return value
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -169,7 +169,7 @@ def websocket_class(cls):
|
|||||||
if not hasattr(cls, '_message_handlers'):
|
if not hasattr(cls, '_message_handlers'):
|
||||||
cls._message_handlers = {}
|
cls._message_handlers = {}
|
||||||
|
|
||||||
for _, method in cls.__dict__.iteritems():
|
for _, method in cls.__dict__.items():
|
||||||
if hasattr(method, "_message_handler"):
|
if hasattr(method, "_message_handler"):
|
||||||
cls._message_handlers[method._message_handler] = method
|
cls._message_handlers[method._message_handler] = method
|
||||||
|
|
||||||
|
|||||||
@@ -5,12 +5,13 @@
|
|||||||
document.addEventListener('DOMContentLoaded', () => {
|
document.addEventListener('DOMContentLoaded', () => {
|
||||||
M.AutoInit(document.body);
|
M.AutoInit(document.body);
|
||||||
});
|
});
|
||||||
let wsProtocol = "ws:";
|
const loc = window.location;
|
||||||
if (window.location.protocol === "https:") {
|
const wsLoc = new URL("./",`${loc.protocol}//${loc.host}${loc.pathname}`);
|
||||||
wsProtocol = 'wss:';
|
wsLoc.protocol = 'ws:';
|
||||||
|
if (loc.protocol === "https:") {
|
||||||
|
wsLoc.protocol = 'wss:';
|
||||||
}
|
}
|
||||||
const wsUrl = `${wsProtocol}//${window.location.host}${window.location.pathname}`;
|
const wsUrl = wsLoc.href;
|
||||||
|
|
||||||
|
|
||||||
// ============================= Color Log Parsing =============================
|
// ============================= Color Log Parsing =============================
|
||||||
const initializeColorState = () => {
|
const initializeColorState = () => {
|
||||||
|
|||||||
@@ -469,7 +469,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="footer-copyright">
|
<div class="footer-copyright">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
© 2019 Copyright Otto Winter, Made with <a class="grey-text text-lighten-4" href="https://materializecss.com/" target="_blank">Materialize</a>
|
© 2019 Copyright ESPHome, Made with <a class="grey-text text-lighten-4" href="https://materializecss.com/" target="_blank">Materialize</a>
|
||||||
<a class="grey-text text-lighten-4 right" href="{{ docs_link }}" target="_blank" rel="noreferrer">ESPHome {{ version }} Documentation</a>
|
<a class="grey-text text-lighten-4 right" href="{{ docs_link }}" target="_blank" rel="noreferrer">ESPHome {{ version }} Documentation</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -65,7 +65,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="footer-copyright">
|
<div class="footer-copyright">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
© 2019 Copyright Otto Winter, Made with <a class="grey-text text-lighten-4" href="https://materializecss.com/" target="_blank">Materialize</a>
|
© 2019 Copyright ESPHome, Made with <a class="grey-text text-lighten-4" href="https://materializecss.com/" target="_blank">Materialize</a>
|
||||||
<a class="grey-text text-lighten-4 right" href="{{ docs_link }}"
|
<a class="grey-text text-lighten-4 right" href="{{ docs_link }}"
|
||||||
target="_blank">ESPHome {{ version }} Documentation</a>
|
target="_blank">ESPHome {{ version }} Documentation</a>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -7,6 +7,7 @@ import re
|
|||||||
import subprocess
|
import subprocess
|
||||||
|
|
||||||
from esphome.core import CORE
|
from esphome.core import CORE
|
||||||
|
from esphome.py_compat import IS_PY2
|
||||||
from esphome.util import run_external_command, run_external_process
|
from esphome.util import run_external_command, run_external_process
|
||||||
|
|
||||||
_LOGGER = logging.getLogger(__name__)
|
_LOGGER = logging.getLogger(__name__)
|
||||||
@@ -17,12 +18,10 @@ def patch_structhash():
|
|||||||
# removed/added. This might have unintended consequences, but this improves compile
|
# removed/added. This might have unintended consequences, but this improves compile
|
||||||
# times greatly when adding/removing components and a simple clean build solves
|
# times greatly when adding/removing components and a simple clean build solves
|
||||||
# all issues
|
# all issues
|
||||||
|
# pylint: disable=no-member,no-name-in-module
|
||||||
from platformio.commands import run
|
from platformio.commands import run
|
||||||
from platformio import util
|
from platformio import util
|
||||||
try:
|
from platformio.util import get_project_dir
|
||||||
from platformio.util import get_project_dir
|
|
||||||
except ImportError:
|
|
||||||
from platformio.project.helpers import get_project_dir
|
|
||||||
from os.path import join, isdir, getmtime, isfile
|
from os.path import join, isdir, getmtime, isfile
|
||||||
from os import makedirs
|
from os import makedirs
|
||||||
|
|
||||||
@@ -69,7 +68,8 @@ def run_platformio_cli(*args, **kwargs):
|
|||||||
if os.environ.get('ESPHOME_USE_SUBPROCESS') is None:
|
if os.environ.get('ESPHOME_USE_SUBPROCESS') is None:
|
||||||
import platformio.__main__
|
import platformio.__main__
|
||||||
try:
|
try:
|
||||||
patch_structhash()
|
if IS_PY2:
|
||||||
|
patch_structhash()
|
||||||
except Exception: # pylint: disable=broad-except
|
except Exception: # pylint: disable=broad-except
|
||||||
# Ignore when patch fails
|
# Ignore when patch fails
|
||||||
pass
|
pass
|
||||||
|
|||||||
@@ -78,8 +78,12 @@ def indexbytes(buf, i):
|
|||||||
if IS_PY2:
|
if IS_PY2:
|
||||||
def decode_text(data, encoding='utf-8', errors='strict'):
|
def decode_text(data, encoding='utf-8', errors='strict'):
|
||||||
# type: (str, str, str) -> unicode
|
# type: (str, str, str) -> unicode
|
||||||
|
if isinstance(data, unicode):
|
||||||
|
return data
|
||||||
return unicode(data, encoding=encoding, errors=errors)
|
return unicode(data, encoding=encoding, errors=errors)
|
||||||
else:
|
else:
|
||||||
def decode_text(data, encoding='utf-8', errors='strict'):
|
def decode_text(data, encoding='utf-8', errors='strict'):
|
||||||
# type: (bytes, str, str) -> str
|
# type: (bytes, str, str) -> str
|
||||||
|
if isinstance(data, str):
|
||||||
|
return data
|
||||||
return data.decode(encoding=encoding, errors=errors)
|
return data.decode(encoding=encoding, errors=errors)
|
||||||
|
|||||||
@@ -84,6 +84,8 @@ mqtt:
|
|||||||
condition:
|
condition:
|
||||||
- wifi.connected:
|
- wifi.connected:
|
||||||
- mqtt.connected:
|
- mqtt.connected:
|
||||||
|
- light.is_on: kitchen
|
||||||
|
- light.is_off: kitchen
|
||||||
then:
|
then:
|
||||||
- lambda: |-
|
- lambda: |-
|
||||||
int data = x["my_data"];
|
int data = x["my_data"];
|
||||||
@@ -103,6 +105,9 @@ mqtt:
|
|||||||
- light.control:
|
- light.control:
|
||||||
id: living_room_lights
|
id: living_room_lights
|
||||||
brightness: !lambda 'return id(living_room_lights).current_values.get_brightness() + 0.5;'
|
brightness: !lambda 'return id(living_room_lights).current_values.get_brightness() + 0.5;'
|
||||||
|
- light.dim_relative:
|
||||||
|
id: living_room_lights
|
||||||
|
relative_brightness: 5%
|
||||||
- uart.write:
|
- uart.write:
|
||||||
id: uart0
|
id: uart0
|
||||||
data: Hello World
|
data: Hello World
|
||||||
|
|||||||
Reference in New Issue
Block a user