Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- display:
- - platform: ssd1306_i2c
- model: "SSD1306 128x32"
- address: 0x3C
- id: handheld_oled
- pages:
- - id: page1
- lambda: |-
- if (id(handheld_bool_beest).state) {
- it.print((it.get_width() / 8)*7, it.get_height() / 2, id(icon_30), TextAlign::CENTER, "");
- }
- else if (id(handheld_bool_vuilzakken).state) {
- it.print((it.get_width() / 8)*7, it.get_height() / 2, id(icon_30), TextAlign::CENTER, "");
- }
- else if(id(handheld_bool_was).state){
- it.print((it.get_width() / 8)*7, it.get_height() / 2, id(icon_30), TextAlign::CENTER, "");
- }
- else if(id(handheld_bool_vlag).state) {
- it.print((it.get_width() / 8)*7, it.get_height() / 2, id(icon_30), TextAlign::CENTER, "");
- }
- else {
- it.printf((it.get_width() / 8)*7, it.get_height() / 2, id(icon_30), TextAlign::CENTER, "%s", id(handheld_sensor_status).state ? "" : "");
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement