UNPKG

obniz

Version:

obniz sdk for javascript

12 lines (11 loc) 485 B
/** * @packageDocumentation * @module Parts.MCP9701 */ import { ObnizPartsInterface, ObnizPartsInfo } from '../../../../obniz/ObnizPartsInterface'; import AnalogTemperatureSensor, { AnalogTemperatureSensorOptions } from '../AnalogTemperatureSensor'; export declare type MCP9701Options = AnalogTemperatureSensorOptions; export default class MCP9701 extends AnalogTemperatureSensor implements ObnizPartsInterface { static info(): ObnizPartsInfo; calc(voltage: any): number; }