1.0.6 • Published 1 year ago

acuparse-api v1.0.6

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

acuparse-api

A simple NodeJS api for fetching information from an Acuparse instance.
This package comes with types built in!

Usage

Connect to an AcuParse instance with the IP 192.168.0.32, and get the current outdoor temperature in degrees celcius:

const { Acuparse } = require("acuparse-api");

const p = new Acuparse("http://192.168.0.32");

p.getMain().then((main) => {
  // Expected output: The current temperature is X degrees celsius!
  console.log(
    `The current outdoor temperature is ${main.temp.temp} degrees celsius!"`
  );
});

Get the highest and lowest temperature from this past week:

p.getArchive().then((archive) => {
  // Expected output: The highest temperature this past week was X degrees celsius and the lowest was X degrees celsius
  console.log(
    `The highest temperature this past week was ${archive.temp.high} degrees celsius and the lowest was ${archive.temp.low} degrees celsius`
  );
});
1.0.6

1 year ago

1.0.5

1 year ago

1.0.4

1 year ago

1.0.3

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago