mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-07-07 18:50:14 +00:00
johnny-five LCD class types
This commit is contained in:
32
types/johnny-five/index.d.ts
vendored
32
types/johnny-five/index.d.ts
vendored
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user