diff options
| author | Victoria Plitt <Victoria.Plitt@twine-s.com> | 2023-06-08 09:37:17 +0300 |
|---|---|---|
| committer | Victoria Plitt <Victoria.Plitt@twine-s.com> | 2023-06-08 09:37:17 +0300 |
| commit | 2b1c20945dc03d5136fba48ee9d165b412620e66 (patch) | |
| tree | fb2b4c9af81076740548706411e893e3764fdcb8 /Software/Visual_Studio/Tango.Emulations/Emulators | |
| parent | 54624e4a90a240ad702995e1ed551901768e131f (diff) | |
| download | Tango-2b1c20945dc03d5136fba48ee9d165b412620e66.tar.gz Tango-2b1c20945dc03d5136fba48ee9d165b412620e66.zip | |
PPC. Resize the font and change color for Sensors display values.
Related Work Items: #8551
Diffstat (limited to 'Software/Visual_Studio/Tango.Emulations/Emulators')
| -rw-r--r-- | Software/Visual_Studio/Tango.Emulations/Emulators/MachineEmulator.cs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.Emulations/Emulators/MachineEmulator.cs b/Software/Visual_Studio/Tango.Emulations/Emulators/MachineEmulator.cs index 5b17ac49d..41884a24c 100644 --- a/Software/Visual_Studio/Tango.Emulations/Emulators/MachineEmulator.cs +++ b/Software/Visual_Studio/Tango.Emulations/Emulators/MachineEmulator.cs @@ -227,6 +227,21 @@ namespace Tango.Emulations.Emulators HeaterType = (HeaterType)item.Code, }); } + var tunnel = _heater_states.FirstOrDefault(x => x.HeaterType == HeaterType.ETunnelHeater); + if(tunnel != null) + { + tunnel.IsRampingUp = true; + tunnel.CurrentValue = 108.5; + tunnel.SetPoint = 170; + } + var dryerZone3 = _heater_states.FirstOrDefault(x => x.HeaterType == HeaterType.EDryerHeater3); + if (dryerZone3 != null) + { + dryerZone3.IsRampingUp = false; + dryerZone3.CurrentValue = 200.8; + dryerZone3.SetPoint = 170; + } + //DryerZone3 foreach (var item in adapter.HardwareBlowerTypes) { |
