johnny-five LCD class types

This commit is contained in:
Ehab Khaireldin
2018-11-24 19:58:45 +01:00
parent 36a32d8a72
commit 55aca0b31c

View File

@@ -365,22 +365,22 @@ export declare class LCD {
rows: number;
cols: number;
print(message: string): void;
useChar(char: string): void;
clear(): void;
cursor(row: number, col: number): void;
home(): void;
on(): void;
off(): void;
display(): void;
noDisplay(): void;
blink(): void;
noBlink(): void;
autoscroll(): void;
noAutoscroll(): void;
bgColor(color: any): void;
noBacklight(): void;
backlight(): void;
print(message: string): this;
useChar(char: string): this;
clear(): this;
cursor(row: number, col: number): this;
home(): this;
on(): this;
off(): this;
display(): this;
noDisplay(): this;
blink(): this;
noBlink(): this;
autoscroll(): this;
noAutoscroll(): this;
bgColor(color: any): this;
noBacklight(): this;
backlight(): this;
}
export interface LedOption {