From 93767f845ccc4c814ed66a3c94dd84078ab93e9e Mon Sep 17 00:00:00 2001 From: Daniel Rosenwasser Date: Fri, 21 Aug 2015 15:27:25 -0700 Subject: [PATCH] Added 'backlight' property to LCD options for 'johnny-five'. --- johnny-five/johnny-five.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/johnny-five/johnny-five.d.ts b/johnny-five/johnny-five.d.ts index 9dd1477eb..e2c2c1c30 100644 --- a/johnny-five/johnny-five.d.ts +++ b/johnny-five/johnny-five.d.ts @@ -251,10 +251,12 @@ declare module "johnny-five" { export interface LCDI2COption extends LCDGeneralOption{ controller: string; + backlight?: number; } export interface LCDParallelOption extends LCDGeneralOption{ pins: Array; + backlight?: number; } export class LCD{