mirror of
https://github.com/esphome/esphome.git
synced 2024-12-22 13:34:54 +01:00
commit
b860a317b9
14 changed files with 61 additions and 28 deletions
|
@ -102,10 +102,14 @@ void CCS811Component::send_env_data_() {
|
||||||
// temperature has a 25° offset to allow negative temperatures
|
// temperature has a 25° offset to allow negative temperatures
|
||||||
temperature += 25;
|
temperature += 25;
|
||||||
|
|
||||||
// only 0.5 fractions are supported (application note)
|
// At page 18 of:
|
||||||
auto hum_value = static_cast<uint8_t>(roundf(humidity * 2));
|
// https://cdn.sparkfun.com/datasheets/BreakoutBoards/CCS811_Programming_Guide.pdf
|
||||||
auto temp_value = static_cast<uint8_t>(roundf(temperature * 2));
|
// Reference code:
|
||||||
this->write_bytes(0x05, {hum_value, 0x00, temp_value, 0x00});
|
// https://github.com/adafruit/Adafruit_CCS811/blob/0990f5c620354d8bc087c4706bec091d8e6e5dfd/Adafruit_CCS811.cpp#L135-L142
|
||||||
|
uint16_t hum_conv = static_cast<uint16_t>(lroundf(humidity * 512.0f + 0.5f));
|
||||||
|
uint16_t temp_conv = static_cast<uint16_t>(lroundf(temperature * 512.0f + 0.5f));
|
||||||
|
this->write_bytes(0x05, {(uint8_t)((hum_conv >> 8) & 0xff), (uint8_t)((hum_conv & 0xff)),
|
||||||
|
(uint8_t)((temp_conv >> 8) & 0xff), (uint8_t)((temp_conv & 0xff))});
|
||||||
}
|
}
|
||||||
void CCS811Component::dump_config() {
|
void CCS811Component::dump_config() {
|
||||||
ESP_LOGCONFIG(TAG, "CCS811");
|
ESP_LOGCONFIG(TAG, "CCS811");
|
||||||
|
|
|
@ -16,7 +16,7 @@ void DS1307Component::setup() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void DS1307Component::update() { this->read(); }
|
void DS1307Component::update() { this->read_time(); }
|
||||||
|
|
||||||
void DS1307Component::dump_config() {
|
void DS1307Component::dump_config() {
|
||||||
ESP_LOGCONFIG(TAG, "DS1307:");
|
ESP_LOGCONFIG(TAG, "DS1307:");
|
||||||
|
@ -29,7 +29,7 @@ void DS1307Component::dump_config() {
|
||||||
|
|
||||||
float DS1307Component::get_setup_priority() const { return setup_priority::DATA; }
|
float DS1307Component::get_setup_priority() const { return setup_priority::DATA; }
|
||||||
|
|
||||||
void DS1307Component::read() {
|
void DS1307Component::read_time() {
|
||||||
if (!this->read_rtc_()) {
|
if (!this->read_rtc_()) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -53,7 +53,7 @@ void DS1307Component::read() {
|
||||||
time::RealTimeClock::synchronize_epoch_(rtc_time.timestamp);
|
time::RealTimeClock::synchronize_epoch_(rtc_time.timestamp);
|
||||||
}
|
}
|
||||||
|
|
||||||
void DS1307Component::write() {
|
void DS1307Component::write_time() {
|
||||||
auto now = time::RealTimeClock::utcnow();
|
auto now = time::RealTimeClock::utcnow();
|
||||||
if (!now.is_valid()) {
|
if (!now.is_valid()) {
|
||||||
ESP_LOGE(TAG, "Invalid system time, not syncing to RTC.");
|
ESP_LOGE(TAG, "Invalid system time, not syncing to RTC.");
|
||||||
|
|
|
@ -13,8 +13,8 @@ class DS1307Component : public time::RealTimeClock, public i2c::I2CDevice {
|
||||||
void update() override;
|
void update() override;
|
||||||
void dump_config() override;
|
void dump_config() override;
|
||||||
float get_setup_priority() const override;
|
float get_setup_priority() const override;
|
||||||
void read();
|
void read_time();
|
||||||
void write();
|
void write_time();
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
bool read_rtc_();
|
bool read_rtc_();
|
||||||
|
@ -59,12 +59,12 @@ class DS1307Component : public time::RealTimeClock, public i2c::I2CDevice {
|
||||||
|
|
||||||
template<typename... Ts> class WriteAction : public Action<Ts...>, public Parented<DS1307Component> {
|
template<typename... Ts> class WriteAction : public Action<Ts...>, public Parented<DS1307Component> {
|
||||||
public:
|
public:
|
||||||
void play(Ts... x) override { this->parent_->write(); }
|
void play(Ts... x) override { this->parent_->write_time(); }
|
||||||
};
|
};
|
||||||
|
|
||||||
template<typename... Ts> class ReadAction : public Action<Ts...>, public Parented<DS1307Component> {
|
template<typename... Ts> class ReadAction : public Action<Ts...>, public Parented<DS1307Component> {
|
||||||
public:
|
public:
|
||||||
void play(Ts... x) override { this->parent_->read(); }
|
void play(Ts... x) override { this->parent_->read_time(); }
|
||||||
};
|
};
|
||||||
} // namespace ds1307
|
} // namespace ds1307
|
||||||
} // namespace esphome
|
} // namespace esphome
|
||||||
|
|
|
@ -18,19 +18,19 @@ CONFIG_SCHEMA = time.TIME_SCHEMA.extend({
|
||||||
}).extend(i2c.i2c_device_schema(0x68))
|
}).extend(i2c.i2c_device_schema(0x68))
|
||||||
|
|
||||||
|
|
||||||
@automation.register_action('ds1307.write', WriteAction, cv.Schema({
|
@automation.register_action('ds1307.write_time', WriteAction, cv.Schema({
|
||||||
cv.GenerateID(): cv.use_id(DS1307Component),
|
cv.GenerateID(): cv.use_id(DS1307Component),
|
||||||
}))
|
}))
|
||||||
def ds1307_write_to_code(config, action_id, template_arg, args):
|
def ds1307_write_time_to_code(config, action_id, template_arg, args):
|
||||||
var = cg.new_Pvariable(action_id, template_arg)
|
var = cg.new_Pvariable(action_id, template_arg)
|
||||||
yield cg.register_parented(var, config[CONF_ID])
|
yield cg.register_parented(var, config[CONF_ID])
|
||||||
yield var
|
yield var
|
||||||
|
|
||||||
|
|
||||||
@automation.register_action('ds1307.read', ReadAction, automation.maybe_simple_id({
|
@automation.register_action('ds1307.read_time', ReadAction, automation.maybe_simple_id({
|
||||||
cv.GenerateID(): cv.use_id(DS1307Component),
|
cv.GenerateID(): cv.use_id(DS1307Component),
|
||||||
}))
|
}))
|
||||||
def ds1307_read_to_code(config, action_id, template_arg, args):
|
def ds1307_read_time_to_code(config, action_id, template_arg, args):
|
||||||
var = cg.new_Pvariable(action_id, template_arg)
|
var = cg.new_Pvariable(action_id, template_arg)
|
||||||
yield cg.register_parented(var, config[CONF_ID])
|
yield cg.register_parented(var, config[CONF_ID])
|
||||||
yield var
|
yield var
|
||||||
|
|
|
@ -149,10 +149,10 @@ struct ESPColor {
|
||||||
return ESPColor(uint8_t((uint16_t(r) * 255U / max_rgb)), uint8_t((uint16_t(g) * 255U / max_rgb)),
|
return ESPColor(uint8_t((uint16_t(r) * 255U / max_rgb)), uint8_t((uint16_t(g) * 255U / max_rgb)),
|
||||||
uint8_t((uint16_t(b) * 255U / max_rgb)), w);
|
uint8_t((uint16_t(b) * 255U / max_rgb)), w);
|
||||||
}
|
}
|
||||||
ESPColor fade_to_white(uint8_t amnt) { return ESPColor(255, 255, 255, 255) - (*this * amnt); }
|
ESPColor fade_to_white(uint8_t amnt) const { return ESPColor(255, 255, 255, 255) - (*this * amnt); }
|
||||||
ESPColor fade_to_black(uint8_t amnt) { return *this * amnt; }
|
ESPColor fade_to_black(uint8_t amnt) const { return *this * amnt; }
|
||||||
ESPColor lighten(uint8_t delta) { return *this + delta; }
|
ESPColor lighten(uint8_t delta) const { return *this + delta; }
|
||||||
ESPColor darken(uint8_t delta) { return *this - delta; }
|
ESPColor darken(uint8_t delta) const { return *this - delta; }
|
||||||
|
|
||||||
static const ESPColor BLACK;
|
static const ESPColor BLACK;
|
||||||
static const ESPColor WHITE;
|
static const ESPColor WHITE;
|
||||||
|
|
|
@ -54,6 +54,7 @@ void SNTPComponent::loop() {
|
||||||
char buf[128];
|
char buf[128];
|
||||||
time.strftime(buf, sizeof(buf), "%c");
|
time.strftime(buf, sizeof(buf), "%c");
|
||||||
ESP_LOGD(TAG, "Synchronized time: %s", buf);
|
ESP_LOGD(TAG, "Synchronized time: %s", buf);
|
||||||
|
this->time_sync_callback_.call();
|
||||||
this->has_time_ = true;
|
this->has_time_ = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -454,6 +454,7 @@ void HOT ST7735::write_display_data_() {
|
||||||
} else {
|
} else {
|
||||||
this->write_array(this->buffer_, this->get_buffer_length());
|
this->write_array(this->buffer_, this->get_buffer_length());
|
||||||
}
|
}
|
||||||
|
this->disable();
|
||||||
}
|
}
|
||||||
|
|
||||||
void ST7735::spi_master_write_addr_(uint16_t addr1, uint16_t addr2) {
|
void ST7735::spi_master_write_addr_(uint16_t addr1, uint16_t addr2) {
|
||||||
|
|
|
@ -11,8 +11,8 @@ import esphome.codegen as cg
|
||||||
import esphome.config_validation as cv
|
import esphome.config_validation as cv
|
||||||
from esphome import automation
|
from esphome import automation
|
||||||
from esphome.const import CONF_ID, CONF_CRON, CONF_DAYS_OF_MONTH, CONF_DAYS_OF_WEEK, CONF_HOURS, \
|
from esphome.const import CONF_ID, CONF_CRON, CONF_DAYS_OF_MONTH, CONF_DAYS_OF_WEEK, CONF_HOURS, \
|
||||||
CONF_MINUTES, CONF_MONTHS, CONF_ON_TIME, CONF_SECONDS, CONF_TIMEZONE, CONF_TRIGGER_ID, \
|
CONF_MINUTES, CONF_MONTHS, CONF_ON_TIME, CONF_ON_TIME_SYNC, CONF_SECONDS, CONF_TIMEZONE, \
|
||||||
CONF_AT, CONF_SECOND, CONF_HOUR, CONF_MINUTE
|
CONF_TRIGGER_ID, CONF_AT, CONF_SECOND, CONF_HOUR, CONF_MINUTE
|
||||||
from esphome.core import coroutine, coroutine_with_priority
|
from esphome.core import coroutine, coroutine_with_priority
|
||||||
from esphome.automation import Condition
|
from esphome.automation import Condition
|
||||||
|
|
||||||
|
@ -24,6 +24,7 @@ IS_PLATFORM_COMPONENT = True
|
||||||
time_ns = cg.esphome_ns.namespace('time')
|
time_ns = cg.esphome_ns.namespace('time')
|
||||||
RealTimeClock = time_ns.class_('RealTimeClock', cg.PollingComponent)
|
RealTimeClock = time_ns.class_('RealTimeClock', cg.PollingComponent)
|
||||||
CronTrigger = time_ns.class_('CronTrigger', automation.Trigger.template(), cg.Component)
|
CronTrigger = time_ns.class_('CronTrigger', automation.Trigger.template(), cg.Component)
|
||||||
|
SyncTrigger = time_ns.class_('SyncTrigger', automation.Trigger.template(), cg.Component)
|
||||||
ESPTime = time_ns.struct('ESPTime')
|
ESPTime = time_ns.struct('ESPTime')
|
||||||
TimeHasTimeCondition = time_ns.class_('TimeHasTimeCondition', Condition)
|
TimeHasTimeCondition = time_ns.class_('TimeHasTimeCondition', Condition)
|
||||||
|
|
||||||
|
@ -294,6 +295,9 @@ TIME_SCHEMA = cv.Schema({
|
||||||
cv.Optional(CONF_CRON): validate_cron_raw,
|
cv.Optional(CONF_CRON): validate_cron_raw,
|
||||||
cv.Optional(CONF_AT): validate_time_at,
|
cv.Optional(CONF_AT): validate_time_at,
|
||||||
}, validate_cron_keys),
|
}, validate_cron_keys),
|
||||||
|
cv.Optional(CONF_ON_TIME_SYNC): automation.validate_automation({
|
||||||
|
cv.GenerateID(CONF_TRIGGER_ID): cv.declare_id(SyncTrigger),
|
||||||
|
}),
|
||||||
}).extend(cv.polling_component_schema('15min'))
|
}).extend(cv.polling_component_schema('15min'))
|
||||||
|
|
||||||
|
|
||||||
|
@ -320,6 +324,12 @@ def setup_time_core_(time_var, config):
|
||||||
yield cg.register_component(trigger, conf)
|
yield cg.register_component(trigger, conf)
|
||||||
yield automation.build_automation(trigger, [], conf)
|
yield automation.build_automation(trigger, [], conf)
|
||||||
|
|
||||||
|
for conf in config.get(CONF_ON_TIME_SYNC, []):
|
||||||
|
trigger = cg.new_Pvariable(conf[CONF_TRIGGER_ID], time_var)
|
||||||
|
|
||||||
|
yield cg.register_component(trigger, conf)
|
||||||
|
yield automation.build_automation(trigger, [], conf)
|
||||||
|
|
||||||
|
|
||||||
@coroutine
|
@coroutine
|
||||||
def register_time(time_var, config):
|
def register_time(time_var, config):
|
||||||
|
|
|
@ -75,5 +75,9 @@ void CronTrigger::add_days_of_week(const std::vector<uint8_t> &days_of_week) {
|
||||||
}
|
}
|
||||||
float CronTrigger::get_setup_priority() const { return setup_priority::HARDWARE; }
|
float CronTrigger::get_setup_priority() const { return setup_priority::HARDWARE; }
|
||||||
|
|
||||||
|
SyncTrigger::SyncTrigger(RealTimeClock *rtc) : rtc_(rtc) {
|
||||||
|
rtc->add_on_time_sync_callback([this]() { this->trigger(); });
|
||||||
|
}
|
||||||
|
|
||||||
} // namespace time
|
} // namespace time
|
||||||
} // namespace esphome
|
} // namespace esphome
|
||||||
|
|
|
@ -37,5 +37,12 @@ class CronTrigger : public Trigger<>, public Component {
|
||||||
optional<ESPTime> last_check_;
|
optional<ESPTime> last_check_;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
class SyncTrigger : public Trigger<>, public Component {
|
||||||
|
public:
|
||||||
|
explicit SyncTrigger(RealTimeClock *rtc);
|
||||||
|
|
||||||
|
protected:
|
||||||
|
RealTimeClock *rtc_;
|
||||||
|
};
|
||||||
} // namespace time
|
} // namespace time
|
||||||
} // namespace esphome
|
} // namespace esphome
|
||||||
|
|
|
@ -38,6 +38,8 @@ void RealTimeClock::synchronize_epoch_(uint32_t epoch) {
|
||||||
char buf[128];
|
char buf[128];
|
||||||
time.strftime(buf, sizeof(buf), "%c");
|
time.strftime(buf, sizeof(buf), "%c");
|
||||||
ESP_LOGD(TAG, "Synchronized time: %s", buf);
|
ESP_LOGD(TAG, "Synchronized time: %s", buf);
|
||||||
|
|
||||||
|
this->time_sync_callback_.call();
|
||||||
}
|
}
|
||||||
|
|
||||||
size_t ESPTime::strftime(char *buffer, size_t buffer_len, const char *format) {
|
size_t ESPTime::strftime(char *buffer, size_t buffer_len, const char *format) {
|
||||||
|
|
|
@ -127,11 +127,17 @@ class RealTimeClock : public PollingComponent {
|
||||||
|
|
||||||
void call_setup() override;
|
void call_setup() override;
|
||||||
|
|
||||||
|
void add_on_time_sync_callback(std::function<void()> callback) {
|
||||||
|
this->time_sync_callback_.add(std::move(callback));
|
||||||
|
};
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
/// Report a unix epoch as current time.
|
/// Report a unix epoch as current time.
|
||||||
void synchronize_epoch_(uint32_t epoch);
|
void synchronize_epoch_(uint32_t epoch);
|
||||||
|
|
||||||
std::string timezone_{};
|
std::string timezone_{};
|
||||||
|
|
||||||
|
CallbackManager<void()> time_sync_callback_;
|
||||||
};
|
};
|
||||||
|
|
||||||
template<typename... Ts> class TimeHasTimeCondition : public Condition<Ts...> {
|
template<typename... Ts> class TimeHasTimeCondition : public Condition<Ts...> {
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
MAJOR_VERSION = 1
|
MAJOR_VERSION = 1
|
||||||
MINOR_VERSION = 16
|
MINOR_VERSION = 16
|
||||||
PATCH_VERSION = '0b4'
|
PATCH_VERSION = '0b5'
|
||||||
__short_version__ = f'{MAJOR_VERSION}.{MINOR_VERSION}'
|
__short_version__ = f'{MAJOR_VERSION}.{MINOR_VERSION}'
|
||||||
__version__ = f'{__short_version__}.{PATCH_VERSION}'
|
__version__ = f'{__short_version__}.{PATCH_VERSION}'
|
||||||
|
|
||||||
|
@ -350,6 +350,7 @@ CONF_ON_SHUTDOWN = 'on_shutdown'
|
||||||
CONF_ON_STATE = 'on_state'
|
CONF_ON_STATE = 'on_state'
|
||||||
CONF_ON_TAG = 'on_tag'
|
CONF_ON_TAG = 'on_tag'
|
||||||
CONF_ON_TIME = 'on_time'
|
CONF_ON_TIME = 'on_time'
|
||||||
|
CONF_ON_TIME_SYNC = 'on_time_sync'
|
||||||
CONF_ON_TURN_OFF = 'on_turn_off'
|
CONF_ON_TURN_OFF = 'on_turn_off'
|
||||||
CONF_ON_TURN_ON = 'on_turn_on'
|
CONF_ON_TURN_ON = 'on_turn_on'
|
||||||
CONF_ON_VALUE = 'on_value'
|
CONF_ON_VALUE = 'on_value'
|
||||||
|
|
|
@ -1854,12 +1854,9 @@ time:
|
||||||
then:
|
then:
|
||||||
- lambda: 'ESP_LOGD("main", "time");'
|
- lambda: 'ESP_LOGD("main", "time");'
|
||||||
- platform: gps
|
- platform: gps
|
||||||
update_interval: 1h
|
on_time_sync:
|
||||||
on_time:
|
|
||||||
seconds: 0
|
|
||||||
minutes: /15
|
|
||||||
then:
|
then:
|
||||||
ds1307.write:
|
ds1307.write_time:
|
||||||
id: ds1307_time
|
id: ds1307_time
|
||||||
- platform: ds1307
|
- platform: ds1307
|
||||||
id: ds1307_time
|
id: ds1307_time
|
||||||
|
@ -1867,7 +1864,7 @@ time:
|
||||||
on_time:
|
on_time:
|
||||||
seconds: 0
|
seconds: 0
|
||||||
then:
|
then:
|
||||||
ds1307.read
|
ds1307.read_time
|
||||||
|
|
||||||
cover:
|
cover:
|
||||||
- platform: template
|
- platform: template
|
||||||
|
|
Loading…
Reference in a new issue