old mode 100755
new mode 100644
| | |
| | | { |
| | | bodyView.arcBar.Progress = Convert.ToInt32(Convert.ToDouble(uFh.trait_temp.curValue)); |
| | | } |
| | | if(uFh.trait_on_off.curValue.ToString() == "on") |
| | | { |
| | | bodyView.arcBar.Enable = true; |
| | | } |
| | | else |
| | | { |
| | | bodyView.arcBar.Enable = false; |
| | | } |
| | | }); |
| | | } |
| | | catch (Exception ex) |
| | |
| | | fh.trait_temp.curValue = temp; |
| | | btnTemp.Text = temp.ToString(); |
| | | System.Collections.Generic.Dictionary<string, string> d = new System.Collections.Generic.Dictionary<string, string>(); |
| | | d.Add("temp", temp.ToString()); |
| | | d.Add(FunctionAttributeKey.SetTemp, temp.ToString()); |
| | | Control.Ins.SendWriteCommand(fh, d); |
| | | }; |
| | | btnPlus.MouseUpEventHandler = (sender, e) => |
| | |
| | | fh.trait_temp.curValue = temp; |
| | | //Control.Send(CommandType_A.write, fh); |
| | | System.Collections.Generic.Dictionary<string, string> d = new System.Collections.Generic.Dictionary<string, string>(); |
| | | d.Add("temp", temp.ToString()); |
| | | d.Add(FunctionAttributeKey.SetTemp, temp.ToString()); |
| | | Control.Ins.SendWriteCommand(fh, d); |
| | | }; |
| | | arcBar.OnStopTrackingTouchEvent = (sender, e) => |
| | |
| | | btnTemp.Text = fh.trait_temp.curValue.ToString(); |
| | | //Control.Send(CommandType_A.write, fh); |
| | | System.Collections.Generic.Dictionary<string, string> d = new System.Collections.Generic.Dictionary<string, string>(); |
| | | d.Add("temp", fh.trait_temp.curValue.ToString()); |
| | | d.Add(FunctionAttributeKey.SetTemp, fh.trait_temp.curValue.ToString()); |
| | | Control.Ins.SendWriteCommand(fh, d); |
| | | }; |
| | | arcBar.OnProgressChangedEvent = (sender, e) => |
| | |
| | | fh.trait_on_off.curValue = btnSwitch.IsSelected ? "on" : "off"; |
| | | //Control.Send(CommandType_A.write, fh); |
| | | System.Collections.Generic.Dictionary<string, string> d = new System.Collections.Generic.Dictionary<string, string>(); |
| | | d.Add("on_off", fh.trait_on_off.curValue.ToString()); |
| | | d.Add(FunctionAttributeKey.OnOff, fh.trait_on_off.curValue.ToString()); |
| | | Control.Ins.SendWriteCommand(fh, d); |
| | | }; |
| | | } |
| | |
| | | fh.modeTemp.TryGetValue(curMode, out pro); |
| | | arcBar.Progress = pro; |
| | | System.Collections.Generic.Dictionary<string, string> d = new System.Collections.Generic.Dictionary<string, string>(); |
| | | d.Add("mode", fh.curModeIndex.ToString()); |
| | | d.Add(FunctionAttributeKey.Mode, fh.trait_mode.curValue.ToString()); |
| | | Control.Ins.SendWriteCommand(fh, d); |
| | | dialog.Close(); |
| | | }; |