Both sides previous revision Previous revision Next revision | Previous revision |
smart-home [2024/07/14 11:22] – [Smart home] admin | smart-home [2025/03/10 04:06] (current) – [Pantum M6500W] admin |
---|
====== Smart home ====== | ====== Smart home ====== |
| |
| Контроллер - https://www.owenkomplekt.ru/product/spk107-oven-panelnyy-programmiruemyy-kontroller-so-vstroennym-sensornym-ekranom-7/ |
====== Smart Home docker ====== | ====== Smart Home docker ====== |
| |
* https://www.smarthomebeginner.com/home-server/ | * https://www.smarthomebeginner.com/home-server/ |
* https://habr.com/ru/articles/799957/ - esphome датчик тепла, учета энергии, импульсов | * https://habr.com/ru/articles/799957/ - esphome датчик тепла, учета энергии, импульсов |
| |
| ===== Проекты ===== |
| * [[https://psenyukov.ru/%d1%81%d1%87%d0%b8%d1%82%d1%8b%d0%b2%d0%b0%d0%bd%d0%b8%d0%b5-%d0%bf%d0%be%d0%ba%d0%b0%d0%b7%d0%b0%d0%bd%d0%b8%d0%b9-%d1%81%d1%87%d0%b5%d1%82%d1%87%d0%b8%d0%ba%d0%be%d0%b2-%d0%b2%d0%be%d0%b4%d1%8b/|Считывание аналоговых счетчиков ]] |
| |
==== Monitoring ==== | ==== Monitoring ==== |
</code> | </code> |
++++ | ++++ |
| |
| ===== HA - template ===== |
| <code BASH> |
| # home assistant - executing in day 24h |
| 01h 24 |
| 10m 144 |
| 05m 288 |
| 01m 1440 |
| 05s 17280 |
| 01s 86400 |
| |
| {% set result = namespace(sensors=[]) %} |
| {% set exclude = [] %} |
| {% set hours = 1 %} |
| {% for state in states.sensor | rejectattr('attributes.device_class', 'undefined') | selectattr('attributes.device_class', '==', 'timestamp') %} |
| {{state}} |
| {% if 'last_seen' in state.entity_id and not state.entity_id in exclude.entity_id and (states(state.entity_id) == 'unavailable' or ((as_timestamp(now()) - as_timestamp(states(state.entity_id))) > ((hours | int) * 60 * 60))) %} |
| {% set result.sensors = result.sensors + [state.name | regex_replace(find=' last seen', replace='') ~ ' (' ~ relative_time(strptime(states(state.entity_id), '%Y-%m-%dT%H:%M:%S%z', 'unavailable')) ~ ')'] %} |
| {% endif %} |
| {% endfor %} |
| {{ result.sensors | join(', ') }} |
| |
| |
| </code> |
| |
====== OpenHAB ====== | ====== OpenHAB ====== |
| |
{{:smart-home:pasted:20240217-191414.png}} | {{:smart-home:pasted:20240217-191414.png}} |
| |
| |
| ==== Pantum M6500W ==== |
| <code BASH> |
| snmpwalk -v2c -c ADDpubkeyAAA 192.168.5.52 .1 |
| iso.3.6.1.4.1.40093.1.1.3.12 = INTEGER: 345 |
| #SNMP OID for "Printed Pages Total" |
| </code> |
| Mib - {{ :pantum.mib.data-.bp5100.bm5100.series.xlsx |}} |
| |
| ==== HP HP Color LaserJet Pro MFP M176n ==== |
| https://github.com/remetremet/SNMP-OIDs/blob/master/OIDs/Printer-HP-ColorLaserJetPro-MFP-M479.md https://mibs.observium.org/mib/HP-LASERJET-COMMON-MIB/#accounting \\ |
| <code BASH> |
| < SNMPv2-SMI::enterprises.11.2.3.9.4.2.1.4.1.2.5.0 = Gauge32: 530 |
| < SNMPv2-SMI::enterprises.11.2.3.9.4.2.1.4.1.2.6.0 = Gauge32: 530 |
| < SNMPv2-SMI::enterprises.11.2.3.9.4.2.1.4.1.2.34.0 = INTEGER: 530 |
| < SNMPv2-SMI::enterprises.11.2.3.9.4.2.1.4.1.2.35.0 = INTEGER: 530 |
| --- |
| > SNMPv2-SMI::enterprises.11.2.3.9.4.2.1.4.1.2.5.0 = Gauge32: 531 |
| > SNMPv2-SMI::enterprises.11.2.3.9.4.2.1.4.1.2.6.0 = Gauge32: 531 |
| > SNMPv2-SMI::enterprises.11.2.3.9.4.2.1.4.1.2.34.0 = INTEGER: 531 |
| > SNMPv2-SMI::enterprises.11.2.3.9.4.2.1.4.1.2.35.0 = INTEGER: 531 |
| </code> |