UNPKG

obniz

Version:

obniz sdk for javascript

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