Изборник Затворити

ESPHome: Showing Project Name and Version as Text Sensors

Скраћена веза: https://pedja.supurovic.net/veza/10698

There is option to assign project name and version in ESPHome device config. Values are displayed in log when device is powered up. It is useful to have those information as sensors so it is easy to check them, if needed. Here is how.

How to set project name and version:

esphome:
  name: "my_device"
  project:
    name: "Me.MyProject"
    version: "0.1.0"

And now create Text Sensors:

text_sensor:
  - platform: template
    name: "Project"
    lambda: |-
     return to_string(ESPHOME_PROJECT_NAME);

  - platform: template
    name: "Version"
    lambda: |-
      return to_string(ESPHOME_PROJECT_VERSION);

I like to use substitutions as it let’s me put all configuration at the beginning of the yaml and reuse values where needed. […]
[ ... види цео чланак ... ]

Enabling two color LED on Sonoff Basic R2 Smart Home Switch

Скраћена веза: https://pedja.supurovic.net/veza/10649

I like Sonoff Basic R2 Smart Home Switch as it is low priced but very functional multipurpose device. Most of all, it contains ESP8266 chipset which means it is easy to replace original firmware with custom one. I use ESPHome firmware but Tasmota is also good.

sonoff-basic-schematicBy looking at the board of this little device I found out that it contains two-colored LED. Actually, two LED-s are in one package with three contact legs. Green LED is used in factory assembly, and it is connected to GPIO13. The second LED is red colored and not used. It is actually meant to be used by optional RF module. […]
[ ... види цео чланак ... ]

Tuya ZigBee сензор температуре и влажности ваздуха за паметну кућу

Скраћена веза: https://pedja.supurovic.net/veza/10595

Сензор CoRui Tuya ZigBee Smart Temperature & Humidity је уређај врло малих димензија тако да га је лако сместити где год је потребно. Ради на две АА батерије и оне у њему врло дуго трају јер их користи на оптималан начин. Сензор, како му име и каже, мери температуру и влажност ваздуха.

Узео сам верзију која ради по ZigBee протоколу надајући се да ће се лако интегрисан мојим Home Assistant системом. Мој Home Assistant поред WiFi подржава и ZigBee протокол захваљујући прикљученој УСБ картици SONOFF ZBDongle-E (Пун назив је Universal Zigbee 3.0 USB Stick Gateway Dongle Plus) која ради као ZigBee контролер. […]
[ ... види цео чланак ... ]