Fix light partition (#584)

* Fix light partition

Fixes https://github.com/esphome/issues/issues/365

* Lint
This commit is contained in:
Otto Winter
2019-05-31 13:38:56 +02:00
parent 6535b0966e
commit d02e280c3c
9 changed files with 44 additions and 9 deletions
@@ -48,7 +48,7 @@ enum class ESPNeoPixelOrder {
};
template<typename T_METHOD, typename T_COLOR_FEATURE>
class NeoPixelBusLightOutputBase : public Component, public light::AddressableLight {
class NeoPixelBusLightOutputBase : public light::AddressableLight {
public:
NeoPixelBus<T_COLOR_FEATURE, T_METHOD> *get_controller() const { return this->controller_; }