1.0.0 • Published 2 years ago

tempirature v1.0.0

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

tempirature

Monitor the core temperature of your Raspberry Pi.

Usage

const tempirature = require('tempirature');

tempirature.monitor(function(error, temperature) {
    if (error) {
        console.error(error);
    } else {
        console.log('It is ' + temperature + ' °C');
    }
});

Contribute

  1. Fork it: git clone https://github.com/matheusfrantz/tempirature.git
  2. Create your feature branch: git checkout -b feature/new-feature
  3. Commit your changes: git commit -m 'Add new feature'
  4. Check the build: npm run build
  5. Push to the branch: git push origin new-feature
  6. Submit a pull request :D