Initial commit

This commit is contained in:
Chris 2015-01-23 19:02:10 +01:00
commit fa5788791a
1 changed files with 30 additions and 0 deletions

30
README.md Normal file
View File

@ -0,0 +1,30 @@
ACPI Thermal
============
Read the temperature readings from the ACPI sysfs
## Installation
$ composer require noccylabs/acpi-thermal:0.1.*
## Usage
You can get a collection of all the available thermal zones using the static
`getAllZones()` method:
use NoccyLabs\Thermal;
$zones = Thermal\Zone::getAllZones();
foreach ($zones as $zone) {
printf("%s = %.1fºC\n",
$zone->getName(),
$zone->getTemp()
);
}
You can also create a zone directly and start reading from it (assuming it exists):
$zone = new Thermal\Zone("thermal_zone0");
echo $zone->getTemp();