『瀚思彼岸』» 智能家居技术论坛

 找回密码
 立即注册
楼主: lmy8812

网络继电器--Modbus

  [复制链接]

1

主题

3

帖子

54

积分

注册会员

Rank: 2

积分
54
金钱
51
HASS币
0
发表于 2024-3-3 09:56:49 | 显示全部楼层
学习一下
回复

使用道具 举报

0

主题

24

帖子

91

积分

注册会员

Rank: 2

积分
91
金钱
67
HASS币
0
发表于 2024-3-3 15:51:41 | 显示全部楼层
谢谢分享谢谢分享谢谢分享
回复

使用道具 举报

0

主题

23

帖子

174

积分

注册会员

Rank: 2

积分
174
金钱
151
HASS币
0
发表于 2024-3-3 19:12:15 | 显示全部楼层
感谢分享
回复

使用道具 举报

0

主题

17

帖子

129

积分

注册会员

Rank: 2

积分
129
金钱
112
HASS币
0
发表于 2024-3-3 21:57:54 | 显示全部楼层
回复

使用道具 举报

0

主题

6

帖子

66

积分

注册会员

Rank: 2

积分
66
金钱
60
HASS币
0
发表于 2024-3-27 09:21:39 | 显示全部楼层
过来学习一下,感谢楼主的分享
回复

使用道具 举报

3

主题

60

帖子

405

积分

中级会员

Rank: 3Rank: 3

积分
405
金钱
345
HASS币
0
发表于 2024-4-2 21:47:35 | 显示全部楼层
看看大佬怎么弄的?
回复

使用道具 举报

0

主题

12

帖子

92

积分

注册会员

Rank: 2

积分
92
金钱
80
HASS币
0
发表于 2024-4-7 10:59:02 | 显示全部楼层
进来学习一下
回复

使用道具 举报

0

主题

5

帖子

45

积分

新手上路

Rank: 1

积分
45
金钱
40
HASS币
0
发表于 2024-4-8 09:30:51 | 显示全部楼层

学习学习~~~
回复

使用道具 举报

0

主题

78

帖子

357

积分

中级会员

Rank: 3Rank: 3

积分
357
金钱
279
HASS币
0
发表于 2024-4-8 22:11:07 | 显示全部楼层
nice, thanks!!
回复

使用道具 举报

0

主题

78

帖子

357

积分

中级会员

Rank: 3Rank: 3

积分
357
金钱
279
HASS币
0
发表于 2024-4-8 22:23:04 | 显示全部楼层
剛好最近在研究 HA -> 485
提供 Progs Pont 寫的流程 https://www.youtube.com/watch?v=hw3m3GAoCeM
Modbus RTU to Home Assistant with TTL to RS485 electronic card and ESP01 Relay (Soft and Hard)

簡要內容, 準備 ESP01_單Relay , TTL->RS485 轉換板.... 連接 TTL -> ESP01
ESPHOME 建立 MODBUS by 8266
儲存下面code 並安裝
(logger:
  baud_rate: 0
及MODBUS 固定IP位址)


# Configure static ip
  manual_ip:
    static_ip: 192.168.1.xxx # Replace xxx with the chosen static ip
    gateway: 192.168.1.1
    subnet: 255.255.255.0

captive_portal:

# ++++++++++ Output relay +++++++++++
switch:
  - platform: gpio
    pin:
      number: GPIO00  
      inverted: True
    name: "Relay Modbus"
    id: relay_modbus   


# ++++++++++Conf MODBUS  RS485 ++++++++++++
uart:
  id: mod_bus
  tx_pin: GPIO1
  rx_pin: GPIO3
  baud_rate: 4800
  parity: NONE
  stop_bits: 2

modbus:  
  id: modbus1

modbus_controller:
  - id: SmartMetter
    ## the Modbus device addr
    address: 0x1
    modbus_id: modbus1
    setup_priority: -10


sensor:

#  Sensors SmartMetter
- platform: modbus_controller
  modbus_controller_id: SmartMetter
  id: pv_input_voltage
  name: "PV array input voltage"
  address: 0x003E
  unit_of_measurement: "V"
  register_type: read
  value_type: U_DWORD
  accuracy_decimals: 3
  filters:
    - multiply: 0.001

- platform: modbus_controller
  modbus_controller_id: SmartMetter
  id: pv_input_current
  name: "PV array input current"
  address: 0x003C
  unit_of_measurement: "A"
  register_type: read
  value_type: S_DWORD
  accuracy_decimals: 2
  filters:
    - multiply: 0.001

- platform: modbus_controller
  modbus_controller_id: SmartMetter
  id: wifi_smart_meter_total_energy
  name: "Smart meter total energy"
  address: 0x0200
  state_class: total_increasing
  unit_of_measurement: "kWh"
  register_type: read
  value_type: U_QWORD
  accuracy_decimals: 2
  filters:
    - multiply: 0.0001

- platform: modbus_controller
  modbus_controller_id: SmartMetter
  id: comptador_consum
  name: "Comptador consum"
  address: 0x0200
  state_class: "total_increasing"
  unit_of_measurement: "kWh"
  register_type: read
  value_type: U_QWORD
  accuracy_decimals: 2
  filters:
    - multiply: 0.0001

- platform: modbus_controller
  modbus_controller_id: SmartMetter
  id: comptador_injeccio
  name: "Comptador injecció"
  address: 0x0204
  state_class: total_increasing
  unit_of_measurement: "kWh"
  register_type: read
  value_type: U_QWORD
  accuracy_decimals: 2
  filters:
    - multiply: 0.0001

- platform: modbus_controller
  modbus_controller_id: SmartMetter
  id: consum_intantani
  name: "Consum intantaní"
  address: 0x0000
  unit_of_measurement: "W"
  register_type: read
  value_type: U_DWORD
  accuracy_decimals: 1
  filters:
    - multiply: 0.1

- platform: modbus_controller
  modbus_controller_id: SmartMetter
  id: injeccio_intantani
  name: "Injecció intantaní"
  address: 0x0002
  unit_of_measurement: "W"
  register_type: read
  value_type: U_DWORD
  accuracy_decimals: 1
  filters:
    - multiply: 0.1




回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

Archiver|手机版|小黑屋|Hassbian

GMT+8, 2024-11-23 20:51 , Processed in 0.058025 second(s), 29 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表