⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 zonecontroller.java

📁 这是一个以JAVA编写的程序,本人还没有试过,是一个简单的温度控制系统
💻 JAVA
字号:
package net.sf.dz.device.model;import java.util.Iterator;import net.sf.dz.event.ThermostatListener;import org.freehold.jukebox.conf.Configurable;/** * Zone controller. * * Accepts the signals from the thermostats and issues control signals to * the AC Controller and damper controller. Also should be capable of * controlling the forced fan on mode in such a way that it doesn't * interfere with normal operation. * * <p> * * It is an interface to allow the adapters to be implemented - in * particular, for remote access. * * @author Copyright &copy; <a href="mailto:vt@freehold.crocodile.org">Vadim Tkachenko</a> 2001-2002 * @version $Id: ZoneController.java,v 1.3 2002/06/26 08:51:04 vtt Exp $ */public interface ZoneController extends ThermostatListener, Configurable {    /**     * Set the dump threshold.     *     * @param threshold Dump threshold to set.     *     * @exception IllegalArgumentException if the parameter value is outside of 0...1.0 range.     */    public void setDumpThreshold(double threshold);        /**     * Get the dump threshold.     *     * @return Current value of the dump threshold.     */    public double getDumpThreshold();        /**     * Attach to the unit.     *     * The zone controller must be attached to the unit before it can begin     * working.     *     * @param unit The logical HVAC unit this zone controller will be serving.     */    public void attach(Unit unit);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -