obniz
Version:
obniz sdk for javascript
26 lines (25 loc) • 828 B
TypeScript
/**
* @packageDocumentation
* @module Parts.D6T44L
*/
import Obniz from '../../../../obniz';
import { PeripheralI2C } from '../../../../obniz/libs/io_peripherals/i2c';
import { ObnizPartsInterface, ObnizPartsInfo } from '../../../../obniz/ObnizPartsInterface';
import { I2cPartsAbstractOptions } from '../../../i2cParts';
export declare type D6T44LOptions = I2cPartsAbstractOptions;
declare class D6T44L implements ObnizPartsInterface {
static info(): ObnizPartsInfo;
requiredKeys: string[];
keys: string[];
params: any;
address: any;
ioKeys: string[];
commands: any;
protected obniz: Obniz;
protected i2c: PeripheralI2C;
constructor();
wired(obniz: Obniz): void;
getOnePixWait(pixcel: number): Promise<number>;
getAllPixWait(): Promise<number[]>;
}
export default D6T44L;