ESPHome 2025.12.0-dev
Loading...
Searching...
No Matches
tm1637.h
Go to the documentation of this file.
1#pragma once
2
5#include "esphome/core/hal.h"
6#include "esphome/core/time.h"
8
9#include <vector>
10
11#ifdef USE_BINARY_SENSOR
13#endif
14
15namespace esphome {
16namespace tm1637 {
17
18class TM1637Display;
19#ifdef USE_BINARY_SENSOR
20class TM1637Key;
21#endif
22
24
26 public:
27 void set_writer(tm1637_writer_t &&writer) { this->writer_ = writer; }
28
29 void setup() override;
30
31 void dump_config() override;
32
33 void set_clk_pin(GPIOPin *pin) { clk_pin_ = pin; }
34 void set_dio_pin(GPIOPin *pin) { dio_pin_ = pin; }
35
36 float get_setup_priority() const override;
37
38 void update() override;
39
41 uint8_t printf(uint8_t pos, const char *format, ...) __attribute__((format(printf, 3, 4)));
43 uint8_t printf(const char *format, ...) __attribute__((format(printf, 2, 3)));
44
46 uint8_t print(uint8_t pos, const char *str);
48 uint8_t print(const char *str);
49
50 void set_intensity(uint8_t intensity) { this->intensity_ = intensity; }
51 void set_inverted(bool inverted) { this->inverted_ = inverted; }
52 void set_length(uint8_t length) { this->length_ = length; }
53 void set_on(bool on) { this->on_ = on; }
54
55 void display();
56
57#ifdef USE_BINARY_SENSOR
58 void loop() override;
59 uint8_t get_keys();
60 void add_tm1637_key(TM1637Key *tm1637_key) { this->tm1637_keys_.push_back(tm1637_key); }
61#endif
62
64 uint8_t strftime(uint8_t pos, const char *format, ESPTime time) __attribute__((format(strftime, 3, 0)));
66 uint8_t strftime(const char *format, ESPTime time) __attribute__((format(strftime, 2, 0)));
67
68 protected:
69 void bit_delay_();
71 bool send_byte_(uint8_t b);
72 uint8_t read_byte_();
73 void start_();
74 void stop_();
75
78 uint8_t intensity_;
79 uint8_t length_;
81 bool on_{true};
83 uint8_t buffer_[6] = {0};
84#ifdef USE_BINARY_SENSOR
85 std::vector<TM1637Key *> tm1637_keys_{};
86#endif
87};
88
89#ifdef USE_BINARY_SENSOR
91 friend class TM1637Display;
92
93 public:
94 void set_keycode(uint8_t key_code) { key_code_ = key_code; }
95 void process(uint8_t data) { this->publish_state(static_cast<bool>(data == this->key_code_)); }
96
97 protected:
98 uint8_t key_code_{0};
99};
100#endif
101
102} // namespace tm1637
103} // namespace esphome
This class simplifies creating components that periodically check a state.
Definition component.h:437
Base class for all binary_sensor-type classes.
void publish_state(bool new_state)
Publish a new state to the front-end.
void set_writer(tm1637_writer_t &&writer)
Definition tm1637.h:27
float get_setup_priority() const override
Definition tm1637.cpp:185
void dump_config() override
Definition tm1637.cpp:135
uint8_t strftime(uint8_t pos, const char *format, ESPTime time) __attribute__((format(strftime
Evaluate the strftime-format and print the result at the given position.
Definition tm1637.cpp:372
tm1637_writer_t writer_
Definition tm1637.h:82
void set_clk_pin(GPIOPin *pin)
Definition tm1637.h:33
std::vector< TM1637Key * > tm1637_keys_
Definition tm1637.h:85
void set_inverted(bool inverted)
Definition tm1637.h:51
void set_length(uint8_t length)
Definition tm1637.h:52
void add_tm1637_key(TM1637Key *tm1637_key)
Definition tm1637.h:60
void set_dio_pin(GPIOPin *pin)
Definition tm1637.h:34
void set_intensity(uint8_t intensity)
Definition tm1637.h:50
uint8_t printf(uint8_t pos, const char *format,...) __attribute__((format(printf
Evaluate the printf-format and print the result at the given position.
Definition tm1637.cpp:351
void process(uint8_t data)
Definition tm1637.h:95
void set_keycode(uint8_t key_code)
Definition tm1637.h:94
struct @65::@66 __attribute__
Providing packet encoding functions for exchanging data with a remote host.
Definition a01nyub.cpp:7
A more user-friendly version of struct tm from time.h.
Definition time.h:15
std::string print()
uint16_t length
Definition tt21100.cpp:0