mirror of
https://github.com/Threnklyn/esphome-dev.git
synced 2026-05-19 04:33:27 +02:00
6682c43dfa
## Description: Move esphome-core codebase into esphome (and a bunch of other refactors). See https://github.com/esphome/feature-requests/issues/97 Yes this is a shit ton of work and no there's no way to automate it :( But it will be worth it 👍 Progress: - Core support (file copy etc): 80% - Base Abstractions (light, switch): ~50% - Integrations: ~10% - Working? Yes, (but only with ported components). Other refactors: - Moves all codegen related stuff into a single class: `esphome.codegen` (imported as `cg`) - Rework coroutine syntax - Move from `component/platform.py` to `domain/component.py` structure as with HA - Move all defaults out of C++ and into config validation. - Remove `make_...` helpers from Application class. Reason: Merge conflicts with every single new integration. - Pointer Variables are stored globally instead of locally in setup(). Reason: stack size limit. Future work: - Rework const.py - Move all `CONF_...` into a conf class (usage `conf.UPDATE_INTERVAL` vs `CONF_UPDATE_INTERVAL`). Reason: Less convoluted import block - Enable loading from `custom_components` folder. **Related issue (if applicable):** https://github.com/esphome/feature-requests/issues/97 **Pull request in [esphome-docs](https://github.com/esphome/esphome-docs) with documentation (if applicable):** esphome/esphome-docs#<esphome-docs PR number goes here> ## Checklist: - [ ] The code change is tested and works locally. - [ ] Tests have been added to verify that the new code works (under `tests/` folder). If user exposed functionality or configuration variables are added/changed: - [ ] Documentation added/updated in [esphomedocs](https://github.com/OttoWinter/esphomedocs).
70 lines
1.9 KiB
C++
70 lines
1.9 KiB
C++
#pragma once
|
|
|
|
#include "esphome/core/component.h"
|
|
#include "esphome/components/sensor/sensor.h"
|
|
#include "esphome/components/i2c/i2c.h"
|
|
|
|
namespace esphome {
|
|
namespace ads1115 {
|
|
|
|
enum ADS1115Multiplexer {
|
|
ADS1115_MULTIPLEXER_P0_N1 = 0b000,
|
|
ADS1115_MULTIPLEXER_P0_N3 = 0b001,
|
|
ADS1115_MULTIPLEXER_P1_N3 = 0b010,
|
|
ADS1115_MULTIPLEXER_P2_N3 = 0b011,
|
|
ADS1115_MULTIPLEXER_P0_NG = 0b100,
|
|
ADS1115_MULTIPLEXER_P1_NG = 0b101,
|
|
ADS1115_MULTIPLEXER_P2_NG = 0b110,
|
|
ADS1115_MULTIPLEXER_P3_NG = 0b111,
|
|
};
|
|
|
|
enum ADS1115Gain {
|
|
ADS1115_GAIN_6P144 = 0b000,
|
|
ADS1115_GAIN_4P096 = 0b001,
|
|
ADS1115_GAIN_2P048 = 0b010,
|
|
ADS1115_GAIN_1P024 = 0b011,
|
|
ADS1115_GAIN_0P512 = 0b100,
|
|
ADS1115_GAIN_0P256 = 0b101,
|
|
};
|
|
|
|
class ADS1115Sensor;
|
|
|
|
class ADS1115Component : public Component, public i2c::I2CDevice {
|
|
public:
|
|
void register_sensor(ADS1115Sensor *obj) { this->sensors_.push_back(obj); }
|
|
/// Set up the internal sensor array.
|
|
void setup() override;
|
|
void dump_config() override;
|
|
/// HARDWARE_LATE setup priority
|
|
float get_setup_priority() const override;
|
|
|
|
protected:
|
|
/// Helper method to request a measurement from a sensor.
|
|
void request_measurement_(ADS1115Sensor *sensor);
|
|
|
|
std::vector<ADS1115Sensor *> sensors_;
|
|
};
|
|
|
|
/// Internal holder class that is in instance of Sensor so that the hub can create individual sensors.
|
|
class ADS1115Sensor : public sensor::Sensor {
|
|
public:
|
|
ADS1115Sensor(const std::string &name, uint32_t update_interval)
|
|
: sensor::Sensor(name), update_interval_(update_interval) {}
|
|
|
|
void set_multiplexer(ADS1115Multiplexer multiplexer);
|
|
void set_gain(ADS1115Gain gain);
|
|
|
|
// ========== INTERNAL METHODS ==========
|
|
// (In most use cases you won't need these)
|
|
uint8_t get_multiplexer() const;
|
|
uint8_t get_gain() const;
|
|
|
|
protected:
|
|
ADS1115Multiplexer multiplexer_;
|
|
ADS1115Gain gain_;
|
|
uint32_t update_interval_;
|
|
};
|
|
|
|
} // namespace ads1115
|
|
} // namespace esphome
|