Fix dimmer min brightness

This commit is contained in:
Bill 2021-09-15 23:36:31 -04:00
parent 393d40ff41
commit bf4a59b156
2 changed files with 1 additions and 7 deletions

View File

@ -1,6 +0,0 @@
export class FurnitureDimmerData
{
constructor(
public objectId: number,
public category: number) {}
}

View File

@ -9,7 +9,7 @@ import { DimmerFurnitureWidgetPresetItem } from './DimmerFurnitureWidgetPresetIt
const AVAILABLE_COLORS: number[] = [7665141, 21495, 15161822, 15353138, 15923281, 8581961, 0];
const HTML_COLORS: string[] = ['#74F5F5', '#0053F7', '#E759DE', '#EA4532', '#F2F851', '#82F349', '#000000'];
const MIN_BRIGHTNESS: number = 75;
const MIN_BRIGHTNESS: number = 76;
const MAX_BRIGHTNESS: number = 255;
export const FurnitureDimmerView: FC<{}> = props =>