@iotize/tap
Version:
IoTize Device client for Javascript
14 lines (13 loc) • 355 B
TypeScript
import { GPIOMode } from '@iotize/tap/service/impl/gpio';
export declare const CONFIGURE_MASK = 2147483648;
export declare const DIRECT_ACCESS_GPIO_FORMAT: number;
export interface GPIOWriteConfig {
/**
* Indexes to write
*/
indexs: number[];
/**
* Mode to write for all given indexes
*/
mode: GPIOMode;
}