@icoms-detection/server-esp32
Version:
This is the OFFICIAL SERVER library created by Icoms Detection to run their apps.
10 lines (9 loc) • 356 B
TypeScript
import { DeviceTypes, UartConfiguration } from "./types";
/**
* This function represent an interface of a Device
* You are allowed to send commands on a specific UART port
*
* @param uartConfiguration is a parameter who specify the UART configuration
* @returns
*/
export declare const Device: (uartConfiguration?: UartConfiguration) => DeviceTypes;