2024-07-09 04:02:45 +00:00
|
|
|
export declare class Camera {
|
|
|
|
private log;
|
|
|
|
private parser;
|
|
|
|
private ready;
|
2024-07-11 21:26:14 +00:00
|
|
|
private connected;
|
2024-07-09 04:02:45 +00:00
|
|
|
private serial;
|
|
|
|
private baud;
|
2024-07-11 21:26:14 +00:00
|
|
|
private next;
|
|
|
|
private port;
|
2024-07-31 19:07:09 +00:00
|
|
|
private prefix;
|
2024-08-24 20:26:49 +00:00
|
|
|
private mock;
|
|
|
|
constructor(mock: boolean);
|
2024-07-09 04:02:45 +00:00
|
|
|
private begin;
|
|
|
|
private filter;
|
|
|
|
private enumerate;
|
|
|
|
private connect;
|
2024-07-11 21:26:14 +00:00
|
|
|
private connectMock;
|
2024-07-09 04:02:45 +00:00
|
|
|
private onData;
|
2024-07-11 21:26:14 +00:00
|
|
|
private verify;
|
|
|
|
private confirm;
|
2024-07-13 01:42:54 +00:00
|
|
|
frame(): Promise<number>;
|
|
|
|
open(): Promise<number>;
|
|
|
|
close(): Promise<number>;
|
|
|
|
direction(dir: boolean): Promise<number>;
|
2024-07-09 04:02:45 +00:00
|
|
|
}
|