@types/ds18b20
TypeScript icon, indicating that this package has built-in type declarations

0.1.3 • Public • Published

Installation

npm install --save @types/ds18b20

Summary

This package contains type definitions for ds18b20 (https://github.com/chamerling/ds18b20).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/ds18b20.

index.d.ts

// TypeScript Version: 2.1

/// <reference types="node" />

/**
 * Options for a `temperature` call
 */
export interface TemperatureOptions {
    parser: "decimal" | "default" | "hex";
}

/**
 * Callback for a `sensors` call
 * @param  err An error or null
 * @param  ids An array of sensor IDs
 */
export type SensorsCallback = (err: Error | null, ids: string[]) => void;

/**
 * Callback for a `temperature` call
 * @param  err   An error or null
 * @param  value The temperature
 */
export type TemperatureCallback = (err: Error | null, value: number) => void;

/**
 * Get all connected sensor IDs as array
 * @param callback callback(err, array)
 */
export function sensors(callback: SensorsCallback): void;

/**
 * Get the temperature of a given sensor
 * @param sensorId The sensor ID
 * @param callback callback(err, value)
 */
export function temperature(sensorId: string, callback: TemperatureCallback): void;

/**
 * Get the temperature of a given sensor
 * @param sensorId The sensor ID
 * @param options  The options
 * @param callback callback(err, value)
 */
export function temperature(sensorId: string, options: TemperatureOptions, callback: TemperatureCallback): void;

/**
 * Get the temperature of a given sensor sync
 * @param sensorId The sensor ID
 * @param options  The options
 * @return The temperature
 */
export function temperatureSync(sensorId: string, options?: TemperatureOptions): number;

Additional Details

  • Last updated: Mon, 06 Nov 2023 22:41:05 GMT
  • Dependencies: @types/node

Credits

These definitions were written by Peter Müller.

Readme

Keywords

none

Package Sidebar

Install

npm i @types/ds18b20

Weekly Downloads

8

Version

0.1.3

License

MIT

Unpacked Size

5.45 kB

Total Files

5

Last publish

Collaborators

  • types