X10 Commander when using Amazon Echo or the PC gui to dim appears to dim the last light turned on instead of the light selected. can this be fixed so it dims the item selected?
thanks
alzee wrote:Melloware what do you think?
alzee wrote:Log says its dimming the device selected but it dims the last device turned on. The log is wrong?
alzee wrote:Looks like a bug in X10 commander. Its log says it is sending out a dim command to one device ( the one selected) but the command actually sent is for the last light turned on.
alzee wrote:I agree! I tried ahcmd.exe and still get the same funky dimming issue! But i have no idea what in my network is causing this.
if (cboX10Device.ItemIndex = CM15A_CM19A) then
begin
logger.Info(' USB ' + strType + ' ' + strX10Command);
if (FDimmingAccuracy) and (Pos('DIM', strX10Command) > 0) then
begin
iValue := StrToInt(FX10Commands.Strings[2]);
if iValue > 0 then
begin
ActiveHome.SendAction(strType, strHouseCode + ' DIM 100');
ActiveHome.SendAction(strType, strHouseCode + ' BRIGHT ' + FX10Commands.Strings[2]);
end;
end
else if (FDimmingAccuracy) and (Pos('BRIGHT', strX10Command) > 0) then
begin
ActiveHome.SendAction(strType, strHouseCode + ' BRIGHT 100');
iValue := 100 - StrToInt(FX10Commands.Strings[2]);
if iValue > 0 then
begin
ActiveHome.SendAction(strType, strHouseCode + ' DIM ' + IntToStr(iValue));
end;
end
else begin
ActiveHome.SendAction(strType, strX10Command);
end;
end;
Users browsing this forum: No registered users and 1 guest