|
| 1 | +# IoTaWatt Binding |
| 2 | + |
| 3 | +This binding integrates [IoTaWatt™ Open WiFi Electric Power Monitor](https://iotawatt.com/) into openHAB. |
| 4 | + |
| 5 | +Limitations of this version: |
| 6 | + |
| 7 | +- No authentication support |
| 8 | + |
| 9 | +## Supported Things |
| 10 | + |
| 11 | +The IoTaWatt binding supports one Thing called `iotawatt`. |
| 12 | + |
| 13 | +## Discovery |
| 14 | + |
| 15 | +The binding does not auto-discover the IoTaWatt device. |
| 16 | + |
| 17 | +## Thing Configuration |
| 18 | + |
| 19 | +### IoTaWatt Thing Configuration |
| 20 | + |
| 21 | +| Name | Type | Description | Default | Required | Advanced | |
| 22 | +|-----------------|---------|------------------------------------------------|---------|----------|----------| |
| 23 | +| hostname | text | Hostname or IP address of the device | N/A | yes | no | |
| 24 | +| refreshInterval | integer | Interval the device is polled in sec. | 10 | no | no | |
| 25 | +| requestTimeout | long | The request timeout to call the device in sec. | 10 | no | no | |
| 26 | + |
| 27 | +## Channels |
| 28 | + |
| 29 | +The binding detects configured inputs and outputs and creates channels for them. |
| 30 | + |
| 31 | +| Channel | Type | ID | Read/Write | Description | |
| 32 | +|---------------------|--------------------------|---------------------|------------|---------------------------------| |
| 33 | +| Amps | Number:Power | amps | RO | The current amps | |
| 34 | +| Frequency | Number:Frequency | frequency | RO | The current AC frequency | |
| 35 | +| Power Factor | Number:Dimensionless | power-factor | RO | The current power factor | |
| 36 | +| Apparent Power | Number:Power | apparent-power | RO | The current apparent power | |
| 37 | +| Reactive Power | Number:Power | reactive-power | RO | The current reactive power | |
| 38 | +| Reactive Power hour | Number:Power | reactive-power-hour | RO | The current reactive power hour | |
| 39 | +| Voltage | Number:ElectricPotential | voltage | RO | The current voltage | |
| 40 | +| Power Consumption | Number:Power | watts | RO | The current power consumption | |
| 41 | +| Phase | Number:Dimensionless | phase | RO | The current phase | |
| 42 | + |
| 43 | +## Example Configuration |
| 44 | + |
| 45 | +### Thing with Channels |
| 46 | + |
| 47 | +```java |
| 48 | +Thing iotawatt:iotawatt:iotawatt1 "IoTaWatt 1" [ hostname="192.168.1.10" ] { |
| 49 | + Channels: |
| 50 | + Type voltage : input_00#voltage "Voltage" |
| 51 | + Type frequency : input_00#frequency "AC Frequency" |
| 52 | + Type phase : input_00#phase "Phase" |
| 53 | + Type watts : input_01#watts "Power Consumption" |
| 54 | + Type power-factor : input_01#power-factor "Power Factor" |
| 55 | + Type phase : input_01#phase "Phase" |
| 56 | + |
| 57 | + Type amps : output_00#Input_1_amps "Amps" |
| 58 | + Type frequency : output_01#Input_1_hz "Frequency" |
| 59 | + Type power-factor : output_02#Input_1_pf "Power Factor" |
| 60 | + Type apparent-power : output_03#Input_1_va "Apparent Power" |
| 61 | + Type reactive-power : output_04#Input_1_var "Reactive Power" |
| 62 | + Type reactive-power-hour : output_05#Input_1_varh "Reactive Power Hour" |
| 63 | + Type voltage : output_06#Input_1_volts "Voltage" |
| 64 | + Type watts : output_07#Input_1_watts "Watts" |
| 65 | +} |
| 66 | +``` |
| 67 | + |
| 68 | +### Items |
| 69 | + |
| 70 | +```java |
| 71 | +Number:ElectricPotential input_voltage "Voltage" { channel="iotawatt:iotawatt:iotawatt1:input_00#voltage" } |
| 72 | +Number:Frequency input_frequency "AC Frequency" { channel="iotawatt:iotawatt:iotawatt1:input_00#frequency" } |
| 73 | +Number:Dimensionless input_phase0 "Phase" { channel="iotawatt:iotawatt:iotawatt1:input_00#phase" } |
| 74 | +Number:Power input_watts "Watts" { channel="iotawatt:iotawatt:iotawatt1:input_01#watts" } |
| 75 | +Number:Dimensionless input_power_factor "Power Factor" { channel="iotawatt:iotawatt:iotawatt1:input_01#power-factor" } |
| 76 | +Number:Dimensionless input_phase1 "Phase" { channel="iotawatt:iotawatt:iotawatt1:input_01#phase" } |
| 77 | + |
| 78 | +Number:ElectricCurrent output_amps "Amps" { channel="iotawatt:iotawatt:iotawatt1:output_00#Input_1_amps" } |
| 79 | +Number:Frequency output_frequency "AC Frequency" { channel="iotawatt:iotawatt:iotawatt1:output_01#Input_1_hz" } |
| 80 | +Number:Dimensionless output_power_factor "Power Factor" { channel="iotawatt:iotawatt:iotawatt1:output_02#Input_1_pf" } |
| 81 | +Number:Power output_apparent_power "Apparent Power" { channel="iotawatt:iotawatt:iotawatt1:output_03#Input_1_va" } |
| 82 | +Number:Power output_reactive_power "Reactive Power" { channel="iotawatt:iotawatt:iotawatt1:output_04#Input_1_var" } |
| 83 | +Number:Energy output_reactive_power_hour "Reactive Power Hour" { channel="iotawatt:iotawatt:iotawatt1:output_05#Input_1_varh" } |
| 84 | +Number:ElectricPotential output_voltage "Voltage" { channel="iotawatt:iotawatt:iotawatt1:output_06#Input_1_volts" } |
| 85 | +Number:Power output_watts "Watts" { channel="iotawatt:iotawatt:iotawatt1:output_07#Input_1_watts" } |
| 86 | +``` |
0 commit comments