UNPKG

obniz

Version:

obniz sdk for javascript

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