initial commit of file from CVS for smeserver-phpsysinfo on Sat Sep 7 20:53:46 AEST 2024
This commit is contained in:
@@ -0,0 +1,192 @@
|
||||
<?php
|
||||
/**
|
||||
* SensorDevice TO class
|
||||
*
|
||||
* PHP version 5
|
||||
*
|
||||
* @category PHP
|
||||
* @package PSI_TO
|
||||
* @author Michael Cramer <BigMichi1@users.sourceforge.net>
|
||||
* @copyright 2009 phpSysInfo
|
||||
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
|
||||
* @version SVN: $Id: class.SensorDevice.inc.php 592 2012-07-03 10:55:51Z namiltd $
|
||||
* @link http://phpsysinfo.sourceforge.net
|
||||
*/
|
||||
/**
|
||||
* SensorDevice TO class
|
||||
*
|
||||
* @category PHP
|
||||
* @package PSI_TO
|
||||
* @author Michael Cramer <BigMichi1@users.sourceforge.net>
|
||||
* @copyright 2009 phpSysInfo
|
||||
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
|
||||
* @version Release: 3.0
|
||||
* @link http://phpsysinfo.sourceforge.net
|
||||
*/
|
||||
class SensorDevice
|
||||
{
|
||||
/**
|
||||
* name of the sensor
|
||||
*
|
||||
* @var String
|
||||
*/
|
||||
private $_name = "";
|
||||
|
||||
/**
|
||||
* current value of the sensor
|
||||
*
|
||||
* @var Integer
|
||||
*/
|
||||
private $_value = 0;
|
||||
|
||||
/**
|
||||
* maximum value of the sensor
|
||||
*
|
||||
* @var Integer
|
||||
*/
|
||||
private $_max = null;
|
||||
|
||||
/**
|
||||
* minimum value of the sensor
|
||||
*
|
||||
* @var Integer
|
||||
*/
|
||||
private $_min = null;
|
||||
|
||||
/**
|
||||
* event of the sensor
|
||||
*
|
||||
* @var String
|
||||
*/
|
||||
private $_event = "";
|
||||
|
||||
/**
|
||||
* Returns $_max.
|
||||
*
|
||||
* @see Sensor::$_max
|
||||
*
|
||||
* @return Integer
|
||||
*/
|
||||
public function getMax()
|
||||
{
|
||||
return $this->_max;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets $_max.
|
||||
*
|
||||
* @param Integer $max maximum value
|
||||
*
|
||||
* @see Sensor::$_max
|
||||
*
|
||||
* @return Void
|
||||
*/
|
||||
public function setMax($max)
|
||||
{
|
||||
$this->_max = $max;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns $_min.
|
||||
*
|
||||
* @see Sensor::$_min
|
||||
*
|
||||
* @return Integer
|
||||
*/
|
||||
public function getMin()
|
||||
{
|
||||
return $this->_min;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets $_min.
|
||||
*
|
||||
* @param Integer $min minimum value
|
||||
*
|
||||
* @see Sensor::$_min
|
||||
*
|
||||
* @return Void
|
||||
*/
|
||||
public function setMin($min)
|
||||
{
|
||||
$this->_min = $min;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns $_name.
|
||||
*
|
||||
* @see Sensor::$_name
|
||||
*
|
||||
* @return String
|
||||
*/
|
||||
public function getName()
|
||||
{
|
||||
return $this->_name;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets $_name.
|
||||
*
|
||||
* @param String $name sensor name
|
||||
*
|
||||
* @see Sensor::$_name
|
||||
*
|
||||
* @return Void
|
||||
*/
|
||||
public function setName($name)
|
||||
{
|
||||
$this->_name = $name;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns $_value.
|
||||
*
|
||||
* @see Sensor::$_value
|
||||
*
|
||||
* @return Integer
|
||||
*/
|
||||
public function getValue()
|
||||
{
|
||||
return $this->_value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets $_value.
|
||||
*
|
||||
* @param Integer $value current value
|
||||
*
|
||||
* @see Sensor::$_value
|
||||
*
|
||||
* @return Void
|
||||
*/
|
||||
public function setValue($value)
|
||||
{
|
||||
$this->_value = $value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns $_event.
|
||||
*
|
||||
* @see Sensor::$_event
|
||||
*
|
||||
* @return String
|
||||
*/
|
||||
public function getEvent()
|
||||
{
|
||||
return $this->_event;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets $_event.
|
||||
*
|
||||
* @param String $event sensor event
|
||||
*
|
||||
* @see Sensor::$_event
|
||||
*
|
||||
* @return Void
|
||||
*/
|
||||
public function setEvent($event)
|
||||
{
|
||||
$this->_event = $event;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user