Advertisement
-Teme-

Airfi Modbus

Jun 6th, 2024
459
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 3.15 KB | None | 0 0
  1. # Home Assistant configuration for Airfi Modbus integration
  2. # Save this file and include it in your configuration.yaml using the packages function
  3.  
  4. # Example: In configuration.yaml
  5. # packages:
  6. #   airfi_modbus: !include airfi_modbus.yaml
  7.  
  8. modbus:
  9.   - name: airfi
  10.     type: tcp
  11.     host: YOUR_AIRFI_IP_ADDRESS
  12.     port: 502
  13.     delay: 15
  14.  
  15.     sensors:
  16.       - name: Component ID
  17.         slave: 1
  18.         address: 0
  19.         count: 1
  20.         data_type: uint16
  21.       - name: Application ID
  22.         slave: 1
  23.         address: 1
  24.         count: 1
  25.         data_type: uint16
  26.       - name: Map Version
  27.         slave: 1
  28.         address: 2
  29.         count: 1
  30.         data_type: uint16
  31.       - name: Outdoor Temperature
  32.         slave: 1
  33.         address: 3
  34.         count: 1
  35.         data_type: uint16
  36.         scale: 0.1
  37.         unit_of_measurement: '°C'
  38.       - name: Supply Air Temperature
  39.         slave: 1
  40.         address: 5
  41.         count: 1
  42.         data_type: uint16
  43.         scale: 0.1
  44.         unit_of_measurement: '°C'
  45.       - name: Extract Air Temperature
  46.         slave: 1
  47.         address: 6
  48.         count: 1
  49.         data_type: uint16
  50.         scale: 0.1
  51.         unit_of_measurement: '°C'
  52.       - name: Exhaust Air Temperature
  53.         slave: 1
  54.         address: 7
  55.         count: 1
  56.         data_type: uint16
  57.         scale: 0.1
  58.         unit_of_measurement: '°C'
  59.       - name: Return Air Temperature
  60.         slave: 1
  61.         address: 8
  62.         count: 1
  63.         data_type: uint16
  64.         scale: 0.1
  65.         unit_of_measurement: '°C'
  66.       - name: Fan Speed
  67.         slave: 1
  68.         address: 24
  69.         count: 1
  70.         data_type: uint16
  71.         unit_of_measurement: 'Speed'
  72.       - name: Measured Humidity
  73.         slave: 1
  74.         address: 23
  75.         count: 1
  76.         data_type: uint16
  77.         unit_of_measurement: '%'
  78.        
  79.     registers:
  80.       holding:
  81.         - name: Fan Speed
  82.           slave: 1
  83.           address: 0
  84.           data_type: uint16
  85.           write_type: holding
  86.           min_value: 0
  87.           max_value: 5
  88.         - name: Forced Control
  89.           slave: 1
  90.           address: 2
  91.           data_type: uint16
  92.           write_type: holding
  93.           min_value: 0
  94.           max_value: 3
  95.         - name: Manual Override
  96.           slave: 1
  97.           address: 3
  98.           data_type: uint16
  99.           write_type: holding
  100.           min_value: 0
  101.           max_value: 1
  102.         - name: Manual Override Percentage
  103.           slave: 1
  104.           address: 4
  105.           data_type: uint16
  106.           write_type: holding
  107.           min_value: 0
  108.           max_value: 100
  109.         - name: Temperature Setpoint
  110.           slave: 1
  111.           address: 5
  112.           data_type: uint16
  113.           write_type: holding
  114.           min_value: 50
  115.           max_value: 260
  116.         - name: AUX3 Setpoint
  117.           slave: 1
  118.           address: 6
  119.           data_type: uint16
  120.           write_type: holding
  121.           min_value: 0
  122.           max_value: 2000
  123.         - name: AUX4 Setpoint
  124.           slave: 1
  125.           address: 7
  126.           data_type: uint16
  127.           write_type: holding
  128.           min_value: 0
  129.           max_value: 2000
  130.  
Tags: Airfi
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement