- Download from SourceForge
- Download from Google Code
- Get source code from Subversion
IMPROVEMENTS
Added ability to use a humidity sensor based oncom.dalsemi.onewire.container.HumidityContainer
to operate a humidifier and/or dehumidifier.This is a snippet of configuration that makes it work:
<bean id="device_factory"The
class="net.sf.dz3.device.sensor.impl.onewire.OwapiDeviceFactory"
init-method="start">
<constructor-arg index="0" value="/dev/ttyUSB0" />
<constructor-arg index="1" value="regular" />
</bean>
<bean id="humidity_sensor-6500000055FF1A26"
factory-bean="device_factory"
factory-method="getHumiditySensor">
<constructor-arg value="6500000055FF1A26" />
</bean>
humidity_sensor-6500000055FF1A26
bean is further used to feed te thermostat bean that is, however, not controlling the heating or cooling device, but a humidifier or dehumidifier instead - the control chain is identical.UPDATE: It was reported that there is at least one humidity sensor reported as a temperature sensor - the HT3-R1-A board. In this case, you don't even need to change the
factory-method
attribute.
No comments:
Post a Comment