aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.BL/Enumerations
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/Tango.BL/Enumerations')
-rw-r--r--Software/Visual_Studio/Tango.BL/Enumerations/ActionLogType.cs112
-rw-r--r--Software/Visual_Studio/Tango.BL/Enumerations/EventTypeCategories.cs4
-rw-r--r--Software/Visual_Studio/Tango.BL/Enumerations/EventTypeGroups.cs4
-rw-r--r--Software/Visual_Studio/Tango.BL/Enumerations/EventTypes.cs1668
-rw-r--r--Software/Visual_Studio/Tango.BL/Enumerations/HardwareBlowerTypes.cs30
-rw-r--r--Software/Visual_Studio/Tango.BL/Enumerations/HardwareDancerTypes.cs12
-rw-r--r--Software/Visual_Studio/Tango.BL/Enumerations/HardwarePidControlTypes.cs60
-rw-r--r--Software/Visual_Studio/Tango.BL/Enumerations/HeadTypes.cs14
-rw-r--r--Software/Visual_Studio/Tango.BL/Enumerations/JobSource.cs20
-rw-r--r--Software/Visual_Studio/Tango.BL/Enumerations/LiquidTypes.cs18
-rw-r--r--Software/Visual_Studio/Tango.BL/Enumerations/Permissions.cs270
-rw-r--r--Software/Visual_Studio/Tango.BL/Enumerations/PublishedProcedureProjectVisibilities.cs14
-rw-r--r--Software/Visual_Studio/Tango.BL/Enumerations/RmlQualifications.cs15
-rw-r--r--Software/Visual_Studio/Tango.BL/Enumerations/Roles.cs54
-rw-r--r--Software/Visual_Studio/Tango.BL/Enumerations/TangoUpdateStatuses.cs54
-rw-r--r--Software/Visual_Studio/Tango.BL/Enumerations/TechHeaters.cs48
-rw-r--r--Software/Visual_Studio/Tango.BL/Enumerations/TechMonitors.cs170
17 files changed, 601 insertions, 1966 deletions
diff --git a/Software/Visual_Studio/Tango.BL/Enumerations/ActionLogType.cs b/Software/Visual_Studio/Tango.BL/Enumerations/ActionLogType.cs
deleted file mode 100644
index 868bf7915..000000000
--- a/Software/Visual_Studio/Tango.BL/Enumerations/ActionLogType.cs
+++ /dev/null
@@ -1,112 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.ComponentModel;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-namespace Tango.BL.Enumerations
-{
- public enum ActionLogType
- {
- //Organizations and Users
- [Description("Organization Created")]
- OrganizationCreated = 1,
- [Description("Organization Deleted")]
- OrganizationDeleted = 2,
- [Description("Organization Saved")]
- OrganizationSaved = 3,
- [Description("User Created")]
- UserCreated = 4,
- [Description("User Deleted")]
- UserDeleted = 5,
- [Description("User Saved")]
- UserSaved = 6,
- [Description("User Restored")]
- UserRestored = 7,
- [Description("User Login")]
- UserLogin = 8,
- [Description("User Logout")]
- UserLogout = 9,
-
- //Hardware Version
- [Description("Hardware Version Created")]
- HardwareVersionCreated = 100,
- [Description("Hardware Version Deleted")]
- HardwareVersionDeleted = 101,
- [Description("Hardware Version Saved")]
- HardwareVersionSaved = 102,
- [Description("Hardware Version Imported")]
- HardwareVersionImported = 103,
-
- //RML
- [Description("RML Created")]
- RmlCreated = 200,
- [Description("RML Deleted")]
- RmlDeleted = 201,
- [Description("RML Saved")]
- RmlSaved = 202,
- [Description("RML Imported")]
- RmlImported = 203,
- [Description("RML Active Process Parameters Changed")]
- RmlActiveProcessParametersChanged = 204,
-
- //Jobs
- [Description("Job Created")]
- JobCreated = 300,
- [Description("Job Deleted")]
- JobDeleted = 301,
- [Description("Job Saved")]
- JobSaved = 302,
- [Description("Job Imported")]
- JobImported = 303,
-
- //Machines
- [Description("Machine Created")]
- MachineCreated = 400,
- [Description("Machine Deleted")]
- MachineDeleted = 401,
- [Description("Machine Saved")]
- MachineSaved = 402,
-
- //Catalogs
- [Description("Catalog Created")]
- CatalogCreated = 500,
- [Description("Catalog Deleted")]
- CatalogDeleted = 501,
- [Description("Catalog Saved")]
- CatalogSaved = 502,
-
- //Sites
- [Description("Site Created")]
- SiteCreated = 600,
- [Description("Site Deleted")]
- SiteDeleted = 601,
- [Description("Site Saved")]
- SiteSaved = 602,
-
- //Dispensers
- [Description("Dispenser Created")]
- DispenserCreated = 700,
- [Description("Dispenser Deleted")]
- DispenserDeleted = 701,
- [Description("Dispenser Saved")]
- DispenserSaved = 702,
-
- //Firmware
- [Description("Firmware Upgraded")]
- FirmwareUpgraded = 800,
-
- //Job Runs
- [Description("Machine Counters Reset")]
- MachineCountersReset = 900,
-
- //Data Store
- [Description("Data Store Item Created")]
- DataStoreItemCreated = 1000,
- [Description("Data Store Item Modified")]
- DataStoreItemModified = 1001,
- [Description("Data Store Item Deleted")]
- DataStoreItemDeleted = 1002,
- }
-}
diff --git a/Software/Visual_Studio/Tango.BL/Enumerations/EventTypeCategories.cs b/Software/Visual_Studio/Tango.BL/Enumerations/EventTypeCategories.cs
index 9206e81ac..48301ece0 100644
--- a/Software/Visual_Studio/Tango.BL/Enumerations/EventTypeCategories.cs
+++ b/Software/Visual_Studio/Tango.BL/Enumerations/EventTypeCategories.cs
@@ -30,7 +30,7 @@ namespace Tango.BL.Enumerations
[Description("Critical")]
Critical = 3,
- [Description("Success")]
- Success = 4,
+ [Description("Safety")]
+ Safety = 4,
}
}
diff --git a/Software/Visual_Studio/Tango.BL/Enumerations/EventTypeGroups.cs b/Software/Visual_Studio/Tango.BL/Enumerations/EventTypeGroups.cs
index 5ff1766d9..e6fc435d1 100644
--- a/Software/Visual_Studio/Tango.BL/Enumerations/EventTypeGroups.cs
+++ b/Software/Visual_Studio/Tango.BL/Enumerations/EventTypeGroups.cs
@@ -41,8 +41,6 @@ namespace Tango.BL.Enumerations
[Description("Application")]
Application = 10,
[Description("Transport")]
- Transport = 11,
- [Description("Jobs")]
- Jobs = 12
+ Transport = 11
}
}
diff --git a/Software/Visual_Studio/Tango.BL/Enumerations/EventTypes.cs b/Software/Visual_Studio/Tango.BL/Enumerations/EventTypes.cs
index 92096878e..927e55e29 100644
--- a/Software/Visual_Studio/Tango.BL/Enumerations/EventTypes.cs
+++ b/Software/Visual_Studio/Tango.BL/Enumerations/EventTypes.cs
@@ -26,21 +26,21 @@ namespace Tango.BL.Enumerations
REQUEST_SENT = 1000,
/// <summary>
- /// (Response has been received.)
+ /// (Response received )
/// </summary>
- [Description("Response has been received.")]
+ [Description("Response received ")]
RESPONSE_RECEIVED = 1001,
/// <summary>
- /// (Request to machine has failed.)
+ /// (Request to machine has failed)
/// </summary>
- [Description("Request to machine has failed.")]
+ [Description("Request to machine has failed")]
REQUEST_FAILED = 1002,
/// <summary>
- /// (Application has encountered an error.)
+ /// (Application has encountered an error)
/// </summary>
- [Description("Application has encountered an error.")]
+ [Description("Application has encountered an error")]
APPLICATION_EXCEPTION = 1003,
/// <summary>
@@ -50,63 +50,63 @@ namespace Tango.BL.Enumerations
APPLICATION_INFORMATION = 1004,
/// <summary>
- /// (Application started.)
+ /// (Application started)
/// </summary>
- [Description("Application started.")]
+ [Description("Application started")]
APPLICATION_STARTED = 1005,
/// <summary>
- /// (Application terminated.)
+ /// (Application terminated)
/// </summary>
- [Description("Application terminated.")]
+ [Description("Application terminated")]
APPLICATION_TERMINATED = 1006,
/// <summary>
- /// (Diagnostics recording started.)
+ /// (Diagnostics recording started)
/// </summary>
- [Description("Diagnostics recording started.")]
+ [Description("Diagnostics recording started")]
RECORDING_STARTED = 1007,
/// <summary>
- /// (Diagnostics recording stopped.)
+ /// (Diagnostics recording stopped)
/// </summary>
- [Description("Diagnostics recording stopped.")]
+ [Description("Diagnostics recording stopped")]
RECORDING_STOPPED = 1008,
/// <summary>
- /// (Job status message has been received from embedded device.)
+ /// (Job status message has been received from embedded device)
/// </summary>
- [Description("Job status message has been received from embedded device.")]
+ [Description("Job status message has been received from embedded device")]
JOB_STATUS = 1009,
/// <summary>
- /// (A job has been started.)
+ /// (A job has been started)
/// </summary>
- [Description("A job has been started.")]
+ [Description("A job has been started")]
JOB_STARTED = 1010,
/// <summary>
- /// (A job has been aborted.)
+ /// (A job has been aborted)
/// </summary>
- [Description("A job has been aborted.")]
+ [Description("A job has been aborted")]
JOB_ABORTED = 1011,
/// <summary>
- /// (A job has failed.)
+ /// (A job has failed)
/// </summary>
- [Description("A job has failed.")]
+ [Description("A job has failed")]
JOB_FAILED = 1012,
/// <summary>
- /// (Job completed successfully.)
+ /// (Job completed successfully)
/// </summary>
- [Description("Job completed successfully.")]
+ [Description("Job completed successfully")]
JOB_COMPLETED = 1013,
/// <summary>
- /// (Could not complete power-up. Cannot execute job )
+ /// (Could not complete power-up )
/// </summary>
- [Description("Could not complete power-up. Cannot execute job ")]
+ [Description("Could not complete power-up ")]
POWER_UP_BIT_FAILURE = 2000,
/// <summary>
@@ -116,75 +116,75 @@ namespace Tango.BL.Enumerations
EMERGENCY_PUSH_BUTTON_PRESSED = 2001,
/// <summary>
- /// (Cover is open. Cannot execute job )
+ /// (Front cover 1 is open )
/// </summary>
- [Description("Cover is open. Cannot execute job ")]
+ [Description("Front cover 1 is open ")]
FRONT_COVER_1_OPEN = 2002,
/// <summary>
- /// (Cover is open. Cannot execute job )
+ /// (Front cover 2 is open )
/// </summary>
- [Description("Cover is open. Cannot execute job ")]
+ [Description("Front cover 2 is open ")]
FRONT_COVER_2_OPEN = 2003,
/// <summary>
- /// (Cover is open. Cannot execute job )
+ /// (Front cover 3 is open )
/// </summary>
- [Description("Cover is open. Cannot execute job ")]
+ [Description("Front cover 3 is open ")]
FRONT_COVER_3_OPEN = 2004,
/// <summary>
- /// (Cover is open. Cannot execute job )
+ /// (Front cover 4 is open )
/// </summary>
- [Description("Cover is open. Cannot execute job ")]
+ [Description("Front cover 4 is open ")]
FRONT_COVER_4_OPEN = 2005,
/// <summary>
- /// (IFS door is open. Cannot start new job )
+ /// (Cartridges cover is open )
/// </summary>
- [Description("IFS door is open. Cannot start new job ")]
+ [Description("Cartridges cover is open ")]
CARTRIDGES_COVER_OPEN = 2006,
/// <summary>
- /// (Cover is open. Cannot execute job )
+ /// (Rear cover is open )
/// </summary>
- [Description("Cover is open. Cannot execute job ")]
- ARCH_COVER_OPEN = 2007,
+ [Description("Rear cover is open ")]
+ REAR_COVER_OPEN = 2007,
/// <summary>
- /// (The machine temperature is too high. Cannot execute job)
+ /// (The machine temperature is too high)
/// </summary>
- [Description("The machine temperature is too high. Cannot execute job")]
+ [Description("The machine temperature is too high")]
MACHINE_INTERNAL_OVERTEMPERATURE = 2008,
/// <summary>
- /// (Internal fans RPM is too low. Cannot execute job)
+ /// (Internal fans RPM is too low)
/// </summary>
- [Description("Internal fans RPM is too low. Cannot execute job")]
+ [Description("Internal fans RPM is too low")]
MACHINE_FANS_RPM_TOO_LOW = 2009,
/// <summary>
- /// (Internal fans stopped. Cannot execute job)
+ /// (Internal fans stopped)
/// </summary>
- [Description("Internal fans stopped. Cannot execute job")]
+ [Description("Internal fans stopped")]
MACHINE_FANS_STOPPED = 2010,
/// <summary>
- /// (Electrical cabinet fans RPM is too low. Cannot execute job)
+ /// (Electrical cabinet fans RPM is too low)
/// </summary>
- [Description("Electrical cabinet fans RPM is too low. Cannot execute job")]
+ [Description("Electrical cabinet fans RPM is too low")]
ELECTRICAL_CABINET_FANS_RPM_TOO_LOW = 2011,
/// <summary>
- /// (Electrical cabinet fans stopped. Cannot execute job)
+ /// (Electrical cabinet fans stopped)
/// </summary>
- [Description("Electrical cabinet fans stopped. Cannot execute job")]
+ [Description("Electrical cabinet fans stopped")]
ELECTRICAL_CABINET_FANS_STOPPED = 2012,
/// <summary>
- /// (Configuration file does not exist. Cannot execute job)
+ /// (Configuration file does not exist)
/// </summary>
- [Description("Configuration file does not exist. Cannot execute job")]
+ [Description("Configuration file does not exist")]
MACHINE_STATE_NO_CFG_FILE = 2013,
/// <summary>
@@ -194,249 +194,201 @@ namespace Tango.BL.Enumerations
MACHINE_STATE_HW_CONFIG_FAILED = 2014,
/// <summary>
- /// (Blower has failed)
+ /// ()
/// </summary>
- [Description("Blower has failed")]
+ [Description("")]
MACHINE_STATE_INITIAL_BLOWER_FAILED = 2015,
/// <summary>
- /// (unspecified error)
+ /// (Unknown error occurred)
/// </summary>
- [Description("unspecified error")]
+ [Description("Unknown error occurred")]
UNSPECIFIED = 2016,
/// <summary>
- /// (The machine temperature is too high. Cannot execute job)
+ /// (Thread break)
/// </summary>
- [Description("The machine temperature is too high. Cannot execute job")]
- MACHINE_INTERNAL_OVERTEMPERATURE_2 = 2017,
-
- /// <summary>
- /// (The electrical cabinet temperature is too high. Cannot execute job)
- /// </summary>
- [Description("The electrical cabinet temperature is too high. Cannot execute job")]
- ELECTRICAL_CABINET_OVERTEMPERATURE = 2018,
-
- /// <summary>
- /// (Software error has occurred )
- /// </summary>
- [Description("Software error has occurred ")]
- FPGA_WATCHDOG_ACTIVATED = 2019,
-
- /// <summary>
- /// (Software error has occurred )
- /// </summary>
- [Description("Software error has occurred ")]
- UNINTENDED_RESET = 2020,
-
- /// <summary>
- /// (Temperature measurement error has occurred. Cannot execute job.)
- /// </summary>
- [Description("Temperature measurement error has occurred. Cannot execute job.")]
- TEMPERATURE_MEASUREMENT_ERROR = 2021,
-
- /// <summary>
- /// (Cannot read the cartridge. Cannot perform ink filling )
- /// </summary>
- [Description("Cannot read the cartridge. Cannot perform ink filling ")]
- RFID_READER_MALFUNCTION_INK_SLOT = 2022,
-
- /// <summary>
- /// (Cannot read the cartridge. Cannot replace waste cartridge )
- /// </summary>
- [Description("Cannot read the cartridge. Cannot replace waste cartridge ")]
- RFID_READER_MALFUNCTION_WASTE_SLOT_1 = 2023,
-
- /// <summary>
- /// (Cannot read the cartridge. Cannot replace waste cartridge )
- /// </summary>
- [Description("Cannot read the cartridge. Cannot replace waste cartridge ")]
- RFID_READER_MALFUNCTION_WASTE_SLOT_2 = 2024,
-
- /// <summary>
- /// (Thread break. Cannot execute job)
- /// </summary>
- [Description("Thread break. Cannot execute job")]
+ [Description("Thread break")]
THREAD_BREAK = 3000,
/// <summary>
- /// (Thread tension control failure in feeder dancer. Cannot execute job)
+ /// (Thread tension control faiure in feeder dancer)
/// </summary>
- [Description("Thread tension control failure in feeder dancer. Cannot execute job")]
+ [Description("Thread tension control faiure in feeder dancer")]
THREAD_TENSION_CONTROL_FAILURE_FEEDER_DANCER = 3001,
/// <summary>
- /// (No cone in the winder. Cannot execute job)
+ /// (No cone in the winder)
/// </summary>
- [Description("No cone in the winder. Cannot execute job")]
+ [Description("No cone in the winder")]
WINDER_CONE_DOES_NOT_EXIST = 3002,
/// <summary>
- /// (The feeder motor current is too high. Cannot execute job)
+ /// (The feeder motor current is too high)
/// </summary>
- [Description("The feeder motor current is too high. Cannot execute job")]
+ [Description("The feeder motor current is too high")]
FEEDER_MOTOR_OVERCURRENT = 3003,
/// <summary>
- /// (The current in the right loader motor is too high. Cannot execute job)
+ /// (The current in the right loader motor is too high)
/// </summary>
- [Description("The current in the right loader motor is too high. Cannot execute job")]
+ [Description("The current in the right loader motor is too high")]
RIGHT_LOADER_MOTOR_OVERCURRENT = 3004,
/// <summary>
- /// (The puller motor current is too high. Cannot execute job )
+ /// (The puller motor current is too high )
/// </summary>
- [Description("The puller motor current is too high. Cannot execute job ")]
+ [Description("The puller motor current is too high ")]
PULLER_MOTOR_OVERCURRENT = 3005,
/// <summary>
- /// (The left loader motor current is too high. Cannot execute job)
+ /// (The left loader motor current is too high)
/// </summary>
- [Description("The left loader motor current is too high. Cannot execute job")]
+ [Description("The left loader motor current is too high")]
LEFT_LOADER_MOTOR_OVERCURRENT = 3006,
/// <summary>
- /// (The winder motor current is too high. Cannot execute job)
+ /// (The winder motor current is too high)
/// </summary>
- [Description("The winder motor current is too high. Cannot execute job")]
+ [Description("The winder motor current is too high")]
WINDER_MOTOR_OVERCURRENT = 3007,
/// <summary>
- /// (The screw motor current is too high. Cannot execute job)
+ /// (The screw motor current is too high)
/// </summary>
- [Description("The screw motor current is too high. Cannot execute job")]
+ [Description("The screw motor current is too high")]
SCREW_MOTOR_OVERCURRENT = 3008,
/// <summary>
- /// (The loading arm motor current is too high. Cannot execute job)
+ /// (The loading arm motor current is too high)
/// </summary>
- [Description("The loading arm motor current is too high. Cannot execute job")]
+ [Description("The loading arm motor current is too high")]
LOADING_ARM_MOTOR_OVERCURRENT = 3009,
/// <summary>
- /// (The feeder motor temperature is too high. Cannot execute job)
+ /// (The feeder motor temperature is too high)
/// </summary>
- [Description("The feeder motor temperature is too high. Cannot execute job")]
+ [Description("The feeder motor temperature is too high")]
FEEDER_MOTOR_OVERTEMPERATURE = 3010,
/// <summary>
- /// (The right loader motor temperature is too high. Cannot execute job)
+ /// (The right loader motor temperature is too high)
/// </summary>
- [Description("The right loader motor temperature is too high. Cannot execute job")]
+ [Description("The right loader motor temperature is too high")]
RIGHT_LOADER_MOTOR_OVERTEMPERATURE = 3011,
/// <summary>
- /// (The puller motor temperature is too high. Cannot execute job)
+ /// (The puller motor temperature is too high)
/// </summary>
- [Description("The puller motor temperature is too high. Cannot execute job")]
+ [Description("The puller motor temperature is too high")]
PULLER_MOTOR_OVERTEMPERATURE = 3012,
/// <summary>
- /// (The left loader motor temperature is too high. Cannot execute job)
+ /// (The left loader motor temperature is too high)
/// </summary>
- [Description("The left loader motor temperature is too high. Cannot execute job")]
+ [Description("The left loader motor temperature is too high")]
LEFT_LOADER_MOTOR_OVERTEMPERATURE = 3013,
/// <summary>
- /// (The winder motor temperature is too high. Cannot execute job)
+ /// (The winder motor temperature is too high)
/// </summary>
- [Description("The winder motor temperature is too high. Cannot execute job")]
+ [Description("The winder motor temperature is too high")]
WINDER_MOTOR_OVERTEMPERATURE = 3014,
/// <summary>
- /// (The screw motor temperature is too high. Cannot execute job)
+ /// (The screw motor temperature is too high)
/// </summary>
- [Description("The screw motor temperature is too high. Cannot execute job")]
+ [Description("The screw motor temperature is too high")]
SCREW_MOTOR_OVERTEMPERATURE = 3015,
/// <summary>
- /// (The loading arm motor temperature is too high. Cannot execute job)
+ /// (The loading arm motor temperature is too high)
/// </summary>
- [Description("The loading arm motor temperature is too high. Cannot execute job")]
+ [Description("The loading arm motor temperature is too high")]
LOADING_ARM_MOTOR_OVERTEMPERATURE = 3016,
/// <summary>
- /// (Feeder motor stalled. Cannot execute job)
+ /// (Feeder motor stalled)
/// </summary>
- [Description("Feeder motor stalled. Cannot execute job")]
+ [Description("Feeder motor stalled")]
FEEDER_MOTOR_STALL = 3017,
/// <summary>
- /// (Right loader motor stalled. Cannot execute job)
+ /// (Right loader motor stalled)
/// </summary>
- [Description("Right loader motor stalled. Cannot execute job")]
+ [Description("Right loader motor stalled")]
RIGHT_LOADER_MOTOR_STALL = 3018,
/// <summary>
- /// (Puller motor stalled. Cannot execute job)
+ /// (Puller motor stalled)
/// </summary>
- [Description("Puller motor stalled. Cannot execute job")]
+ [Description("Puller motor stalled")]
PULLER_MOTOR_STALL = 3019,
/// <summary>
- /// (Left loader motor stalled. Cannot execute job)
+ /// (Left loader motor stalled)
/// </summary>
- [Description("Left loader motor stalled. Cannot execute job")]
+ [Description("Left loader motor stalled")]
LEFT_LOADER_MOTOR_STALL = 3020,
/// <summary>
- /// (Winder motor stalled. Cannot execute job)
+ /// (Winder motor stalled)
/// </summary>
- [Description("Winder motor stalled. Cannot execute job")]
+ [Description("Winder motor stalled")]
WINDER_MOTOR_STALL = 3021,
/// <summary>
- /// (Screw motor stalled. Cannot execute job)
+ /// (Screw motor stalled)
/// </summary>
- [Description("Screw motor stalled. Cannot execute job")]
+ [Description("Screw motor stalled")]
SCREW_MOTOR_STALL = 3022,
/// <summary>
- /// (Loading arm motor stalled. Cannot execute job)
+ /// (Loading arm motor stalled)
/// </summary>
- [Description("Loading arm motor stalled. Cannot execute job")]
+ [Description("Loading arm motor stalled")]
LOADING_ARM_MOTOR_STALL = 3023,
/// <summary>
- /// (The feeder motor voltage is too low. Cannot execute job)
+ /// (The feeder motor voltage is too low)
/// </summary>
- [Description("The feeder motor voltage is too low. Cannot execute job")]
+ [Description("The feeder motor voltage is too low")]
FEEDER_MOTOR_UNDERVOLTAGE = 3024,
/// <summary>
- /// (The right loader motor voltage is too low. Cannot execute job)
+ /// (The right loader motor voltage is too low)
/// </summary>
- [Description("The right loader motor voltage is too low. Cannot execute job")]
+ [Description("The right loader motor voltage is too low")]
RIGHT_LOADER_MOTOR_UNDERVOLTAGE = 3025,
/// <summary>
- /// (The puller motor voltage is too low. Cannot execute job)
+ /// (The puller motor voltage is too low)
/// </summary>
- [Description("The puller motor voltage is too low. Cannot execute job")]
+ [Description("The puller motor voltage is too low")]
PULLER_MOTOR_UNDERVOLTAGE = 3026,
/// <summary>
- /// (The left loader motor voltage is too low. Cannot execute job)
+ /// (The left loader motor voltage is too low)
/// </summary>
- [Description("The left loader motor voltage is too low. Cannot execute job")]
+ [Description("The left loader motor voltage is too low")]
LEFT_LOADER_MOTOR_UNDERVOLTAGE = 3027,
/// <summary>
- /// (The winder motor voltage is too low. Cannot execute job)
+ /// (The winder motor voltage is too low)
/// </summary>
- [Description("The winder motor voltage is too low. Cannot execute job")]
+ [Description("The winder motor voltage is too low")]
WINDER_MOTOR_UNDERVOLTAGE = 3028,
/// <summary>
- /// (The screw motor voltage is too low. Cannot execute job)
+ /// (The screw motor voltage is too low)
/// </summary>
- [Description("The screw motor voltage is too low. Cannot execute job")]
+ [Description("The screw motor voltage is too low")]
SCREW_MOTOR_UNDERVOLTAGE = 3029,
/// <summary>
- /// (The loading arm motor voltage is too low. Cannot execute job)
+ /// (The loading arm motor voltage is too low)
/// </summary>
- [Description("The loading arm motor voltage is too low. Cannot execute job")]
+ [Description("The loading arm motor voltage is too low")]
LOADING_ARM_MOTOR_UNDERVOLTAGE = 3030,
/// <summary>
@@ -464,1425 +416,1077 @@ namespace Tango.BL.Enumerations
RTFU_DOWN_TIMEOUT = 3034,
/// <summary>
- /// (Screw travel failure. Cannot execute job)
+ /// (Screw travel failure)
/// </summary>
- [Description("Screw travel failure. Cannot execute job")]
+ [Description("Screw travel failure")]
SCREW_MOTOR_LIMIT_TIMEOUT = 3035,
/// <summary>
- /// (The winder dancer motor current is too high. Cannot execute job)
+ /// (The winder dancer motor current is too high)
/// </summary>
- [Description("The winder dancer motor current is too high. Cannot execute job")]
+ [Description("The winder dancer motor current is too high")]
WINDER_DANCER_MOTOR_OVERCURRENT = 3036,
/// <summary>
- /// (The puller dancer motor current is too high. Cannot execute job)
+ /// (The puller dancer motor current is too high)
/// </summary>
- [Description("The puller dancer motor current is too high. Cannot execute job")]
+ [Description("The puller dancer motor current is too high")]
PULLER_DANCER_MOTOR_OVERCURRENT = 3037,
/// <summary>
- /// (The feeder dancer motor current is too high. Cannot execute job)
+ /// (The feeder dancer motor current is too high)
/// </summary>
- [Description("The feeder dancer motor current is too high. Cannot execute job")]
+ [Description("The feeder dancer motor current is too high")]
FEEDER_DANCER_MOTOR_OVERCURRENT = 3038,
/// <summary>
- /// (The winder dancer motor temperature is too high. Cannot execute job)
+ /// (The winder dancer motor temperature is too high)
/// </summary>
- [Description("The winder dancer motor temperature is too high. Cannot execute job")]
+ [Description("The winder dancer motor temperature is too high")]
WINDER_DANCER_MOTOR_OVERTEMPERATURE = 3039,
/// <summary>
- /// (The puller dancer motor temperature is too high. Cannot execute job)
+ /// (The puller dancer motor temperature is too high)
/// </summary>
- [Description("The puller dancer motor temperature is too high. Cannot execute job")]
+ [Description("The puller dancer motor temperature is too high")]
PULLER_DANCER_MOTOR_OVERTEMPERATURE = 3040,
/// <summary>
- /// (The feeder dancer motor temperature is too high. Cannot execute job)
+ /// (The feeder dancer motor temperature is too high)
/// </summary>
- [Description("The feeder dancer motor temperature is too high. Cannot execute job")]
+ [Description("The feeder dancer motor temperature is too high")]
FEEDER_DANCER_MOTOR_OVERTEMPERATURE = 3041,
/// <summary>
- /// (Winder dancer motor stalled. Cannot execute job)
+ /// (Winder dancer motor stalled)
/// </summary>
- [Description("Winder dancer motor stalled. Cannot execute job")]
+ [Description("Winder dancer motor stalled")]
WINDER_DANCER_MOTOR_STALL = 3042,
/// <summary>
- /// (Puller dancer motor stalled. Cannot execute job)
+ /// (Puller dancer motor stalled)
/// </summary>
- [Description("Puller dancer motor stalled. Cannot execute job")]
+ [Description("Puller dancer motor stalled")]
PULLER_DANCER_MOTOR_STALL = 3043,
/// <summary>
- /// (Feeder dancer motor stalled. Cannot execute job)
+ /// (Feeder dancer motor stalled)
/// </summary>
- [Description("Feeder dancer motor stalled. Cannot execute job")]
+ [Description("Feeder dancer motor stalled")]
FEEDER_DANCER_MOTOR_STALL = 3044,
/// <summary>
- /// (The winder dancer motor voltage is too low. Cannot execute job)
+ /// (The winder dancer motor voltage is too low)
/// </summary>
- [Description("The winder dancer motor voltage is too low. Cannot execute job")]
+ [Description("The winder dancer motor voltage is too low")]
WINDER_DANCER_MOTOR_UNDERVOLTAGE = 3045,
/// <summary>
- /// (The puller dancer motor voltage is too low. Cannot execute job)
+ /// (The puller dancer motor voltage is too low)
/// </summary>
- [Description("The puller dancer motor voltage is too low. Cannot execute job")]
+ [Description("The puller dancer motor voltage is too low")]
PULLER_DANCER_MOTOR_UNDERVOLTAGE = 3046,
/// <summary>
- /// (The feeder dancer motor voltage is too low. Cannot execute job)
+ /// (The feeder dancer motor voltage is too low)
/// </summary>
- [Description("The feeder dancer motor voltage is too low. Cannot execute job")]
+ [Description("The feeder dancer motor voltage is too low")]
FEEDER_DANCER_MOTOR_UNDERVOLTAGE = 3047,
/// <summary>
- /// (Thread tension control failure in puller dancer. Cannot execute job)
+ /// (Thread tension control failure in puller dancer)
/// </summary>
- [Description("Thread tension control failure in puller dancer. Cannot execute job")]
+ [Description("Thread tension control failure in puller dancer")]
THREAD_TENSION_CONTROL_FAILURE_PULLER_DANCER = 3048,
/// <summary>
- /// (Thread tension control failure in winder dancer. Cannot execute job)
+ /// (Thread tension control failure in winder dancer)
/// </summary>
- [Description("Thread tension control failure in winder dancer. Cannot execute job")]
+ [Description("Thread tension control failure in winder dancer")]
THREAD_TENSION_CONTROL_FAILURE_WINDER_DANCER = 3049,
/// <summary>
- /// (No thread in machine. Cannot execute job)
+ /// ()
/// </summary>
- [Description("No thread in machine. Cannot execute job")]
+ [Description("")]
MACHINE_STATE_NO_THREAD_DETECTED = 3050,
/// <summary>
- /// (Thread loading error. Cannot execute job)
+ /// (The dryer motor current is too high)
/// </summary>
- [Description("Thread loading error. Cannot execute job")]
- THREAD_LOADING_ERROR = 3051,
-
- /// <summary>
- /// (The dryer motor current is too high. Cannot execute job)
- /// </summary>
- [Description("The dryer motor current is too high. Cannot execute job")]
+ [Description("The dryer motor current is too high")]
DRYER_MOTOR_OVERCURRENT = 4000,
/// <summary>
- /// (The dryer motor temperature is too high. Cannot execute jobs)
+ /// (The dryer motor temperature is too high)
/// </summary>
- [Description("The dryer motor temperature is too high. Cannot execute jobs")]
+ [Description("The dryer motor temperature is too high")]
DRYER_MOTOR_OVERTEMPERATURE = 4001,
/// <summary>
- /// (Dryer motor stalled. Cannot execute job)
+ /// (Dryer motor stalled)
/// </summary>
- [Description("Dryer motor stalled. Cannot execute job")]
+ [Description("Dryer motor stalled")]
DRYER_MOTOR_STALL = 4002,
/// <summary>
- /// (The dryer motor voltage is too low. Cannot execute job)
+ /// (The dryer motor voltage is too low)
/// </summary>
- [Description("The dryer motor voltage is too low. Cannot execute job")]
+ [Description("The dryer motor voltage is too low")]
DRYER_MOTOR_UNDERVOLTAGE = 4003,
/// <summary>
- /// (The dryer door is open. Cannot execute job)
+ /// (The dryer door is open)
/// </summary>
- [Description("The dryer door is open. Cannot execute job")]
+ [Description("The dryer door is open")]
DRYER_DOOR_OPEN = 4004,
/// <summary>
- /// (The temperature in dryer zone is too high. Cannot execute job)
+ /// (The temperature in dryer zone 1 is too high)
/// </summary>
- [Description("The temperature in dryer zone is too high. Cannot execute job")]
+ [Description("The temperature in dryer zone 1 is too high")]
DRYER_ZONE_1_OVERTEMPERATURE = 4005,
/// <summary>
- /// (The temperature in dryer zone is too high. Cannot execute job)
+ /// (The temperature in dryer zone 2 is too high)
/// </summary>
- [Description("The temperature in dryer zone is too high. Cannot execute job")]
+ [Description("The temperature in dryer zone 2 is too high")]
DRYER_ZONE_2_OVERTEMPERATURE = 4006,
/// <summary>
- /// (The temperature in dryer zone is too low. Cannot execute job)
+ /// (The temperature in dryer zone 1 is too low)
/// </summary>
- [Description("The temperature in dryer zone is too low. Cannot execute job")]
+ [Description("The temperature in dryer zone 1 is too low")]
DRYER_ZONE_1_UNDERTEMPERATURE_A = 4007,
/// <summary>
- /// (The temperature in dryer zone is too low. Cannot execute job)
+ /// (The temperature in dryer zone 1 is too low)
/// </summary>
- [Description("The temperature in dryer zone is too low. Cannot execute job")]
+ [Description("The temperature in dryer zone 1 is too low")]
DRYER_ZONE_1_UNDERTEMPERATURE_B = 4008,
/// <summary>
- /// (The temperature in dryer zone is too low. Cannot execute job)
+ /// (The temperature in dryer zone 2 is too low)
/// </summary>
- [Description("The temperature in dryer zone is too low. Cannot execute job")]
+ [Description("The temperature in dryer zone 2 is too low")]
DRYER_ZONE_2_UNDERTEMPERATURE_B = 4009,
/// <summary>
- /// (Thermal cut-off. Cannot execute job)
+ /// (Thermal cut-off)
/// </summary>
- [Description("Thermal cut-off. Cannot execute job")]
+ [Description("Thermal cut-off")]
DRYER_THERMAL_CUTOFF = 4010,
/// <summary>
- /// (Dryer zone current is out of range. Cannot execute job)
+ /// (Dryer zone current is out of range)
/// </summary>
- [Description("Dryer zone current is out of range. Cannot execute job")]
+ [Description("Dryer zone current is out of range")]
DRYER_HEATERS_ZONE_1_CURRENT_OUT_OF_RANGE = 4011,
/// <summary>
- /// (Dryer zone current is out of range. Cannot execute job)
+ /// (Dryer zone current is out of range)
/// </summary>
- [Description("Dryer zone current is out of range. Cannot execute job")]
+ [Description("Dryer zone current is out of range")]
DRYER_HEATERS_ZONE_2_CURRENT_OUT_OF_RANGE = 4012,
/// <summary>
- /// (Dryer zone current loop break. Cannot execute job)
+ /// (Dryer zone current loop break)
/// </summary>
- [Description("Dryer zone current loop break. Cannot execute job")]
+ [Description("Dryer zone current loop break")]
DRYER_HEATERS_ZONE_1_CURRENT_LOOP_BREAK = 4013,
/// <summary>
- /// (Dryer zone current loop break. Cannot execute job)
+ /// (Dryer zone current loop break)
/// </summary>
- [Description("Dryer zone current loop break. Cannot execute job")]
+ [Description("Dryer zone current loop break")]
DRYER_HEATERS_ZONE_2_CURRENT_LOOP_BREAK = 4014,
/// <summary>
- /// (Dryer fan RPM is too low. Cannot execute job)
+ /// (Dryer fan RPM is too low)
/// </summary>
- [Description("Dryer fan RPM is too low. Cannot execute job")]
+ [Description("Dryer fan RPM is too low")]
DRYER_FAN_RPM_TOO_LOW = 4015,
/// <summary>
- /// (Dryer fan stopped. Cannot execute job)
+ /// (Dryer fan stopped)
/// </summary>
- [Description("Dryer fan stopped. Cannot execute job")]
+ [Description("Dryer fan stopped")]
DRYER_FAN_STOPPED = 4016,
/// <summary>
- /// (The current in dryer lid motor is too high. Cannot execute job)
+ /// (The current in dryer lid motor is too high)
/// </summary>
- [Description("The current in dryer lid motor is too high. Cannot execute job")]
+ [Description("The current in dryer lid motor is too high")]
DRYER_LID_MOTOR_OVERCURRENT = 4017,
/// <summary>
- /// (The temperature in the dryer lid motor is too high. Cannot execute job)
+ /// (The temperature in the dryer lid motor is too high)
/// </summary>
- [Description("The temperature in the dryer lid motor is too high. Cannot execute job")]
+ [Description("The temperature in the dryer lid motor is too high")]
DRYER_LID_MOTOR_OVERTEMPERATURE = 4018,
/// <summary>
- /// (Dryer lid motor stalled. Cannot execute job)
+ /// (Dryer lid motor stalled)
/// </summary>
- [Description("Dryer lid motor stalled. Cannot execute job")]
+ [Description("Dryer lid motor stalled")]
DRYER_LID_MOTOR_STALL = 4019,
/// <summary>
- /// (The dryer lid motor voltage is too low. Cannot execute job)
+ /// (The dryer lid motor voltage is too low)
/// </summary>
- [Description("The dryer lid motor voltage is too low. Cannot execute job")]
+ [Description("The dryer lid motor voltage is too low")]
DRYER_LID_MOTOR_UNDERVOLTAGE = 4020,
/// <summary>
- /// (The temperature in dryer zone is too low. Cannot execute job)
+ /// (The temperature in dryer zone 2 is too low)
/// </summary>
- [Description("The temperature in dryer zone is too low. Cannot execute job")]
+ [Description("The temperature in dryer zone 2 is too low")]
DRYER_ZONE_2_UNDERTEMPERATURE_A = 4021,
/// <summary>
- /// (The temperature in dyeing head zone is too high. Cannot execute job)
+ /// (The temperature in dyeing head zone is too high)
/// </summary>
- [Description("The temperature in dyeing head zone is too high. Cannot execute job")]
+ [Description("The temperature in dyeing head zone is too high")]
DYEING_HEAD_ZONE_1_OVERTEMPERATURE = 5000,
/// <summary>
- /// (The temperature in dyeing head zone is too high. Cannot execute job)
+ /// (The temperature in dyeing head zone is too high)
/// </summary>
- [Description("The temperature in dyeing head zone is too high. Cannot execute job")]
+ [Description("The temperature in dyeing head zone is too high")]
DYEING_HEAD_ZONE_2_OVERTEMPERATURE = 5001,
/// <summary>
- /// (The temperature in dyeing head zone is too high. Cannot execute job)
+ /// (The temperature in dyeing head zone is too high)
/// </summary>
- [Description("The temperature in dyeing head zone is too high. Cannot execute job")]
+ [Description("The temperature in dyeing head zone is too high")]
DYEING_HEAD_ZONE_3_OVERTEMPERATURE = 5002,
/// <summary>
- /// (The temperature in dyeing head zone is too high. Cannot execute job)
+ /// (The temperature in dyeing head zone is too high)
/// </summary>
- [Description("The temperature in dyeing head zone is too high. Cannot execute job")]
+ [Description("The temperature in dyeing head zone is too high")]
DYEING_HEAD_ZONE_4_OVERTEMPERATURE = 5003,
/// <summary>
- /// (The temperature in dyeing head zone is too high. Cannot execute job)
+ /// (The temperature in dyeing head zone is too high)
/// </summary>
- [Description("The temperature in dyeing head zone is too high. Cannot execute job")]
+ [Description("The temperature in dyeing head zone is too high")]
DYEING_HEAD_ZONE_5_OVERTEMPERATURE = 5004,
/// <summary>
- /// (The temperature in dyeing head zone is too high. Cannot execute job)
+ /// (The temperature in dyeing head zone is too high)
/// </summary>
- [Description("The temperature in dyeing head zone is too high. Cannot execute job")]
+ [Description("The temperature in dyeing head zone is too high")]
DYEING_HEAD_ZONE_6_OVERTEMPERATURE = 5005,
/// <summary>
- /// (The temperature in dyeing head zone is too low. Cannot execute job)
+ /// (The temperature in dyeing head zone is too low)
/// </summary>
- [Description("The temperature in dyeing head zone is too low. Cannot execute job")]
+ [Description("The temperature in dyeing head zone is too low")]
DYEING_HEAD_ZONE_1_UNDERTEMPERATURE_A = 5006,
/// <summary>
- /// (The temperature in dyeing head zone is too low. Cannot execute job)
+ /// (The temperature in dyeing head zone is too low)
/// </summary>
- [Description("The temperature in dyeing head zone is too low. Cannot execute job")]
+ [Description("The temperature in dyeing head zone is too low")]
DYEING_HEAD_ZONE_2_UNDERTEMPERATURE_A = 5007,
/// <summary>
- /// (The temperature in dyeing head zone is too low. Cannot execute job)
+ /// (The temperature in dyeing head zone is too low)
/// </summary>
- [Description("The temperature in dyeing head zone is too low. Cannot execute job")]
+ [Description("The temperature in dyeing head zone is too low")]
DYEING_HEAD_ZONE_3_UNDERTEMPERATURE_A = 5008,
/// <summary>
- /// (The temperature in dyeing head zone is too low. Cannot execute job)
+ /// (The temperature in dyeing head zone is too low)
/// </summary>
- [Description("The temperature in dyeing head zone is too low. Cannot execute job")]
+ [Description("The temperature in dyeing head zone is too low")]
DYEING_HEAD_ZONE_4_UNDERTEMPERATURE_A = 5009,
/// <summary>
- /// (The temperature in dyeing head zone is too low. Cannot execute job)
+ /// (The temperature in dyeing head zone is too low)
/// </summary>
- [Description("The temperature in dyeing head zone is too low. Cannot execute job")]
+ [Description("The temperature in dyeing head zone is too low")]
DYEING_HEAD_ZONE_5_UNDERTEMPERATURE_A = 5010,
/// <summary>
- /// (The temperature in dyeing head zone is too low. Cannot execute job)
+ /// (The temperature in dyeing head zone is too low)
/// </summary>
- [Description("The temperature in dyeing head zone is too low. Cannot execute job")]
+ [Description("The temperature in dyeing head zone is too low")]
DYEING_HEAD_ZONE_6_UNDERTEMPERATURE_A = 5011,
/// <summary>
- /// (The temperature in dyeing head zone is too low. Cannot execute job)
+ /// (The temperature in dyeing head zone is too low)
/// </summary>
- [Description("The temperature in dyeing head zone is too low. Cannot execute job")]
+ [Description("The temperature in dyeing head zone is too low")]
DYEING_HEAD_ZONE_1_UNDERTEMPERATURE_B = 5012,
/// <summary>
- /// (The temperature in dyeing head zone is too low. Cannot execute job)
+ /// (The temperature in dyeing head zone is too low)
/// </summary>
- [Description("The temperature in dyeing head zone is too low. Cannot execute job")]
+ [Description("The temperature in dyeing head zone is too low")]
DYEING_HEAD_ZONE_2_UNDERTEMPERATURE_B = 5013,
/// <summary>
- /// (The temperature in dyeing head zone is too low. Cannot execute job)
+ /// (The temperature in dyeing head zone is too low)
/// </summary>
- [Description("The temperature in dyeing head zone is too low. Cannot execute job")]
+ [Description("The temperature in dyeing head zone is too low")]
DYEING_HEAD_ZONE_3_UNDERTEMPERATURE_B = 5014,
/// <summary>
- /// (The temperature in dyeing head zone is too low. Cannot execute job)
+ /// (The temperature in dyeing head zone is too low)
/// </summary>
- [Description("The temperature in dyeing head zone is too low. Cannot execute job")]
+ [Description("The temperature in dyeing head zone is too low")]
DYEING_HEAD_ZONE_4_UNDERTEMPERATURE_B = 5015,
/// <summary>
- /// (The temperature in dyeing head zone is too low. Cannot execute job)
+ /// (The temperature in dyeing head zone is too low)
/// </summary>
- [Description("The temperature in dyeing head zone is too low. Cannot execute job")]
+ [Description("The temperature in dyeing head zone is too low")]
DYEING_HEAD_ZONE_5_UNDERTEMPERATURE_B = 5016,
/// <summary>
- /// (The temperature in dyeing head zone is too low. Cannot execute job)
+ /// (The temperature in dyeing head zone is too low)
/// </summary>
- [Description("The temperature in dyeing head zone is too low. Cannot execute job")]
+ [Description("The temperature in dyeing head zone is too low")]
DYEING_HEAD_ZONE_6_UNDERTEMPERATURE_B = 5017,
/// <summary>
- /// (Dyeing head zone current is out of range. Cannot execute job)
+ /// (Dyeing head zone current is out of range)
/// </summary>
- [Description("Dyeing head zone current is out of range. Cannot execute job")]
+ [Description("Dyeing head zone current is out of range")]
DYEING_HEAD_ZONE_1_CURRENT_OUT_OF_RANGE = 5018,
/// <summary>
- /// (Dyeing head zone current is out of range. Cannot execute job)
+ /// (Dyeing head zone current is out of range)
/// </summary>
- [Description("Dyeing head zone current is out of range. Cannot execute job")]
+ [Description("Dyeing head zone current is out of range")]
DYEING_HEAD_ZONE_2_CURRENT_OUT_OF_RANGE = 5019,
/// <summary>
- /// (Dyeing head zone current is out of range. Cannot execute job)
+ /// (Dyeing head zone current is out of range)
/// </summary>
- [Description("Dyeing head zone current is out of range. Cannot execute job")]
+ [Description("Dyeing head zone current is out of range")]
DYEING_HEAD_ZONE_3_CURRENT_OUT_OF_RANGE = 5020,
/// <summary>
- /// (Dyeing head zone current is out of range. Cannot execute job)
+ /// (Dyeing head zone current is out of range)
/// </summary>
- [Description("Dyeing head zone current is out of range. Cannot execute job")]
+ [Description("Dyeing head zone current is out of range")]
DYEING_HEAD_ZONE_4_CURRENT_OUT_OF_RANGE = 5021,
/// <summary>
- /// (Dyeing head zone current is out of range. Cannot execute job)
+ /// (Dyeing head zone current is out of range)
/// </summary>
- [Description("Dyeing head zone current is out of range. Cannot execute job")]
- DYEING_HEAD_ZONE_5_CURRENT_OUT_OF_RANGE = 5022,
+ [Description("Dyeing head zone current is out of range")]
+ DYEING_HEAD_ZONE_5_6_CURRENT_OUT_OF_RANGE = 5022,
/// <summary>
- /// (Dyeing head zone current loop break. Cannot execute job)
+ /// (Dyeing head zone current loop break)
/// </summary>
- [Description("Dyeing head zone current loop break. Cannot execute job")]
+ [Description("Dyeing head zone current loop break")]
DYEING_HEAD_ZONE_1_CURRENT_LOOP_BREAK = 5023,
/// <summary>
- /// (Dyeing head zone current loop break. Cannot execute job)
+ /// (Dyeing head zone current loop break)
/// </summary>
- [Description("Dyeing head zone current loop break. Cannot execute job")]
+ [Description("Dyeing head zone current loop break")]
DYEING_HEAD_ZONE_2_CURRENT_LOOP_BREAK = 5024,
/// <summary>
- /// (Dyeing head zone current loop break. Cannot execute job)
+ /// (Dyeing head zone current loop break)
/// </summary>
- [Description("Dyeing head zone current loop break. Cannot execute job")]
+ [Description("Dyeing head zone current loop break")]
DYEING_HEAD_ZONE_3_CURRENT_LOOP_BREAK = 5025,
/// <summary>
- /// (Dyeing head zone current loop break. Cannot execute job)
+ /// (Dyeing head zone current loop break)
/// </summary>
- [Description("Dyeing head zone current loop break. Cannot execute job")]
+ [Description("Dyeing head zone current loop break")]
DYEING_HEAD_ZONE_4_CURRENT_LOOP_BREAK = 5026,
/// <summary>
- /// (Dyeing head zone current loop break. Cannot execute job)
+ /// (Dyeing head zone current loop break)
/// </summary>
- [Description("Dyeing head zone current loop break. Cannot execute job")]
- DYEING_HEAD_ZONE_5_CURRENT_LOOP_BREAK = 5027,
+ [Description("Dyeing head zone current loop break")]
+ DYEING_HEAD_ZONE_5_6_CURRENT_LOOP_BREAK = 5027,
/// <summary>
- /// (Thermal cut-off. Cannot execute job)
+ /// (Thermal cut-off)
/// </summary>
- [Description("Thermal cut-off. Cannot execute job")]
+ [Description("Thermal cut-off")]
DYEING_HEAD_THERMAL_CUTOFF = 5028,
/// <summary>
- /// (Could not open the dyeing head cover. Cannot execute job)
+ /// (Could not open the dyeing head cover)
/// </summary>
- [Description("Could not open the dyeing head cover. Cannot execute job")]
+ [Description("Could not open the dyeing head cover")]
DYEING_HEAD_COVER_OPEN_TIMEOUT = 5029,
/// <summary>
- /// (Could not close the dyeing head cover. Cannot execute job )
+ /// (Could not close the dyeing head cover )
/// </summary>
- [Description("Could not close the dyeing head cover. Cannot execute job ")]
+ [Description("Could not close the dyeing head cover ")]
DYEING_HEAD_COVER_CLOSE_TIMEOUT = 5030,
/// <summary>
- /// (The current in the dyeing head cover motor is too high. Cannot execute job)
+ /// (The current in the dyeing head cover motor is too high)
/// </summary>
- [Description("The current in the dyeing head cover motor is too high. Cannot execute job")]
+ [Description("The current in the dyeing head cover motor is too high")]
DYEING_HEAD_COVER_MOTOR_OVERCURRENT = 5031,
/// <summary>
- /// (The temperature in the dyeing head cover motor is too high. Cannot execute job)
+ /// (The temperature in the dyeing head cover motor is too high)
/// </summary>
- [Description("The temperature in the dyeing head cover motor is too high. Cannot execute job")]
+ [Description("The temperature in the dyeing head cover motor is too high")]
DYEING_HEAD_COVER_MOTOR_OVERTEMPERATURE = 5032,
/// <summary>
- /// (Dyeing head cover motor stalled. Cannot execute job)
+ /// (Dyeing head cover motor stalled)
/// </summary>
- [Description("Dyeing head cover motor stalled. Cannot execute job")]
+ [Description("Dyeing head cover motor stalled")]
DYEING_HEAD_COVER_MOTOR_STALL = 5033,
/// <summary>
- /// (The voltage in the dyeing head cover motor is too low. Cannot execute job)
+ /// (The voltage in the dyeing head cover motor is too low)
/// </summary>
- [Description("The voltage in the dyeing head cover motor is too low. Cannot execute job")]
+ [Description("The voltage in the dyeing head cover motor is too low")]
DYEING_HEAD_COVER_MOTOR_UNDERVOLTAGE = 5034,
/// <summary>
- /// (The current in the dyeing head cleaning mechanism motor is too high. Cannot execute job)
+ /// (The current in the dyeing head cleaning mechanism motor is too high)
/// </summary>
- [Description("The current in the dyeing head cleaning mechanism motor is too high. Cannot execute job")]
+ [Description("The current in the dyeing head cleaning mechanism motor is too high")]
DYEING_HEAD_CLEANING_MECHANISM_MOTOR_OVERCURRENT = 5035,
/// <summary>
- /// (The temperature in the dyeing head cleaning mechanism motor is too high. Cannot execute job)
+ /// (The temperature in the dyeing head cleaning mechanism motor is too high)
/// </summary>
- [Description("The temperature in the dyeing head cleaning mechanism motor is too high. Cannot execute job")]
+ [Description("The temperature in the dyeing head cleaning mechanism motor is too high")]
DYEING_HEAD_CLEANING_MECHANISM_MOTOR_OVERTEMPERATURE = 5036,
/// <summary>
- /// (Dyeing head cleaning mechanism motor stalled. Cannot execute job)
+ /// (Dyeing head cleaning mechanism motor stalled)
/// </summary>
- [Description("Dyeing head cleaning mechanism motor stalled. Cannot execute job")]
+ [Description("Dyeing head cleaning mechanism motor stalled")]
DYEING_HEAD_CLEANING_MECHANISM_MOTOR_STALL = 5037,
/// <summary>
- /// (The voltage in dyeing head cleaning mechanism motor is too low. Cannot execute job)
+ /// (The voltage in dyeing head cleaning mechanism motor is too low)
/// </summary>
- [Description("The voltage in dyeing head cleaning mechanism motor is too low. Cannot execute job")]
+ [Description("The voltage in dyeing head cleaning mechanism motor is too low")]
DYEING_HEAD_CLEANING_MECHANISM_MOTOR_UNDERVOLTAGE = 5038,
/// <summary>
- /// (The current in the dyeing head cleaning head motor is too high. Cannot execute job)
+ /// (The current in the dyeing head cleaning head motor is too high)
/// </summary>
- [Description("The current in the dyeing head cleaning head motor is too high. Cannot execute job")]
+ [Description("The current in the dyeing head cleaning head motor is too high")]
DYEING_HEAD_CLEANING_HEAD_MOTOR_OVERCURRENT = 5039,
/// <summary>
- /// (The temperature in the dyeing head cleaning head motor is too high. Cannot execute job)
+ /// (The temperature in the dyeing head cleaning head motor is too high)
/// </summary>
- [Description("The temperature in the dyeing head cleaning head motor is too high. Cannot execute job")]
+ [Description("The temperature in the dyeing head cleaning head motor is too high")]
DYEING_HEAD_CLEANING_HEAD_MOTOR_OVERTEMPERATURE = 5040,
/// <summary>
- /// (Dyeing head cleaning mechanism motor stalled. Cannot execute job)
+ /// (Dyeing head cleaning mechanism motor stalled)
/// </summary>
- [Description("Dyeing head cleaning mechanism motor stalled. Cannot execute job")]
+ [Description("Dyeing head cleaning mechanism motor stalled")]
DYEING_HEAD_CLEANING_HEAD_MOTOR_STALL = 5041,
/// <summary>
- /// (The voltage in dyeing head cleaning head motor is too low. Cannot execute job)
+ /// (The voltage in dyeing head cleaning head motor is too low)
/// </summary>
- [Description("The voltage in dyeing head cleaning head motor is too low. Cannot execute job")]
+ [Description("The voltage in dyeing head cleaning head motor is too low")]
DYEING_HEAD_CLEANING_HEAD_MOTOR_UNDERVOLTAGE = 5042,
/// <summary>
- /// (The temperature in dyeing head zone is too high. Cannot execute job)
- /// </summary>
- [Description("The temperature in dyeing head zone is too high. Cannot execute job")]
- DYEING_HEAD_ZONE_7_OVERTEMPERATURE = 5043,
-
- /// <summary>
- /// (The temperature in dyeing head zone is too high. Cannot execute job)
- /// </summary>
- [Description("The temperature in dyeing head zone is too high. Cannot execute job")]
- DYEING_HEAD_ZONE_8_OVERTEMPERATURE = 5044,
-
- /// <summary>
- /// (The temperature in dyeing head zone is too high. Cannot execute job)
- /// </summary>
- [Description("The temperature in dyeing head zone is too high. Cannot execute job")]
- DYEING_HEAD_ZONE_9_OVERTEMPERATURE = 5045,
-
- /// <summary>
- /// (The temperature in dyeing head zone is too high. Cannot execute job)
- /// </summary>
- [Description("The temperature in dyeing head zone is too high. Cannot execute job")]
- DYEING_HEAD_ZONE_10_OVERTEMPERATURE = 5046,
-
- /// <summary>
- /// (The temperature in dyeing head zone is too high. Cannot execute job)
- /// </summary>
- [Description("The temperature in dyeing head zone is too high. Cannot execute job")]
- DYEING_HEAD_ZONE_11_OVERTEMPERATURE = 5047,
-
- /// <summary>
- /// (The temperature in dyeing head zone is too high. Cannot execute job)
- /// </summary>
- [Description("The temperature in dyeing head zone is too high. Cannot execute job")]
- DYEING_HEAD_ZONE_12_OVERTEMPERATURE = 5048,
-
- /// <summary>
- /// (The temperature in dyeing head zone is too low. Cannot execute job)
- /// </summary>
- [Description("The temperature in dyeing head zone is too low. Cannot execute job")]
- DYEING_HEAD_ZONE_7_UNDERTEMPERATURE_A = 5049,
-
- /// <summary>
- /// (The temperature in dyeing head zone is too low. Cannot execute job)
- /// </summary>
- [Description("The temperature in dyeing head zone is too low. Cannot execute job")]
- DYEING_HEAD_ZONE_8_UNDERTEMPERATURE_A = 5050,
-
- /// <summary>
- /// (The temperature in dyeing head zone is too low. Cannot execute job)
- /// </summary>
- [Description("The temperature in dyeing head zone is too low. Cannot execute job")]
- DYEING_HEAD_ZONE_9_UNDERTEMPERATURE_A = 5051,
-
- /// <summary>
- /// (The temperature in dyeing head zone is too low. Cannot execute job)
- /// </summary>
- [Description("The temperature in dyeing head zone is too low. Cannot execute job")]
- DYEING_HEAD_ZONE_10_UNDERTEMPERATURE_A = 5052,
-
- /// <summary>
- /// (The temperature in dyeing head zone is too low. Cannot execute job)
- /// </summary>
- [Description("The temperature in dyeing head zone is too low. Cannot execute job")]
- DYEING_HEAD_ZONE_11_UNDERTEMPERATURE_A = 5053,
-
- /// <summary>
- /// (The temperature in dyeing head zone is too low. Cannot execute job)
- /// </summary>
- [Description("The temperature in dyeing head zone is too low. Cannot execute job")]
- DYEING_HEAD_ZONE_12_UNDERTEMPERATURE_A = 5054,
-
- /// <summary>
- /// (The temperature in dyeing head zone is too low. Cannot execute job)
- /// </summary>
- [Description("The temperature in dyeing head zone is too low. Cannot execute job")]
- DYEING_HEAD_ZONE_7_UNDERTEMPERATURE_B = 5055,
-
- /// <summary>
- /// (The temperature in dyeing head zone is too low. Cannot execute job)
- /// </summary>
- [Description("The temperature in dyeing head zone is too low. Cannot execute job")]
- DYEING_HEAD_ZONE_8_UNDERTEMPERATURE_B = 5056,
-
- /// <summary>
- /// (The temperature in dyeing head zone is too low. Cannot execute job)
- /// </summary>
- [Description("The temperature in dyeing head zone is too low. Cannot execute job")]
- DYEING_HEAD_ZONE_9_UNDERTEMPERATURE_B = 5057,
-
- /// <summary>
- /// (The temperature in dyeing head zone is too low. Cannot execute job)
- /// </summary>
- [Description("The temperature in dyeing head zone is too low. Cannot execute job")]
- DYEING_HEAD_ZONE_10_UNDERTEMPERATURE_B = 5058,
-
- /// <summary>
- /// (The temperature in dyeing head zone is too low. Cannot execute job)
+ /// (The temperature in the mixer is too high)
/// </summary>
- [Description("The temperature in dyeing head zone is too low. Cannot execute job")]
- DYEING_HEAD_ZONE_11_UNDERTEMPERATURE_B = 5059,
-
- /// <summary>
- /// (The temperature in dyeing head zone is too low. Cannot execute job)
- /// </summary>
- [Description("The temperature in dyeing head zone is too low. Cannot execute job")]
- DYEING_HEAD_ZONE_12_UNDERTEMPERATURE_B = 5060,
-
- /// <summary>
- /// (Dyeing head zone current is out of range. Cannot execute job)
- /// </summary>
- [Description("Dyeing head zone current is out of range. Cannot execute job")]
- DYEING_HEAD_ZONE_6_CURRENT_OUT_OF_RANGE = 5061,
-
- /// <summary>
- /// (Dyeing head zone current is out of range. Cannot execute job)
- /// </summary>
- [Description("Dyeing head zone current is out of range. Cannot execute job")]
- DYEING_HEAD_ZONE_7_CURRENT_OUT_OF_RANGE = 5062,
-
- /// <summary>
- /// (Dyeing head zone current is out of range. Cannot execute job)
- /// </summary>
- [Description("Dyeing head zone current is out of range. Cannot execute job")]
- DYEING_HEAD_ZONE_8_CURRENT_OUT_OF_RANGE = 5063,
-
- /// <summary>
- /// (Dyeing head zone current is out of range. Cannot execute job)
- /// </summary>
- [Description("Dyeing head zone current is out of range. Cannot execute job")]
- DYEING_HEAD_ZONE_9_CURRENT_OUT_OF_RANGE = 5064,
-
- /// <summary>
- /// (Dyeing head zone current is out of range. Cannot execute job)
- /// </summary>
- [Description("Dyeing head zone current is out of range. Cannot execute job")]
- DYEING_HEAD_ZONE_10_CURRENT_OUT_OF_RANGE = 5065,
-
- /// <summary>
- /// (Dyeing head zone current is out of range. Cannot execute job)
- /// </summary>
- [Description("Dyeing head zone current is out of range. Cannot execute job")]
- DYEING_HEAD_ZONE_11_CURRENT_OUT_OF_RANGE = 5066,
-
- /// <summary>
- /// (Dyeing head zone current is out of range. Cannot execute job)
- /// </summary>
- [Description("Dyeing head zone current is out of range. Cannot execute job")]
- DYEING_HEAD_ZONE_12_CURRENT_OUT_OF_RANGE = 5067,
-
- /// <summary>
- /// (Dyeing head zone current loop break. Cannot execute job)
- /// </summary>
- [Description("Dyeing head zone current loop break. Cannot execute job")]
- DYEING_HEAD_ZONE_6_CURRENT_LOOP_BREAK = 5068,
-
- /// <summary>
- /// (Dyeing head zone current loop break. Cannot execute job)
- /// </summary>
- [Description("Dyeing head zone current loop break. Cannot execute job")]
- DYEING_HEAD_ZONE_7_CURRENT_LOOP_BREAK = 5069,
-
- /// <summary>
- /// (Dyeing head zone current loop break. Cannot execute job)
- /// </summary>
- [Description("Dyeing head zone current loop break. Cannot execute job")]
- DYEING_HEAD_ZONE_8_CURRENT_LOOP_BREAK = 5070,
-
- /// <summary>
- /// (Dyeing head zone current loop break. Cannot execute job)
- /// </summary>
- [Description("Dyeing head zone current loop break. Cannot execute job")]
- DYEING_HEAD_ZONE_9_CURRENT_LOOP_BREAK = 5071,
-
- /// <summary>
- /// (Dyeing head zone current loop break. Cannot execute job)
- /// </summary>
- [Description("Dyeing head zone current loop break. Cannot execute job")]
- DYEING_HEAD_ZONE_10_CURRENT_LOOP_BREAK = 5072,
-
- /// <summary>
- /// (Dyeing head zone current loop break. Cannot execute job)
- /// </summary>
- [Description("Dyeing head zone current loop break. Cannot execute job")]
- DYEING_HEAD_ZONE_11_CURRENT_LOOP_BREAK = 5073,
-
- /// <summary>
- /// (Dyeing head zone current loop break. Cannot execute job)
- /// </summary>
- [Description("Dyeing head zone current loop break. Cannot execute job")]
- DYEING_HEAD_ZONE_12_CURRENT_LOOP_BREAK = 5074,
-
- /// <summary>
- /// (The temperature in dyeing head blower is too high. Cannot execute job)
- /// </summary>
- [Description("The temperature in dyeing head blower is too high. Cannot execute job")]
- DYEING_HEAD_BLOWER_1_OVERTEMPERATURE = 5075,
-
- /// <summary>
- /// (The temperature in dyeing head blower is too high. Cannot execute job)
- /// </summary>
- [Description("The temperature in dyeing head blower is too high. Cannot execute job")]
- DYEING_HEAD_BLOWER_2_OVERTEMPERATURE = 5076,
-
- /// <summary>
- /// (The temperature in dyeing head blower is too low. Cannot execute job)
- /// </summary>
- [Description("The temperature in dyeing head blower is too low. Cannot execute job")]
- DYEING_HEAD_BLOWER_1_UNDERTEMPERATURE_A = 5077,
-
- /// <summary>
- /// (The temperature in dyeing head blower is too low. Cannot execute job)
- /// </summary>
- [Description("The temperature in dyeing head blower is too low. Cannot execute job")]
- DYEING_HEAD_BLOWER_2_UNDERTEMPERATURE_A = 5078,
-
- /// <summary>
- /// (The temperature in dyeing head blower is too low. Cannot execute job)
- /// </summary>
- [Description("The temperature in dyeing head blower is too low. Cannot execute job")]
- DYEING_HEAD_BLOWER_1_UNDERTEMPERATURE_B = 5079,
-
- /// <summary>
- /// (The temperature in dyeing head blower is too low. Cannot execute job)
- /// </summary>
- [Description("The temperature in dyeing head blower is too low. Cannot execute job")]
- DYEING_HEAD_BLOWER_2_UNDERTEMPERATURE_B = 5080,
-
- /// <summary>
- /// (Dyeing head blower current is out of range. Cannot execute job)
- /// </summary>
- [Description("Dyeing head blower current is out of range. Cannot execute job")]
- DYEING_HEAD_BLOWER_1_CURRENT_OUT_OF_RANGE = 5081,
-
- /// <summary>
- /// (Dyeing head blower current is out of range. Cannot execute job)
- /// </summary>
- [Description("Dyeing head blower current is out of range. Cannot execute job")]
- DYEING_HEAD_BLOWER_2_CURRENT_OUT_OF_RANGE = 5082,
-
- /// <summary>
- /// (Dyeing head blower current loop break. Cannot execute job)
- /// </summary>
- [Description("Dyeing head blower current loop break. Cannot execute job")]
- DYEING_HEAD_BLOWER_1_CURRENT_LOOP_BREAK = 5083,
-
- /// <summary>
- /// (Dyeing head blower current loop break. Cannot execute job)
- /// </summary>
- [Description("Dyeing head blower current loop break. Cannot execute job")]
- DYEING_HEAD_BLOWER_2_CURRENT_LOOP_BREAK = 5084,
-
- /// <summary>
- /// (Dyeing head blower fan has stopped. Cannot execute job)
- /// </summary>
- [Description("Dyeing head blower fan has stopped. Cannot execute job")]
- DYEING_HEAD_BLOWER_1_FAN_STOPPED = 5085,
-
- /// <summary>
- /// (Dyeing head blower fan has stopped. Cannot execute job)
- /// </summary>
- [Description("Dyeing head blower fan has stopped. Cannot execute job")]
- DYEING_HEAD_BLOWER_2_FAN_STOPPED = 5086,
-
- /// <summary>
- /// (Dyeing head blower fan RPM is too low. Cannot execute job)
- /// </summary>
- [Description("Dyeing head blower fan RPM is too low. Cannot execute job")]
- DYEING_HEAD_BLOWER_1_FAN_RPM_TOO_LOW = 5087,
-
- /// <summary>
- /// (Dyeing head blower fan RPM is too low. Cannot execute job)
- /// </summary>
- [Description("Dyeing head blower fan RPM is too low. Cannot execute job")]
- DYEING_HEAD_BLOWER_2_FAN_RPM_TOO_LOW = 5088,
-
- /// <summary>
- /// (Dyeing head actuator did not reach position. Cannot execute job)
- /// </summary>
- [Description("Dyeing head actuator did not reach position. Cannot execute job")]
- DYEING_HEAD_RIGHT_ACTUATOR_UP_TIMEOUT = 5089,
-
- /// <summary>
- /// (Dyeing head actuator did not reach position. Cannot execute job)
- /// </summary>
- [Description("Dyeing head actuator did not reach position. Cannot execute job")]
- DYEING_HEAD_LEFT_ACTUATOR_UP_TIMEOUT = 5090,
-
- /// <summary>
- /// (Dyeing head actuator did not reach position. Cannot execute job)
- /// </summary>
- [Description("Dyeing head actuator did not reach position. Cannot execute job")]
- DYEING_HEAD_RIGHT_ACTUATOR_DOWN_TIMEOUT = 5091,
-
- /// <summary>
- /// (Dyeing head actuator did not reach position. Cannot execute job)
- /// </summary>
- [Description("Dyeing head actuator did not reach position. Cannot execute job")]
- DYEING_HEAD_LEFT_ACTUATOR_DOWN_TIMEOUT = 5092,
-
- /// <summary>
- /// (Dyeing head blower flow is too high. Cannot execute job)
- /// </summary>
- [Description("Dyeing head blower flow is too high. Cannot execute job")]
- DYEING_HEAD_BLOWER_1_FLOW_TOO_HIGH = 5093,
-
- /// <summary>
- /// (Dyeing head blower flow is too high. Cannot execute job)
- /// </summary>
- [Description("Dyeing head blower flow is too high. Cannot execute job")]
- DYEING_HEAD_BLOWER_2_FLOW_TOO_HIGH = 5094,
-
- /// <summary>
- /// (Dyeing head blower flow is too low. Cannot execute job)
- /// </summary>
- [Description("Dyeing head blower flow is too low. Cannot execute job")]
- DYEING_HEAD_BLOWER_1_FLOW_TOO_LOW = 5095,
-
- /// <summary>
- /// (Dyeing head blower flow is too low. Cannot execute job)
- /// </summary>
- [Description("Dyeing head blower flow is too low. Cannot execute job")]
- DYEING_HEAD_BLOWER_2_FLOW_TOO_LOW = 5096,
-
- /// <summary>
- /// (Dyeing head arc lid is open. Cannot execute job.)
- /// </summary>
- [Description("Dyeing head arc lid is open. Cannot execute job.")]
- DYEING_HEAD_ARC_LID_IS_OPEN = 5097,
-
- /// <summary>
- /// (Dyeing head tunnel lid is open. Cannot execute job)
- /// </summary>
- [Description("Dyeing head tunnel lid is open. Cannot execute job")]
- DYEING_HEAD_TUNNEL_LID_IS_OPEN = 5098,
-
- /// <summary>
- /// (Dyeing head cover is open. Cannot execute job)
- /// </summary>
- [Description("Dyeing head cover is open. Cannot execute job")]
- DYEING_HEAD_COVER_IS_OPEN = 5099,
-
- /// <summary>
- /// (The temperature in the mixer is too high. Cannot execute job)
- /// </summary>
- [Description("The temperature in the mixer is too high. Cannot execute job")]
+ [Description("The temperature in the mixer is too high")]
MIXER_OVERTEMPERATURE = 6000,
/// <summary>
- /// (The temperature in the mixer is too low. Cannot execute job)
+ /// (The temperature in the mixer is too low)
/// </summary>
- [Description("The temperature in the mixer is too low. Cannot execute job")]
+ [Description("The temperature in the mixer is too low")]
MIXER_UNDERTEMPERATURE_A = 6001,
/// <summary>
- /// (The temperature in the mixer is too low. Cannot execute job)
+ /// (The temperature in the mixer is too low)
/// </summary>
- [Description("The temperature in the mixer is too low. Cannot execute job")]
+ [Description("The temperature in the mixer is too low")]
MIXER_UNDERTEMPERATURE_B = 6002,
/// <summary>
- /// (Thermal cutoff. Cannot execute job)
+ /// (Thermal cutoff)
/// </summary>
- [Description("Thermal cutoff. Cannot execute job")]
+ [Description("Thermal cutoff")]
MIXER_THERMAL_CUTOFF = 6003,
/// <summary>
- /// (Mixer current is out of range. Cannot execute job)
+ /// (Mixer current is out of range)
/// </summary>
- [Description("Mixer current is out of range. Cannot execute job")]
+ [Description("Mixer current is out of range")]
MIXER_CURRENT_OUT_OF_RANGE = 6004,
/// <summary>
- /// (Mixer current loop break. Cannot execute job)
+ /// (Mixer current loop break)
/// </summary>
- [Description("Mixer current loop break. Cannot execute job")]
+ [Description("Mixer current loop break")]
MIXER_CURRENT_LOOP_BREAK = 6005,
/// <summary>
- /// (Overpressure in black dispenser . Cannot execute job)
+ /// (Overpressure in dispenser 1 )
/// </summary>
- [Description("Overpressure in black dispenser . Cannot execute job")]
+ [Description("Overpressure in dispenser 1 ")]
DISPENSER_1_OVERPRESSURE = 7000,
/// <summary>
- /// (Overpressure in cyan dispenser. Cannot execute job )
+ /// (Overpressure in dispenser 2)
/// </summary>
- [Description("Overpressure in cyan dispenser. Cannot execute job ")]
+ [Description("Overpressure in dispenser 2")]
DISPENSER_2_OVERPRESSURE = 7001,
/// <summary>
- /// (Overpressure in magenta dispenser. Cannot execute job )
+ /// (Overpressure in dispenser 3)
/// </summary>
- [Description("Overpressure in magenta dispenser. Cannot execute job ")]
+ [Description("Overpressure in dispenser 3")]
DISPENSER_3_OVERPRESSURE = 7002,
/// <summary>
- /// (Overpressure in yellow dispenser. Cannot execute job )
+ /// (Overpressure in dispenser 4)
/// </summary>
- [Description("Overpressure in yellow dispenser. Cannot execute job ")]
+ [Description("Overpressure in dispenser 4")]
DISPENSER_4_OVERPRESSURE = 7003,
/// <summary>
- /// (Overpressure in transparent ink dispenser. Cannot execute job )
+ /// (Overpressure in dispenser 5)
/// </summary>
- [Description("Overpressure in transparent ink dispenser. Cannot execute job ")]
+ [Description("Overpressure in dispenser 5")]
DISPENSER_5_OVERPRESSURE = 7004,
/// <summary>
- /// (Overpressure in spot color 1 dispenser. Cannot execute job )
+ /// (Overpressure in dispenser 6)
/// </summary>
- [Description("Overpressure in spot color 1 dispenser. Cannot execute job ")]
+ [Description("Overpressure in dispenser 6")]
DISPENSER_6_OVERPRESSURE = 7005,
/// <summary>
- /// (Overpressure in cleaner dispenser. Cannot execute job )
+ /// (Overpressure in dispenser 7)
/// </summary>
- [Description("Overpressure in cleaner dispenser. Cannot execute job ")]
+ [Description("Overpressure in dispenser 7")]
DISPENSER_7_OVERPRESSURE = 7006,
/// <summary>
- /// (Overpressure in lubricant dispenser. Cannot execute job)
+ /// (Overpressure in dispenser 8)
/// </summary>
- [Description("Overpressure in lubricant dispenser. Cannot execute job")]
+ [Description("Overpressure in dispenser 8")]
DISPENSER_8_OVERPRESSURE = 7007,
/// <summary>
- /// (The pressure in black dispenser is too low. Cannot execute job)
+ /// (The pressure in dispenser 1 is too low)
/// </summary>
- [Description("The pressure in black dispenser is too low. Cannot execute job")]
+ [Description("The pressure in dispenser 1 is too low")]
DISPENSER_1_UNDERPRESSURE = 7008,
/// <summary>
- /// (The pressure in cyan dispenser is too low. Cannot execute job)
+ /// (The pressure in dispenser 2 is too low)
/// </summary>
- [Description("The pressure in cyan dispenser is too low. Cannot execute job")]
+ [Description("The pressure in dispenser 2 is too low")]
DISPENSER_2_UNDERPRESSURE = 7009,
/// <summary>
- /// (The pressure in magenta dispenser is too low. Cannot execute job)
+ /// (The pressure in dispenser 3 is too low)
/// </summary>
- [Description("The pressure in magenta dispenser is too low. Cannot execute job")]
+ [Description("The pressure in dispenser 3 is too low")]
DISPENSER_3_UNDERPRESSURE = 7010,
/// <summary>
- /// (The pressure in yellow dispenser is too low. Cannot execute job)
+ /// (The pressure in dispenser 4 is too low)
/// </summary>
- [Description("The pressure in yellow dispenser is too low. Cannot execute job")]
+ [Description("The pressure in dispenser 4 is too low")]
DISPENSER_4_UNDERPRESSURE = 7011,
/// <summary>
- /// (The pressure in transparent ink dispenser is too low. Cannot execute job)
+ /// (The pressure in dispenser 5 is too low)
/// </summary>
- [Description("The pressure in transparent ink dispenser is too low. Cannot execute job")]
+ [Description("The pressure in dispenser 5 is too low")]
DISPENSER_5_UNDERPRESSURE = 7012,
/// <summary>
- /// (The pressure in spot color 1 dispenser is too low. Cannot execute job)
+ /// (The pressure in dispenser 6 is too low)
/// </summary>
- [Description("The pressure in spot color 1 dispenser is too low. Cannot execute job")]
+ [Description("The pressure in dispenser 6 is too low")]
DISPENSER_6_UNDERPRESSURE = 7013,
/// <summary>
- /// (The pressure in cleaner dispenser is too low. Cannot execute job)
+ /// (The pressure in dispenser 7 is too low)
/// </summary>
- [Description("The pressure in cleaner dispenser is too low. Cannot execute job")]
+ [Description("The pressure in dispenser 7 is too low")]
DISPENSER_7_UNDERPRESSURE = 7014,
/// <summary>
- /// (The pressure in lubricant dispenser is too low. Cannot execute job)
+ /// (The pressure in dispenser 8 is too low)
/// </summary>
- [Description("The pressure in lubricant dispenser is too low. Cannot execute job")]
+ [Description("The pressure in dispenser 8 is too low")]
DISPENSER_8_UNDERPRESSURE = 7015,
/// <summary>
- /// (Black dispenser is empty)
+ /// (Dispenser 1 is empty)
/// </summary>
- [Description("Black dispenser is empty")]
+ [Description("Dispenser 1 is empty")]
DISPENSER_1_EMPTY = 7016,
/// <summary>
- /// (Cyan dispenser is empty)
+ /// (Dispenser 2 is empty)
/// </summary>
- [Description("Cyan dispenser is empty")]
+ [Description("Dispenser 2 is empty")]
DISPENSER_2_EMPTY = 7017,
/// <summary>
- /// (Magenta dispenser is empty)
+ /// (Dispenser 3 is empty)
/// </summary>
- [Description("Magenta dispenser is empty")]
+ [Description("Dispenser 3 is empty")]
DISPENSER_3_EMPTY = 7018,
/// <summary>
- /// (Yellow dispenser is empty)
+ /// (Dispenser 4 is empty)
/// </summary>
- [Description("Yellow dispenser is empty")]
+ [Description("Dispenser 4 is empty")]
DISPENSER_4_EMPTY = 7019,
/// <summary>
- /// (Transparent ink dispenser is empty)
+ /// (Dispenser 5 is empty)
/// </summary>
- [Description("Transparent ink dispenser is empty")]
+ [Description("Dispenser 5 is empty")]
DISPENSER_5_EMPTY = 7020,
/// <summary>
- /// (Spot color 1 dispenser is empty)
+ /// (Dispenser 6 is empty)
/// </summary>
- [Description("Spot color 1 dispenser is empty")]
+ [Description("Dispenser 6 is empty")]
DISPENSER_6_EMPTY = 7021,
/// <summary>
- /// (Cleaner dispenser is empty)
+ /// (Dispenser 7 is empty)
/// </summary>
- [Description("Cleaner dispenser is empty")]
+ [Description("Dispenser 7 is empty")]
DISPENSER_7_EMPTY = 7022,
/// <summary>
- /// (Lubricant dispenser is empty)
+ /// (Dispenser 8 is empty)
/// </summary>
- [Description("Lubricant dispenser is empty")]
+ [Description("Dispenser 8 is empty")]
DISPENSER_8_EMPTY = 7023,
/// <summary>
- /// (Dispenser problem. Cannot execute job)
+ /// (Dispenser problem)
/// </summary>
- [Description("Dispenser problem. Cannot execute job")]
+ [Description("Dispenser problem")]
DISPENSER_1_REFILL_FAILURE = 7024,
/// <summary>
- /// (Dispenser problem. Cannot execute job)
+ /// (Dispenser problem)
/// </summary>
- [Description("Dispenser problem. Cannot execute job")]
+ [Description("Dispenser problem")]
DISPENSER_2_REFILL_FAILURE = 7025,
/// <summary>
- /// (Dispenser problem. Cannot execute job)
+ /// (Dispenser problem)
/// </summary>
- [Description("Dispenser problem. Cannot execute job")]
+ [Description("Dispenser problem")]
DISPENSER_3_REFILL_FAILURE = 7026,
/// <summary>
- /// (Dispenser problem. Cannot execute job)
+ /// (Dispenser problem)
/// </summary>
- [Description("Dispenser problem. Cannot execute job")]
+ [Description("Dispenser problem")]
DISPENSER_4_REFILL_FAILURE = 7027,
/// <summary>
- /// (Dispenser problem. Cannot execute job)
+ /// (Dispenser problem)
/// </summary>
- [Description("Dispenser problem. Cannot execute job")]
+ [Description("Dispenser problem")]
DISPENSER_5_REFILL_FAILURE = 7028,
/// <summary>
- /// (Dispenser problem. Cannot execute job)
+ /// (Dispenser problem)
/// </summary>
- [Description("Dispenser problem. Cannot execute job")]
+ [Description("Dispenser problem")]
DISPENSER_6_REFILL_FAILURE = 7029,
/// <summary>
- /// (Dispenser problem. Cannot execute job)
+ /// (Dispenser problem)
/// </summary>
- [Description("Dispenser problem. Cannot execute job")]
+ [Description("Dispenser problem")]
DISPENSER_7_REFILL_FAILURE = 7030,
/// <summary>
- /// (Dispenser problem. Cannot execute job)
+ /// (Dispenser problem)
/// </summary>
- [Description("Dispenser problem. Cannot execute job")]
+ [Description("Dispenser problem")]
DISPENSER_8_REFILL_FAILURE = 7031,
/// <summary>
- /// (Black dispenser motor current is too high. Cannot execute job)
+ /// (Dispenser 1 motor current is too high)
/// </summary>
- [Description("Black dispenser motor current is too high. Cannot execute job")]
+ [Description("Dispenser 1 motor current is too high")]
DISPENSER_1_MOTOR_OVERCURRENT = 7032,
/// <summary>
- /// (Cyan dispenser motor current is too high. Cannot execute job)
+ /// (Dispenser 2 motor current is too high)
/// </summary>
- [Description("Cyan dispenser motor current is too high. Cannot execute job")]
+ [Description("Dispenser 2 motor current is too high")]
DISPENSER_2_MOTOR_OVERCURRENT = 7033,
/// <summary>
- /// (Magenta dispenser motor current is too high. Cannot execute job)
+ /// (Dispenser 3 motor current is too high)
/// </summary>
- [Description("Magenta dispenser motor current is too high. Cannot execute job")]
+ [Description("Dispenser 3 motor current is too high")]
DISPENSER_3_MOTOR_OVERCURRENT = 7034,
/// <summary>
- /// (Yellow dispenser motor current is too high. Cannot execute job)
+ /// (Dispenser 4 motor current is too high)
/// </summary>
- [Description("Yellow dispenser motor current is too high. Cannot execute job")]
+ [Description("Dispenser 4 motor current is too high")]
DISPENSER_4_MOTOR_OVERCURRENT = 7035,
/// <summary>
- /// (Transparent ink dispenser motor current is too high. Cannot execute job)
+ /// (Dispenser 5 motor current is too high)
/// </summary>
- [Description("Transparent ink dispenser motor current is too high. Cannot execute job")]
+ [Description("Dispenser 5 motor current is too high")]
DISPENSER_5_MOTOR_OVERCURRENT = 7036,
/// <summary>
- /// (Spot color 1 dispenser motor current is too high. Cannot execute job)
+ /// (Dispenser 6 motor current is too high)
/// </summary>
- [Description("Spot color 1 dispenser motor current is too high. Cannot execute job")]
+ [Description("Dispenser 6 motor current is too high")]
DISPENSER_6_MOTOR_OVERCURRENT = 7037,
/// <summary>
- /// (Cleaner dispenser motor current is too high. Cannot execute job)
+ /// (Dispenser 7 motor current is too high)
/// </summary>
- [Description("Cleaner dispenser motor current is too high. Cannot execute job")]
+ [Description("Dispenser 7 motor current is too high")]
DISPENSER_7_MOTOR_OVERCURRENT = 7038,
/// <summary>
- /// (Lubricant dispenser motor current is too high. Cannot execute job)
+ /// (Dispenser 8 motor current is too high)
/// </summary>
- [Description("Lubricant dispenser motor current is too high. Cannot execute job")]
+ [Description("Dispenser 8 motor current is too high")]
DISPENSER_8_MOTOR_OVERCURRENT = 7039,
/// <summary>
- /// (Black dispenser motor temperature is too high. Cannot execute job)
+ /// (Dispenser 1 motor temperature is too high)
/// </summary>
- [Description("Black dispenser motor temperature is too high. Cannot execute job")]
+ [Description("Dispenser 1 motor temperature is too high")]
DISPENSER_1_MOTOR_OVERTEMPERATURE = 7040,
/// <summary>
- /// (Cyan dispenser motor temperature is too high. Cannot execute job)
+ /// (Dispenser 2 motor temperature is too high)
/// </summary>
- [Description("Cyan dispenser motor temperature is too high. Cannot execute job")]
+ [Description("Dispenser 2 motor temperature is too high")]
DISPENSER_2_MOTOR_OVERTEMPERATURE = 7041,
/// <summary>
- /// (Magenta dispenser motor temperature is too high. Cannot execute job)
+ /// (Dispenser 3 motor temperature is too high)
/// </summary>
- [Description("Magenta dispenser motor temperature is too high. Cannot execute job")]
+ [Description("Dispenser 3 motor temperature is too high")]
DISPENSER_3_MOTOR_OVERTEMPERATURE = 7042,
/// <summary>
- /// (Yellow dispenser motor temperature is too high. Cannot execute job)
+ /// (Dispenser 4 motor temperature is too high)
/// </summary>
- [Description("Yellow dispenser motor temperature is too high. Cannot execute job")]
+ [Description("Dispenser 4 motor temperature is too high")]
DISPENSER_4_MOTOR_OVERTEMPERATURE = 7043,
/// <summary>
- /// (Transparent ink dispenser motor temperature is too high. Cannot execute job)
+ /// (Dispenser 5 motor temperature is too high)
/// </summary>
- [Description("Transparent ink dispenser motor temperature is too high. Cannot execute job")]
+ [Description("Dispenser 5 motor temperature is too high")]
DISPENSER_5_MOTOR_OVERTEMPERATURE = 7044,
/// <summary>
- /// (Spot color 1 dispenser motor temperature is too high. Cannot execute job)
+ /// (Dispenser 6 motor temperature is too high)
/// </summary>
- [Description("Spot color 1 dispenser motor temperature is too high. Cannot execute job")]
+ [Description("Dispenser 6 motor temperature is too high")]
DISPENSER_6_MOTOR_OVERTEMPERATURE = 7045,
/// <summary>
- /// (Cleaner dispenser motor temperature is too high. Cannot execute job)
+ /// (Dispenser 7 motor temperature is too high)
/// </summary>
- [Description("Cleaner dispenser motor temperature is too high. Cannot execute job")]
+ [Description("Dispenser 7 motor temperature is too high")]
DISPENSER_7_MOTOR_OVERTEMPERATURE = 7046,
/// <summary>
- /// (Lubricant dispenser motor temperature is too high. Cannot execute job)
+ /// (Dispenser 8 motor temperature is too high)
/// </summary>
- [Description("Lubricant dispenser motor temperature is too high. Cannot execute job")]
+ [Description("Dispenser 8 motor temperature is too high")]
DISPENSER_8_MOTOR_OVERTEMPERATURE = 7047,
/// <summary>
- /// (Black dispenser motor stalled. Cannot execute job)
+ /// (Dispenser 1 motor stalled)
/// </summary>
- [Description("Black dispenser motor stalled. Cannot execute job")]
+ [Description("Dispenser 1 motor stalled")]
DISPENSER_1_MOTOR_STALL = 7048,
/// <summary>
- /// (Cyan dispenser motor stalled. Cannot execute job)
+ /// (Dispenser 2 motor stalled)
/// </summary>
- [Description("Cyan dispenser motor stalled. Cannot execute job")]
+ [Description("Dispenser 2 motor stalled")]
DISPENSER_2_MOTOR_STALL = 7049,
/// <summary>
- /// (Magenta dispenser motor stalled. Cannot execute job)
+ /// (Dispenser 3 motor stalled)
/// </summary>
- [Description("Magenta dispenser motor stalled. Cannot execute job")]
+ [Description("Dispenser 3 motor stalled")]
DISPENSER_3_MOTOR_STALL = 7050,
/// <summary>
- /// (Yellow dispenser 4 motor stalled. Cannot execute job)
+ /// (Dispenser 4 motor stalled)
/// </summary>
- [Description("Yellow dispenser 4 motor stalled. Cannot execute job")]
+ [Description("Dispenser 4 motor stalled")]
DISPENSER_4_MOTOR_STALL = 7051,
/// <summary>
- /// (Transparent ink dispenser motor stalled. Cannot execute job)
+ /// (Dispenser 5 motor stalled)
/// </summary>
- [Description("Transparent ink dispenser motor stalled. Cannot execute job")]
+ [Description("Dispenser 5 motor stalled")]
DISPENSER_5_MOTOR_STALL = 7052,
/// <summary>
- /// (Spot color 1 dispenser motor stalled. Cannot execute job)
+ /// (Dispenser 6 motor stalled)
/// </summary>
- [Description("Spot color 1 dispenser motor stalled. Cannot execute job")]
+ [Description("Dispenser 6 motor stalled")]
DISPENSER_6_MOTOR_STALL = 7053,
/// <summary>
- /// (Cleaner dispenser motor stalled. Cannot execute job)
+ /// (Dispenser 7 motor stalled)
/// </summary>
- [Description("Cleaner dispenser motor stalled. Cannot execute job")]
+ [Description("Dispenser 7 motor stalled")]
DISPENSER_7_MOTOR_STALL = 7054,
/// <summary>
- /// (Lubricant dispenser motor stalled. Cannot execute job)
+ /// (Dispenser 8 motor stalled)
/// </summary>
- [Description("Lubricant dispenser motor stalled. Cannot execute job")]
+ [Description("Dispenser 8 motor stalled")]
DISPENSER_8_MOTOR_STALL = 7055,
/// <summary>
- /// (Black dispenser motor voltage is too low. Cannot execute job)
+ /// (Dispenser 1 motor voltage is too low)
/// </summary>
- [Description("Black dispenser motor voltage is too low. Cannot execute job")]
+ [Description("Dispenser 1 motor voltage is too low")]
DISPENSER_1_MOTOR_UNDERVOLTAGE = 7056,
/// <summary>
- /// (Cyan dispenser motor voltage is too low Cannot execute job)
+ /// (Dispenser 2 motor voltage is too low)
/// </summary>
- [Description("Cyan dispenser motor voltage is too low Cannot execute job")]
+ [Description("Dispenser 2 motor voltage is too low")]
DISPENSER_2_MOTOR_UNDERVOLTAGE = 7057,
/// <summary>
- /// (Magenta dispenser motor voltage is too low. Cannot execute job)
+ /// (Dispenser 3 motor voltage is too low)
/// </summary>
- [Description("Magenta dispenser motor voltage is too low. Cannot execute job")]
+ [Description("Dispenser 3 motor voltage is too low")]
DISPENSER_3_MOTOR_UNDERVOLTAGE = 7058,
/// <summary>
- /// (Yellow dispenser motor voltage is too low. Cannot execute job)
+ /// (Dispenser 4 motor voltage is too low)
/// </summary>
- [Description("Yellow dispenser motor voltage is too low. Cannot execute job")]
+ [Description("Dispenser 4 motor voltage is too low")]
DISPENSER_4_MOTOR_UNDERVOLTAGE = 7059,
/// <summary>
- /// (Transparent ink dispenser motor voltage is too low. Cannot execute job)
+ /// (Dispenser 5 motor voltage is too low)
/// </summary>
- [Description("Transparent ink dispenser motor voltage is too low. Cannot execute job")]
+ [Description("Dispenser 5 motor voltage is too low")]
DISPENSER_5_MOTOR_UNDERVOLTAGE = 7060,
/// <summary>
- /// (Spot color 1 dispenser motor voltage is too low. Cannot execute job)
+ /// (Dispenser 6 motor voltage is too low)
/// </summary>
- [Description("Spot color 1 dispenser motor voltage is too low. Cannot execute job")]
+ [Description("Dispenser 6 motor voltage is too low")]
DISPENSER_6_MOTOR_UNDERVOLTAGE = 7061,
/// <summary>
- /// (Cleaner dispenser motor voltage is too low. Cannot execute job)
+ /// (Dispenser 7 motor voltage is too low)
/// </summary>
- [Description("Cleaner dispenser motor voltage is too low. Cannot execute job")]
+ [Description("Dispenser 7 motor voltage is too low")]
DISPENSER_7_MOTOR_UNDERVOLTAGE = 7062,
/// <summary>
- /// (Lubricant dispenser motor voltage is too low. Cannot execute job)
+ /// (Dispenser 8 motor voltage is too low)
/// </summary>
- [Description("Lubricant dispenser motor voltage is too low. Cannot execute job")]
+ [Description("Dispenser 8 motor voltage is too low")]
DISPENSER_8_MOTOR_UNDERVOLTAGE = 7063,
/// <summary>
- /// (Black dispenser is at the upper limit. Cannot execute job)
+ /// (Dispenser 1 is at the upper limit)
/// </summary>
- [Description("Black dispenser is at the upper limit. Cannot execute job")]
+ [Description("Dispenser 1 is at the upper limit")]
DISPENSER_1_UPPER_HARD_LIMIT = 7064,
/// <summary>
- /// (Cyan dispenser is at the upper limit. Cannot execute job)
+ /// (Dispenser 2 is at the upper limit)
/// </summary>
- [Description("Cyan dispenser is at the upper limit. Cannot execute job")]
+ [Description("Dispenser 2 is at the upper limit")]
DISPENSER_2_UPPER_HARD_LIMIT = 7065,
/// <summary>
- /// (Magenta dispenser is at the upper limit. Cannot execute job)
+ /// (Dispenser 3 is at the upper limit)
/// </summary>
- [Description("Magenta dispenser is at the upper limit. Cannot execute job")]
+ [Description("Dispenser 3 is at the upper limit")]
DISPENSER_3_UPPER_HARD_LIMIT = 7066,
/// <summary>
- /// (Yellow dispenser is at the upper limit. Cannot execute job)
+ /// (Dispenser 4 is at the upper limit)
/// </summary>
- [Description("Yellow dispenser is at the upper limit. Cannot execute job")]
+ [Description("Dispenser 4 is at the upper limit")]
DISPENSER_4_UPPER_HARD_LIMIT = 7067,
/// <summary>
- /// (Transparent ink dispenser is at the upper limit. Cannot execute job)
+ /// (Dispenser 5 is at the upper limit)
/// </summary>
- [Description("Transparent ink dispenser is at the upper limit. Cannot execute job")]
+ [Description("Dispenser 5 is at the upper limit")]
DISPENSER_5_UPPER_HARD_LIMIT = 7068,
/// <summary>
- /// (Spot color 1 dispenser is at the upper limit. Cannot execute job)
+ /// (Dispenser 6 is at the upper limit)
/// </summary>
- [Description("Spot color 1 dispenser is at the upper limit. Cannot execute job")]
+ [Description("Dispenser 6 is at the upper limit")]
DISPENSER_6_UPPER_HARD_LIMIT = 7069,
/// <summary>
- /// (Cleaner dispenser is at the upper limit. Cannot execute job)
+ /// (Dispenser 7 is at the upper limit)
/// </summary>
- [Description("Cleaner dispenser is at the upper limit. Cannot execute job")]
+ [Description("Dispenser 7 is at the upper limit")]
DISPENSER_7_UPPER_HARD_LIMIT = 7070,
/// <summary>
- /// (Lubricant dispenser is at the upper limit. Cannot execute job)
+ /// (Dispenser 8 is at the upper limit)
/// </summary>
- [Description("Lubricant dispenser is at the upper limit. Cannot execute job")]
+ [Description("Dispenser 8 is at the upper limit")]
DISPENSER_8_UPPER_HARD_LIMIT = 7071,
/// <summary>
- /// (Black dispenser is at the lower limit. Cannot execute job)
+ /// (Dispenser 1 is at the lower limit)
/// </summary>
- [Description("Black dispenser is at the lower limit. Cannot execute job")]
+ [Description("Dispenser 1 is at the lower limit")]
DISPENSER_1_LOWER_HARD_LIMIT = 7072,
/// <summary>
- /// (Cyan dispenser is at the lower limit. Cannot execute job)
+ /// (Dispenser 2 is at the lower limit)
/// </summary>
- [Description("Cyan dispenser is at the lower limit. Cannot execute job")]
+ [Description("Dispenser 2 is at the lower limit")]
DISPENSER_2_LOWER_HARD_LIMIT = 7073,
/// <summary>
- /// (Magenta dispenser is at the lower limit. Cannot execute job)
+ /// (Dispenser 3 is at the lower limit)
/// </summary>
- [Description("Magenta dispenser is at the lower limit. Cannot execute job")]
+ [Description("Dispenser 3 is at the lower limit")]
DISPENSER_3_LOWER_HARD_LIMIT = 7074,
/// <summary>
- /// (Yellow dispenser is at the lower limit. Cannot execute job)
+ /// (Dispenser 4 is at the lower limit)
/// </summary>
- [Description("Yellow dispenser is at the lower limit. Cannot execute job")]
+ [Description("Dispenser 4 is at the lower limit")]
DISPENSER_4_LOWER_HARD_LIMIT = 7075,
/// <summary>
- /// (Transparent ink dispenser is at the lower limit. Cannot execute job)
+ /// (Dispenser 5 is at the lower limit)
/// </summary>
- [Description("Transparent ink dispenser is at the lower limit. Cannot execute job")]
+ [Description("Dispenser 5 is at the lower limit")]
DISPENSER_5_LOWER_HARD_LIMIT = 7076,
/// <summary>
- /// (Spot color 1 dispenser is at the lower limit. Cannot execute job)
+ /// (Dispenser 6 is at the lower limit)
/// </summary>
- [Description("Spot color 1 dispenser is at the lower limit. Cannot execute job")]
+ [Description("Dispenser 6 is at the lower limit")]
DISPENSER_6_LOWER_HARD_LIMIT = 7077,
/// <summary>
- /// (Cleaner dispenser is at the lower limit. Cannot execute job)
+ /// (Dispenser 7 is at the lower limit)
/// </summary>
- [Description("Cleaner dispenser is at the lower limit. Cannot execute job")]
+ [Description("Dispenser 7 is at the lower limit")]
DISPENSER_7_LOWER_HARD_LIMIT = 7078,
/// <summary>
- /// (Lubricant dispenser is at the lower limit. Cannot execute job)
+ /// (Dispenser 8 is at the lower limit)
/// </summary>
- [Description("Lubricant dispenser is at the lower limit. Cannot execute job")]
+ [Description("Dispenser 8 is at the lower limit")]
DISPENSER_8_LOWER_HARD_LIMIT = 7079,
/// <summary>
- /// (Pressure in black dispenser is too high. Cannot execute job)
+ /// (Pressure in dispenser 1 is too high)
/// </summary>
- [Description("Pressure in black dispenser is too high. Cannot execute job")]
+ [Description("Pressure in dispenser 1 is too high")]
DISPENSER_1_HIGH_PRESSURE = 7080,
/// <summary>
- /// (Pressure in cyan dispenser is too high. Cannot execute job)
+ /// (Pressure in dispenser 2 is too high)
/// </summary>
- [Description("Pressure in cyan dispenser is too high. Cannot execute job")]
+ [Description("Pressure in dispenser 2 is too high")]
DISPENSER_2_HIGH_PRESSURE = 7081,
/// <summary>
- /// (Pressure in magenta dispenser is too high. Cannot execute job)
+ /// (Pressure in dispenser 3 is too high)
/// </summary>
- [Description("Pressure in magenta dispenser is too high. Cannot execute job")]
+ [Description("Pressure in dispenser 3 is too high")]
DISPENSER_3_HIGH_PRESSURE = 7082,
/// <summary>
- /// (Pressure in yellow dispenser is too high. Cannot execute job)
+ /// (Pressure in dispenser 4 is too high)
/// </summary>
- [Description("Pressure in yellow dispenser is too high. Cannot execute job")]
+ [Description("Pressure in dispenser 4 is too high")]
DISPENSER_4_HIGH_PRESSURE = 7083,
/// <summary>
- /// (Pressure in transparent ink dispenser is too high. Cannot execue job)
+ /// (Pressure in dispenser 5 is too high)
/// </summary>
- [Description("Pressure in transparent ink dispenser is too high. Cannot execue job")]
+ [Description("Pressure in dispenser 5 is too high")]
DISPENSER_5_HIGH_PRESSURE = 7084,
/// <summary>
- /// (Pressure in spot color 1 dispenser is too high. Cannot execute job)
+ /// (Pressure in dispenser 6 is too high)
/// </summary>
- [Description("Pressure in spot color 1 dispenser is too high. Cannot execute job")]
+ [Description("Pressure in dispenser 6 is too high")]
DISPENSER_6_HIGH_PRESSURE = 7085,
/// <summary>
- /// (Pressure in cleaner dispenser is too high. Cannot execute job)
+ /// (Pressure in dispenser 7 is too high)
/// </summary>
- [Description("Pressure in cleaner dispenser is too high. Cannot execute job")]
+ [Description("Pressure in dispenser 7 is too high")]
DISPENSER_7_HIGH_PRESSURE = 7086,
/// <summary>
- /// (Pressure in lubricant dispenser is too high. Cannot execute job)
+ /// (Pressure in dispenser 8 is too high)
/// </summary>
- [Description("Pressure in lubricant dispenser is too high. Cannot execute job")]
+ [Description("Pressure in dispenser 8 is too high")]
DISPENSER_8_HIGH_PRESSURE = 7087,
/// <summary>
- /// (Black ink level is low)
- /// </summary>
- [Description("Black ink level is low")]
- MID_TANK_1_LOW_LEVEL = 8000,
-
- /// <summary>
/// (Cyan ink level is low)
/// </summary>
[Description("Cyan ink level is low")]
- MID_TANK_2_LOW_LEVEL = 8001,
+ MID_TANK_1_LOW_LEVEL = 8000,
/// <summary>
/// (Magenta ink level is low)
/// </summary>
[Description("Magenta ink level is low")]
- MID_TANK_3_LOW_LEVEL = 8002,
+ MID_TANK_2_LOW_LEVEL = 8001,
/// <summary>
/// (Yellow ink level is low)
/// </summary>
[Description("Yellow ink level is low")]
+ MID_TANK_3_LOW_LEVEL = 8002,
+
+ /// <summary>
+ /// (Black ink level is low)
+ /// </summary>
+ [Description("Black ink level is low")]
MID_TANK_4_LOW_LEVEL = 8003,
/// <summary>
@@ -1892,406 +1496,256 @@ namespace Tango.BL.Enumerations
MID_TANK_5_LOW_LEVEL = 8004,
/// <summary>
- /// (Spot color I level is low)
+ /// (Transparent cleaning level is low)
/// </summary>
- [Description("Spot color I level is low")]
+ [Description("Transparent cleaning level is low")]
MID_TANK_6_LOW_LEVEL = 8005,
/// <summary>
- /// (Cleaner level is low)
+ /// (Lubricant level is low)
/// </summary>
- [Description("Cleaner level is low")]
+ [Description("Lubricant level is low")]
MID_TANK_7_LOW_LEVEL = 8006,
/// <summary>
- /// (Lubricant level is low)
+ /// (Spot color I level is low)
/// </summary>
- [Description("Lubricant level is low")]
+ [Description("Spot color I level is low")]
MID_TANK_8_LOW_LEVEL = 8007,
/// <summary>
- /// (Black ink is empty. Cannnot execute job)
+ /// (Cyan ink is empty)
/// </summary>
- [Description("Black ink is empty. Cannnot execute job")]
+ [Description("Cyan ink is empty")]
MID_TANK_1_EMPTY = 8008,
/// <summary>
- /// (Cyan ink is empty. Cannot execute job)
+ /// (Magenta ink is empty)
/// </summary>
- [Description("Cyan ink is empty. Cannot execute job")]
+ [Description("Magenta ink is empty")]
MID_TANK_2_EMPTY = 8009,
/// <summary>
- /// (Magenta ink is empty. Cannot execute job)
+ /// (Yellow ink is empty)
/// </summary>
- [Description("Magenta ink is empty. Cannot execute job")]
+ [Description("Yellow ink is empty")]
MID_TANK_3_EMPTY = 8010,
/// <summary>
- /// (Yellow ink is empty. Cannot execute job)
+ /// (Black ink is empty)
/// </summary>
- [Description("Yellow ink is empty. Cannot execute job")]
+ [Description("Black ink is empty")]
MID_TANK_4_EMPTY = 8011,
/// <summary>
- /// (Transparent ink is empty. Cannot execute job)
+ /// (Transparent ink is empty)
/// </summary>
- [Description("Transparent ink is empty. Cannot execute job")]
+ [Description("Transparent ink is empty")]
MID_TANK_5_EMPTY = 8012,
/// <summary>
- /// (Spot color I is empty. Cannot execute job)
+ /// (Transparent cleaning is empty)
/// </summary>
- [Description("Spot color I is empty. Cannot execute job")]
+ [Description("Transparent cleaning is empty")]
MID_TANK_6_EMPTY = 8013,
/// <summary>
- /// (Cleaner is empty. Cannot execute job)
+ /// (Lubricant is empty)
/// </summary>
- [Description("Cleaner is empty. Cannot execute job")]
+ [Description("Lubricant is empty")]
MID_TANK_7_EMPTY = 8014,
/// <summary>
- /// (Lubricant is empty. Cannot execute job)
+ /// (Spot color I is empty)
/// </summary>
- [Description("Lubricant is empty. Cannot execute job")]
+ [Description("Spot color I is empty")]
MID_TANK_8_EMPTY = 8015,
/// <summary>
- /// (Black ink overflow. Cannot execute job)
+ /// (Cyan ink overflow)
/// </summary>
- [Description("Black ink overflow. Cannot execute job")]
+ [Description("Cyan ink overflow")]
MID_TANK_1_OVERFLOW = 8016,
/// <summary>
- /// (Cyan ink overflow. Cannot execute job)
+ /// (Magenta ink overflow)
/// </summary>
- [Description("Cyan ink overflow. Cannot execute job")]
+ [Description("Magenta ink overflow")]
MID_TANK_2_OVERFLOW = 8017,
/// <summary>
- /// (Magenta ink overflow. Cannot execute job)
+ /// (Yellow ink overflow)
/// </summary>
- [Description("Magenta ink overflow. Cannot execute job")]
+ [Description("Yellow ink overflow")]
MID_TANK_3_OVERFLOW = 8018,
/// <summary>
- /// (Yellow ink overflow. Cannot execute job)
+ /// (Black ink overflow)
/// </summary>
- [Description("Yellow ink overflow. Cannot execute job")]
+ [Description("Black ink overflow")]
MID_TANK_4_OVERFLOW = 8019,
/// <summary>
- /// (Transparent ink overflow. Cannot execute job)
+ /// (Transparent ink overflow)
/// </summary>
- [Description("Transparent ink overflow. Cannot execute job")]
+ [Description("Transparent ink overflow")]
MID_TANK_5_OVERFLOW = 8020,
/// <summary>
- /// (Spot color 1 overflow. Cannot execute job)
+ /// (Transparent cleaning overflow)
/// </summary>
- [Description("Spot color 1 overflow. Cannot execute job")]
+ [Description("Transparent cleaning overflow")]
MID_TANK_6_OVERFLOW = 8021,
/// <summary>
- /// (Cleaner overflow. Cannot execute job)
+ /// (Lubricant overflow)
/// </summary>
- [Description("Cleaner overflow. Cannot execute job")]
+ [Description("Lubricant overflow")]
MID_TANK_7_OVERFLOW = 8022,
/// <summary>
- /// (Lubricant overflow. Cannot execute job)
+ /// (Spot color I overflow)
/// </summary>
- [Description("Lubricant overflow. Cannot execute job")]
+ [Description("Spot color I overflow")]
MID_TANK_8_OVERFLOW = 8023,
/// <summary>
- /// (Failed to fill black ink. Cannot execute job)
+ /// (Failed to fill cyan ink)
/// </summary>
- [Description("Failed to fill black ink. Cannot execute job")]
+ [Description("Failed to fill cyan ink")]
MID_TANK_1_FILL_TIMEOUT = 8024,
/// <summary>
- /// (Failed to fill cyan ink. Cannot execute job)
+ /// (Failed to fill magenta ink)
/// </summary>
- [Description("Failed to fill cyan ink. Cannot execute job")]
+ [Description("Failed to fill magenta ink")]
MID_TANK_2_FILL_TIMEOUT = 8025,
/// <summary>
- /// (Failed to fill magenta ink. Cannot execute job)
+ /// (Failed to fill yellow ink)
/// </summary>
- [Description("Failed to fill magenta ink. Cannot execute job")]
+ [Description("Failed to fill yellow ink")]
MID_TANK_3_FILL_TIMEOUT = 8026,
/// <summary>
- /// (Failed to fill yellow ink. Cannot execute job)
+ /// (Failed to fill black ink)
/// </summary>
- [Description("Failed to fill yellow ink. Cannot execute job")]
+ [Description("Failed to fill black ink")]
MID_TANK_4_FILL_TIMEOUT = 8027,
/// <summary>
- /// (Failed to fill transparent ink. Canot execute job)
+ /// (Failed to fill transparent ink)
/// </summary>
- [Description("Failed to fill transparent ink. Canot execute job")]
+ [Description("Failed to fill transparent ink")]
MID_TANK_5_FILL_TIMEOUT = 8028,
/// <summary>
- /// (Failed to fill spot color 1 ink. Cannot execute job)
+ /// (Failed to fill transparent cleaning ink)
/// </summary>
- [Description("Failed to fill spot color 1 ink. Cannot execute job")]
+ [Description("Failed to fill transparent cleaning ink")]
MID_TANK_6_FILL_TIMEOUT = 8029,
/// <summary>
- /// (Failed to fill cleaner. Cannot execute job)
+ /// (Failed to fill lubricant)
/// </summary>
- [Description("Failed to fill cleaner. Cannot execute job")]
+ [Description("Failed to fill lubricant")]
MID_TANK_7_FILL_TIMEOUT = 8030,
/// <summary>
- /// (Failed to fill lubricant. Cannot execute job)
+ /// (Failed to fill spot color I)
/// </summary>
- [Description("Failed to fill lubricant. Cannot execute job")]
+ [Description("Failed to fill spot color I")]
MID_TANK_8_FILL_TIMEOUT = 8031,
/// <summary>
- /// (Cannot detect air filter. Cannot execute job )
+ /// (Cannot detect air filter )
/// </summary>
- [Description("Cannot detect air filter. Cannot execute job ")]
+ [Description("Cannot detect air filter ")]
AIR_FILTER_NOT_INSTALLED = 9000,
/// <summary>
- /// (Air filter clogged. Cannot execute job)
+ /// (Air filter clogged)
/// </summary>
- [Description("Air filter clogged. Cannot execute job")]
+ [Description("Air filter clogged")]
AIR_FILTER_CLOGGED = 9001,
/// <summary>
- /// (Recycled ink emptying failure. Cannot execute job)
+ /// (Recycled ink emptying failure)
/// </summary>
- [Description("Recycled ink emptying failure. Cannot execute job")]
+ [Description("Recycled ink emptying failure")]
WASTE_CONTAINER_EMPTYING_TIMEOUT = 9002,
/// <summary>
- /// (No suction in the recycled ink handling system. Cannot execute job)
+ /// (No suction in the recycled ink handling system)
/// </summary>
- [Description("No suction in the recycled ink handling system. Cannot execute job")]
+ [Description("No suction in the recycled ink handling system")]
NO_AIR_PRESSURE = 9003,
/// <summary>
- /// (Overflow in recycled ink container. Cannot execute job)
+ /// (Overflow in recycled ink container)
/// </summary>
- [Description("Overflow in recycled ink container. Cannot execute job")]
+ [Description("Overflow in recycled ink container")]
WASTE_CONTAINER_OVERFLOW = 9004,
/// <summary>
- /// (Air quality alert. Cannot execute job)
+ /// (Air quality alert)
/// </summary>
- [Description("Air quality alert. Cannot execute job")]
+ [Description("Air quality alert")]
VOC_SENSOR_ALARM_TIME = 9005,
/// <summary>
- /// (Chiller malfunction. Cannot execute job)
+ /// (Chiller malfunction)
/// </summary>
- [Description("Chiller malfunction. Cannot execute job")]
+ [Description("Chiller malfunction")]
CHILLER_DRY_CONTACT = 9006,
/// <summary>
- /// (Insufficient air flow. Cannot execute job)
+ /// (Insufficient air flow)
/// </summary>
- [Description("Insufficient air flow. Cannot execute job")]
+ [Description("Insufficient air flow")]
INSUFFICIENT_AIR_FLOW = 9007,
/// <summary>
- /// (Air quality alert. Cannot execute job)
+ /// (Air quality alert)
/// </summary>
- [Description("Air quality alert. Cannot execute job")]
+ [Description("Air quality alert")]
VOC_SENSOR_ALARM_SLOPE = 9008,
/// <summary>
- /// (Pre-cooler fan has stopped. Cannot execute job)
- /// </summary>
- [Description("Pre-cooler fan has stopped. Cannot execute job")]
- PRE_COOLER_FAN_1_STOPPED = 9009,
-
- /// <summary>
- /// (Pre-cooler fan has stopped. Cannot execute job)
- /// </summary>
- [Description("Pre-cooler fan has stopped. Cannot execute job")]
- PRE_COOLER_FAN_2_STOPPED = 9010,
-
- /// <summary>
- /// (Cooler fan has stopped. Cannot execute job)
- /// </summary>
- [Description("Cooler fan has stopped. Cannot execute job")]
- COOLER_FAN_1_STOPPED = 9011,
-
- /// <summary>
- /// (Cooler fan has stopped. Cannot execute job)
- /// </summary>
- [Description("Cooler fan has stopped. Cannot execute job")]
- COOLER_FAN_2_STOPPED = 9012,
-
- /// <summary>
- /// (Cooler fan has stopped. Cannot execute job)
- /// </summary>
- [Description("Cooler fan has stopped. Cannot execute job")]
- COOLER_FAN_3_STOPPED = 9013,
-
- /// <summary>
- /// (Cooler fan has stopped. Cannot execute job)
- /// </summary>
- [Description("Cooler fan has stopped. Cannot execute job")]
- COOLER_FAN_4_STOPPED = 9014,
-
- /// <summary>
- /// (Pre-cooler fan RPM is too low. Cannot execute job)
- /// </summary>
- [Description("Pre-cooler fan RPM is too low. Cannot execute job")]
- PRE_COOLER_FAN_1_RPM_TOO_LOW = 9015,
-
- /// <summary>
- /// (Pre-cooler fan RPM is too low. Cannot execute job)
- /// </summary>
- [Description("Pre-cooler fan RPM is too low. Cannot execute job")]
- PRE_COOLER_FAN_2_RPM_TOO_LOW = 9016,
-
- /// <summary>
- /// (Cooler fan RPM is too low. Cannot execute job)
- /// </summary>
- [Description("Cooler fan RPM is too low. Cannot execute job")]
- COOLER_FAN_1_RPM_TOO_LOW = 9017,
-
- /// <summary>
- /// (Cooler fan RPM is too low. Cannot execute job)
- /// </summary>
- [Description("Cooler fan RPM is too low. Cannot execute job")]
- COOLER_FAN_2_RPM_TOO_LOW = 9018,
-
- /// <summary>
- /// (Cooler fan RPM is too low. Cannot execute job)
- /// </summary>
- [Description("Cooler fan RPM is too low. Cannot execute job")]
- COOLER_FAN_3_RPM_TOO_LOW = 9019,
-
- /// <summary>
- /// (Cooler fan RPM is too low. Cannot execute job)
- /// </summary>
- [Description("Cooler fan RPM is too low. Cannot execute job")]
- COOLER_FAN_4_RPM_TOO_LOW = 9020,
-
- /// <summary>
- /// (Cooler temperature is too high. Cannot execute job)
- /// </summary>
- [Description("Cooler temperature is too high. Cannot execute job")]
- COOLER_TEMPERATURE_TOO_HIGH = 9021,
-
- /// <summary>
- /// (Cooler temperature is too low. Cannot execute job)
+ /// (Cannot detect ink cartridge)
/// </summary>
- [Description("Cooler temperature is too low. Cannot execute job")]
- COOLER_TEMPERATURE_TOO_LOW = 9022,
-
- /// <summary>
- /// (Cannot detect ink cartridge. Cannot execute job)
- /// </summary>
- [Description("Cannot detect ink cartridge. Cannot execute job")]
+ [Description("Cannot detect ink cartridge")]
INK_CARTRIDGE_PRESENCE_SENSOR_TIMEOUT = 10000,
/// <summary>
- /// (Cannot identify ink cartridge. Cannot execute job )
+ /// (Cannot identify ink cartridge )
/// </summary>
- [Description("Cannot identify ink cartridge. Cannot execute job ")]
+ [Description("Cannot identify ink cartridge ")]
INK_CARTRIDGE_RFID_TIMEOUT = 10001,
/// <summary>
- /// (No waste cartridge in system. Cannot execute job. Please insert waste cartridge)
+ /// (No Re-cartridge available)
/// </summary>
- [Description("No waste cartridge in system. Cannot execute job. Please insert waste cartridge")]
+ [Description("No Re-cartridge available")]
NO_WASTE_CARTRIDGE_AVAILABLE = 10002,
/// <summary>
- /// (Both waste cartridges are full. Cannot execute job. Please replace waste cartridges)
+ /// (All Re-cartridges are full)
/// </summary>
- [Description("Both waste cartridges are full. Cannot execute job. Please replace waste cartridges")]
+ [Description("All Re-cartridges are full")]
ALL_WASTE_CARTRIDGES_FULL = 10003,
/// <summary>
- /// (Cannot detect waste cartridge. Cannot execute job )
+ /// (Cannot detect Re-cartridge )
/// </summary>
- [Description("Cannot detect waste cartridge. Cannot execute job ")]
+ [Description("Cannot detect Re-cartridge ")]
WASTE_CARTRIDGE_PRESENCE_SENSOR_TIMEOUT = 10004,
/// <summary>
- /// (Cannot identify waste cartridge. Cannot execute job )
+ /// (Cannot identify Re-cartridge )
/// </summary>
- [Description("Cannot identify waste cartridge. Cannot execute job ")]
+ [Description("Cannot identify Re-cartridge ")]
WASTE_CARTRIDGE_RFID_TIMEOUT = 10005,
- /// <summary>
- /// (Ink cartridge failure. Cannot perform ink filling)
- /// </summary>
- [Description("Ink cartridge failure. Cannot perform ink filling")]
- INK_CARTRIDGE_RFID_TAG_CANNOT_BE_READ = 10006,
-
- /// <summary>
- /// (Waste cartridge failure. Cannot replace waste cartridge)
- /// </summary>
- [Description("Waste cartridge failure. Cannot replace waste cartridge")]
- WASTE_CARTRIDGE_RFID_TAG_CANNOT_BE_READ = 10007,
-
- /// <summary>
- /// (Ink cartridge failure. Cannot perform ink filling)
- /// </summary>
- [Description("Ink cartridge failure. Cannot perform ink filling")]
- INK_CARTRIDGE_RFID_TAG_IS_NOT_VALID = 10008,
-
- /// <summary>
- /// (Waste cartridge failure. Cannot replace waste cartridge)
- /// </summary>
- [Description("Waste cartridge failure. Cannot replace waste cartridge")]
- WASTE_CARTRIDGE_RFID_TAG_IS_NOT_VALID = 10009,
-
- /// <summary>
- /// (Ink cartridge failure. Cannot perform ink filling)
- /// </summary>
- [Description("Ink cartridge failure. Cannot perform ink filling")]
- INK_CARTRIDGE_AUTHENTICATION_FAILED = 10010,
-
- /// <summary>
- /// (Waste cartridge failure. Cannot replace waste cartridge)
- /// </summary>
- [Description("Waste cartridge failure. Cannot replace waste cartridge")]
- WASTE_CARTRIDGE_AUTHENTICATION_FAILED = 10011,
-
- /// <summary>
- /// (Ink cartridge failure. Cannot perform ink filling)
- /// </summary>
- [Description("Ink cartridge failure. Cannot perform ink filling")]
- INK_CARTRIDGE_IS_BLOCKED = 10012,
-
- /// <summary>
- /// (Waste cartridge failure. Cannot replace waste cartridge)
- /// </summary>
- [Description("Waste cartridge failure. Cannot replace waste cartridge")]
- WASTE_CARTRIDGE_IS_BLOCKED = 10013,
-
- /// <summary>
- /// (Ink cartridge failure. Cannot perform ink filling)
- /// </summary>
- [Description("Ink cartridge failure. Cannot perform ink filling")]
- INK_CARTRIDGE_RFID_TAG_CANNOT_BE_UPDATED = 10014,
-
- /// <summary>
- /// (Waste cartridge failure. Cannot replace waste cartridge)
- /// </summary>
- [Description("Waste cartridge failure. Cannot replace waste cartridge")]
- WASTE_CARTRIDGE_RFID_TAG_CANNOT_BE_UPDATED = 10015,
-
- /// <summary>
- /// (Ink in cartridge is expired. Cannot perform ink filling)
- /// </summary>
- [Description("Ink in cartridge is expired. Cannot perform ink filling")]
- INK_IN_CARTRIDGE_IS_EXPIRED = 10016,
-
}
}
diff --git a/Software/Visual_Studio/Tango.BL/Enumerations/HardwareBlowerTypes.cs b/Software/Visual_Studio/Tango.BL/Enumerations/HardwareBlowerTypes.cs
index c8787f68a..1f2a3deec 100644
--- a/Software/Visual_Studio/Tango.BL/Enumerations/HardwareBlowerTypes.cs
+++ b/Software/Visual_Studio/Tango.BL/Enumerations/HardwareBlowerTypes.cs
@@ -25,35 +25,5 @@ namespace Tango.BL.Enumerations
[Description("Default Blower")]
DefaultBlower = 0,
- /// <summary>
- /// (Head Blower 1)
- /// </summary>
- [Description("Head Blower 1")]
- HeadBlower1 = 1,
-
- /// <summary>
- /// (Head Blower 2)
- /// </summary>
- [Description("Head Blower 2")]
- HeadBlower2 = 2,
-
- /// <summary>
- /// (WHS Blower 2)
- /// </summary>
- [Description("WHS Blower 2")]
- WHSBlower2 = 3,
-
- /// <summary>
- /// (WHS Small Fans)
- /// </summary>
- [Description("WHS Small Fans")]
- WHSSmallFans = 4,
-
- /// <summary>
- /// (WHS Large Fans)
- /// </summary>
- [Description("WHS Large Fans")]
- WHSLargeFans = 5,
-
}
}
diff --git a/Software/Visual_Studio/Tango.BL/Enumerations/HardwareDancerTypes.cs b/Software/Visual_Studio/Tango.BL/Enumerations/HardwareDancerTypes.cs
index 2684f7dc4..385df558b 100644
--- a/Software/Visual_Studio/Tango.BL/Enumerations/HardwareDancerTypes.cs
+++ b/Software/Visual_Studio/Tango.BL/Enumerations/HardwareDancerTypes.cs
@@ -37,17 +37,5 @@ namespace Tango.BL.Enumerations
[Description("Right Dancer")]
RightDancer = 2,
- /// <summary>
- /// (Third Dancer)
- /// </summary>
- [Description("Third Dancer")]
- ThirdDancer = 3,
-
- /// <summary>
- /// (Fourth Dancer)
- /// </summary>
- [Description("Fourth Dancer")]
- FourthDancer = 4,
-
}
}
diff --git a/Software/Visual_Studio/Tango.BL/Enumerations/HardwarePidControlTypes.cs b/Software/Visual_Studio/Tango.BL/Enumerations/HardwarePidControlTypes.cs
index 85e302598..6322ba4e1 100644
--- a/Software/Visual_Studio/Tango.BL/Enumerations/HardwarePidControlTypes.cs
+++ b/Software/Visual_Studio/Tango.BL/Enumerations/HardwarePidControlTypes.cs
@@ -157,65 +157,5 @@ namespace Tango.BL.Enumerations
[Description("Dispenser 8")]
Dispenser8 = 22,
- /// <summary>
- /// (Head Heater Zone 7)
- /// </summary>
- [Description("Head Heater Zone 7")]
- HeadHeaterZ7 = 23,
-
- /// <summary>
- /// (Head Heater Zone 8)
- /// </summary>
- [Description("Head Heater Zone 8")]
- HeadHeaterZ8 = 24,
-
- /// <summary>
- /// (Head Heater Zone 9)
- /// </summary>
- [Description("Head Heater Zone 9")]
- HeadHeaterZ9 = 25,
-
- /// <summary>
- /// (Head Heater Zone 10)
- /// </summary>
- [Description("Head Heater Zone 10")]
- HeadHeaterZ10 = 26,
-
- /// <summary>
- /// (Head Heater Zone 11)
- /// </summary>
- [Description("Head Heater Zone 11")]
- HeadHeaterZ11 = 27,
-
- /// <summary>
- /// (Head Heater Zone 12)
- /// </summary>
- [Description("Head Heater Zone 12")]
- HeadHeaterZ12 = 28,
-
- /// <summary>
- /// (Head Cover Heater 1)
- /// </summary>
- [Description("Head Cover Heater 1")]
- HeadCoverHeater1 = 29,
-
- /// <summary>
- /// (Head Cover Heater 2)
- /// </summary>
- [Description("Head Cover Heater 2")]
- HeadCoverHeater2 = 30,
-
- /// <summary>
- /// (Head Blower 1)
- /// </summary>
- [Description("Head Blower 1")]
- HeadBlower_1 = 31,
-
- /// <summary>
- /// (Head Blower 2)
- /// </summary>
- [Description("Head Blower 2")]
- HeadBlower_2 = 32,
-
}
}
diff --git a/Software/Visual_Studio/Tango.BL/Enumerations/HeadTypes.cs b/Software/Visual_Studio/Tango.BL/Enumerations/HeadTypes.cs
deleted file mode 100644
index c110958f8..000000000
--- a/Software/Visual_Studio/Tango.BL/Enumerations/HeadTypes.cs
+++ /dev/null
@@ -1,14 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-namespace Tango.BL.Enumerations
-{
- public enum HeadTypes
- {
- Flat = 0,
- Arc = 1,
- }
-}
diff --git a/Software/Visual_Studio/Tango.BL/Enumerations/JobSource.cs b/Software/Visual_Studio/Tango.BL/Enumerations/JobSource.cs
deleted file mode 100644
index 2327f5b66..000000000
--- a/Software/Visual_Studio/Tango.BL/Enumerations/JobSource.cs
+++ /dev/null
@@ -1,20 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-namespace Tango.BL.Enumerations
-{
- public enum JobSource
- {
- /// <summary>
- /// The job was originated from an application that is working directly against the main db (Machine Studio etc.)
- /// </summary>
- Remote = 0,
- /// <summary>
- /// The job was originated from an application that is working against a private local db (PPC etc.).
- /// </summary>
- Local = 1,
- }
-}
diff --git a/Software/Visual_Studio/Tango.BL/Enumerations/LiquidTypes.cs b/Software/Visual_Studio/Tango.BL/Enumerations/LiquidTypes.cs
index 0f72ebbd0..e8dc67695 100644
--- a/Software/Visual_Studio/Tango.BL/Enumerations/LiquidTypes.cs
+++ b/Software/Visual_Studio/Tango.BL/Enumerations/LiquidTypes.cs
@@ -20,12 +20,6 @@ namespace Tango.BL.Enumerations
{
/// <summary>
- /// (Light Cyan)
- /// </summary>
- [Description("Light Cyan")]
- LightCyan = 7,
-
- /// <summary>
/// (Cyan)
/// </summary>
[Description("Cyan")]
@@ -50,18 +44,6 @@ namespace Tango.BL.Enumerations
Lubricant = 5,
/// <summary>
- /// (Light Magenta)
- /// </summary>
- [Description("Light Magenta")]
- LightMagenta = 8,
-
- /// <summary>
- /// (Light Yellow)
- /// </summary>
- [Description("Light Yellow")]
- LightYellow = 9,
-
- /// <summary>
/// (Yellow)
/// </summary>
[Description("Yellow")]
diff --git a/Software/Visual_Studio/Tango.BL/Enumerations/Permissions.cs b/Software/Visual_Studio/Tango.BL/Enumerations/Permissions.cs
index 58a57cbc9..8b85f5ddf 100644
--- a/Software/Visual_Studio/Tango.BL/Enumerations/Permissions.cs
+++ b/Software/Visual_Studio/Tango.BL/Enumerations/Permissions.cs
@@ -20,16 +20,10 @@ namespace Tango.BL.Enumerations
{
/// <summary>
- /// (Allows loading the tech board module in Machine Studio)
- /// </summary>
- [Description("Allows loading the tech board module in Machine Studio")]
- RunTechBoardModule = 0,
-
- /// <summary>
- /// (Allows loading the research module in Machine Studio)
+ /// (Allows loading the Users & Roles module in machine studio)
/// </summary>
- [Description("Allows loading the research module in Machine Studio")]
- RunResearchModule = 1,
+ [Description("Allows loading the Users & Roles module in machine studio")]
+ RunUsersAndRolesModule = 10,
/// <summary>
/// (Allows loading the database module in Machine Studio)
@@ -38,22 +32,16 @@ namespace Tango.BL.Enumerations
RunDataBaseModule = 2,
/// <summary>
- /// (Allows loading the synchronization module in machine studio)
- /// </summary>
- [Description("Allows loading the synchronization module in machine studio")]
- RunSynchronizationModule = 3,
-
- /// <summary>
/// (Allows loading the machine designer module in Machine Studio)
/// </summary>
[Description("Allows loading the machine designer module in Machine Studio")]
RunMachineDesignerModule = 4,
/// <summary>
- /// (Allows loading the data capture module in Machine Studio)
+ /// (Allows loading the ColorLab module in Machine Studio)
/// </summary>
- [Description("Allows loading the data capture module in Machine Studio")]
- RunDataCaptureModule = 5,
+ [Description("Allows loading the ColorLab module in Machine Studio")]
+ RunColorLabModule = 9,
/// <summary>
/// (Allows the execution of Machine Studio)
@@ -74,34 +62,40 @@ namespace Tango.BL.Enumerations
RunStubsModule = 8,
/// <summary>
- /// (Allows loading the ColorLab module in Machine Studio)
+ /// (Allows running the PPC software.)
/// </summary>
- [Description("Allows loading the ColorLab module in Machine Studio")]
- RunColorLabModule = 9,
+ [Description("Allows running the PPC software.")]
+ RunPPC = 15,
/// <summary>
- /// (Allows loading the Users & Roles module in machine studio)
+ /// (Allows loading the tech board module in Machine Studio)
/// </summary>
- [Description("Allows loading the Users & Roles module in machine studio")]
- RunUsersAndRolesModule = 10,
+ [Description("Allows loading the tech board module in Machine Studio")]
+ RunTechBoardModule = 0,
/// <summary>
- /// (Allows openning the machine studio developer console)
+ /// (Allows loading the research module in Machine Studio)
/// </summary>
- [Description("Allows openning the machine studio developer console")]
- RunDeveloperConsole = 11,
+ [Description("Allows loading the research module in Machine Studio")]
+ RunResearchModule = 1,
/// <summary>
- /// (Allows loading the RML module in Machine Studio)
+ /// (Allows loading the synchronization module in machine studio)
/// </summary>
- [Description("Allows loading the RML module in Machine Studio")]
- RunRMLModule = 14,
+ [Description("Allows loading the synchronization module in machine studio")]
+ RunSynchronizationModule = 3,
/// <summary>
- /// (Allows running the PPC software.)
+ /// (Allows loading the data capture module in Machine Studio)
/// </summary>
- [Description("Allows running the PPC software.")]
- RunPPC = 15,
+ [Description("Allows loading the data capture module in Machine Studio")]
+ RunDataCaptureModule = 5,
+
+ /// <summary>
+ /// (Allows openning the machine studio developer console)
+ /// </summary>
+ [Description("Allows openning the machine studio developer console")]
+ RunDeveloperConsole = 11,
/// <summary>
/// (Allows running the statistics module in Machine Studio.)
@@ -110,6 +104,12 @@ namespace Tango.BL.Enumerations
RunStatisticsModule = 16,
/// <summary>
+ /// (Allows loading the RML module in Machine Studio)
+ /// </summary>
+ [Description("Allows loading the RML module in Machine Studio")]
+ RunRMLModule = 14,
+
+ /// <summary>
/// (Allows running the logging module in Machine Studio.)
/// </summary>
[Description("Allows running the logging module in Machine Studio.")]
@@ -128,12 +128,6 @@ namespace Tango.BL.Enumerations
RunHardwareVersionsModule = 19,
/// <summary>
- /// (Allows publishing of new PPC application versions.)
- /// </summary>
- [Description("Allows publishing of new PPC application versions.")]
- PublishPPCVersions = 23,
-
- /// <summary>
/// (Allows running the ColorCapture module in Machine Studio)
/// </summary>
[Description("Allows running the ColorCapture module in Machine Studio")]
@@ -146,202 +140,10 @@ namespace Tango.BL.Enumerations
RunCatalogsModule = 25,
/// <summary>
- /// (Allows running the Tango FSE application)
- /// </summary>
- [Description("Allows running the Tango FSE application")]
- FSE_RunFSE = 1000,
-
- /// <summary>
- /// (Allows connecting to machines from all organizations)
- /// </summary>
- [Description("Allows connecting to machines from all organizations")]
- FSE_ConnectAnyMachine = 1001,
-
- /// <summary>
- /// (Allows the management of the organization users)
- /// </summary>
- [Description("Allows the management of the organization users")]
- FSE_ManageOrganizationUsersAndRoles = 1002,
-
- /// <summary>
- /// (Allows the management of all organizations users)
- /// </summary>
- [Description("Allows the management of all organizations users")]
- FSE_ManageAllOrganizationsUsersAndRoles = 1003,
-
- /// <summary>
- /// (Allows running the procedure designer module)
- /// </summary>
- [Description("Allows running the procedure designer module")]
- FSE_RunProcedureDesigner = 1004,
-
- /// <summary>
- /// (Allows publishing procedure projects)
- /// </summary>
- [Description("Allows publishing procedure projects")]
- FSE_PublishProcedureProjects = 1005,
-
- /// <summary>
- /// (Allows starting remote desktop sessions)
- /// </summary>
- [Description("Allows starting remote desktop sessions")]
- FSE_RemoteDesktopView = 1006,
-
- /// <summary>
- /// (Allows remote desktop session mouse/keyboard control and extra actions)
- /// </summary>
- [Description("Allows remote desktop session mouse/keyboard control and extra actions")]
- FSE_RemoteDesktopControl = 1007,
-
- /// <summary>
- /// (Allows read access to the PPC file system)
- /// </summary>
- [Description("Allows read access to the PPC file system")]
- FSE_PPCFileSystemRead = 1008,
-
- /// <summary>
- /// (Allows write access to the PPC file system)
- /// </summary>
- [Description("Allows write access to the PPC file system")]
- FSE_PPCFileSystemWrite = 1009,
-
- /// <summary>
- /// (Allows read access to the firmware file system)
- /// </summary>
- [Description("Allows read access to the firmware file system")]
- FSE_FirmwareFileSystemRead = 1010,
-
- /// <summary>
- /// (Allows write access to the firmware file system)
- /// </summary>
- [Description("Allows write access to the firmware file system")]
- FSE_FirmwareFileSystemWrite = 1011,
-
- /// <summary>
- /// (Allows generating tup/tfp packages)
- /// </summary>
- [Description("Allows generating tup/tfp packages")]
- FSE_RemoteUpgradeOffline = 1012,
-
- /// <summary>
- /// (Allows performing direct remote upgrade)
- /// </summary>
- [Description("Allows performing direct remote upgrade")]
- FSE_RemoteUpgradeOnline = 1013,
-
- /// <summary>
- /// (Allows executing command prompt commands remotely)
- /// </summary>
- [Description("Allows executing command prompt commands remotely")]
- FSE_ExecuteRemoteConsoleCommands = 1014,
-
- /// <summary>
- /// (Allows editing of the default diagnostics project)
- /// </summary>
- [Description("Allows editing of the default diagnostics project")]
- FSE_EditDiagnosticsProject = 1015,
-
- /// <summary>
- /// (Allows viewing FSE logs)
- /// </summary>
- [Description("Allows viewing FSE logs")]
- FSE_ViewFSELogs = 1016,
-
- /// <summary>
- /// (Allows viewing FSE full exception details)
- /// </summary>
- [Description("Allows viewing FSE full exception details")]
- FSE_ViewFullExceptionDetails = 1017,
-
- /// <summary>
- /// (Allows the modification of bug reports)
- /// </summary>
- [Description("Allows the modification of bug reports")]
- FSE_ModifyBugReport = 1018,
-
- /// <summary>
- /// (Allows viewing published procedure projects with internal visibility)
- /// </summary>
- [Description("Allows viewing published procedure projects with internal visibility")]
- FSE_ViewInternalPublishedProcedures = 1019,
-
- /// <summary>
- /// (Allows running a floating procedure project file.)
- /// </summary>
- [Description("Allows running a floating procedure project file.")]
- FSE_RunProcedureProjectFile = 1020,
-
- /// <summary>
- /// (Allows loading the machine configuration module)
- /// </summary>
- [Description("Allows loading the machine configuration module")]
- FSE_RunConfigurationModule = 1021,
-
- /// <summary>
- /// (Allows editing of machine provisioning settings)
- /// </summary>
- [Description("Allows editing of machine provisioning settings")]
- FSE_ModifyMachineProvisioning = 1022,
-
- /// <summary>
- /// (Allows editing of machine update settings)
- /// </summary>
- [Description("Allows editing of machine update settings")]
- FSE_ModifyMachineUpdate = 1023,
-
- /// <summary>
- /// (Allows editing of machine identity settings)
- /// </summary>
- [Description("Allows editing of machine identity settings")]
- FSE_ModifyMachineIdentity = 1024,
-
- /// <summary>
- /// (Allows editing of machine hardware settings)
- /// </summary>
- [Description("Allows editing of machine hardware settings")]
- FSE_ModifyMachineHardware = 1025,
-
- /// <summary>
- /// (Allows viewing data store items)
- /// </summary>
- [Description("Allows viewing data store items")]
- DataStoreRead = 1026,
-
- /// <summary>
- /// (Allows writing to local data store items)
- /// </summary>
- [Description("Allows writing to local data store items")]
- DataStoreWrite = 1027,
-
- /// <summary>
- /// (Allows creating local data store items and collections)
- /// </summary>
- [Description("Allows creating local data store items and collections")]
- DataStoreCreate = 1028,
-
- /// <summary>
- /// (Allows resetting the machine counters)
- /// </summary>
- [Description("Allows resetting the machine counters")]
- FSE_ResetMachineCounters = 1029,
-
- /// <summary>
- /// (Allows resetting the machine device registration)
- /// </summary>
- [Description("Allows resetting the machine device registration")]
- FSE_ResetMachineDeviceRegistration = 1030,
-
- /// <summary>
- /// (Allows creating and writing global data store items and collections)
- /// </summary>
- [Description("Allows creating and writing global data store items and collections")]
- DataStoreCreateWriteGlobal = 1031,
-
- /// <summary>
- /// (Allows emulating machine events remotely)
+ /// (Allows publishing of new PPC application versions.)
/// </summary>
- [Description("Allows emulating machine events remotely")]
- FSE_EmulateMachineEvents = 1032,
+ [Description("Allows publishing of new PPC application versions.")]
+ PublishPPCVersions = 23,
}
}
diff --git a/Software/Visual_Studio/Tango.BL/Enumerations/PublishedProcedureProjectVisibilities.cs b/Software/Visual_Studio/Tango.BL/Enumerations/PublishedProcedureProjectVisibilities.cs
deleted file mode 100644
index e3f453844..000000000
--- a/Software/Visual_Studio/Tango.BL/Enumerations/PublishedProcedureProjectVisibilities.cs
+++ /dev/null
@@ -1,14 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-namespace Tango.BL.Enumerations
-{
- public enum PublishedProcedureProjectVisibilities
- {
- Public = 0,
- Internal = 1
- }
-}
diff --git a/Software/Visual_Studio/Tango.BL/Enumerations/RmlQualifications.cs b/Software/Visual_Studio/Tango.BL/Enumerations/RmlQualifications.cs
deleted file mode 100644
index 8864bc0b0..000000000
--- a/Software/Visual_Studio/Tango.BL/Enumerations/RmlQualifications.cs
+++ /dev/null
@@ -1,15 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-namespace Tango.BL.Enumerations
-{
- public enum RmlQualifications
- {
- Provisional = 0,
- Supported = 1,
- Certified = 2,
- }
-}
diff --git a/Software/Visual_Studio/Tango.BL/Enumerations/Roles.cs b/Software/Visual_Studio/Tango.BL/Enumerations/Roles.cs
index b51477393..800775d64 100644
--- a/Software/Visual_Studio/Tango.BL/Enumerations/Roles.cs
+++ b/Software/Visual_Studio/Tango.BL/Enumerations/Roles.cs
@@ -103,59 +103,5 @@ namespace Tango.BL.Enumerations
[Description("PPC Application Publisher")]
PPCPublisher = 13,
- /// <summary>
- /// (Technician)
- /// </summary>
- [Description("Technician")]
- FSETechnician = 1000,
-
- /// <summary>
- /// (Advanced Technician)
- /// </summary>
- [Description("Advanced Technician")]
- FSEAdvancedTechnician = 1001,
-
- /// <summary>
- /// (Administrator)
- /// </summary>
- [Description("Administrator")]
- FSEAdministrator = 1002,
-
- /// <summary>
- /// (Twine Technician)
- /// </summary>
- [Description("Twine Technician")]
- FSETwineTechnician = 1003,
-
- /// <summary>
- /// (Twine Administrator)
- /// </summary>
- [Description("Twine Administrator")]
- FSETwineAdministrator = 1004,
-
- /// <summary>
- /// (Twine Developer)
- /// </summary>
- [Description("Twine Developer")]
- FSETwineDeveloper = 1005,
-
- /// <summary>
- /// (Twine Data Store Developer)
- /// </summary>
- [Description("Twine Data Store Developer")]
- FSETwineDataStoreDeveloper = 1008,
-
- /// <summary>
- /// (Twine Procedure Designer)
- /// </summary>
- [Description("Twine Procedure Designer")]
- FSETwineProcedureDesigner = 1006,
-
- /// <summary>
- /// (Twine Procedure Publisher)
- /// </summary>
- [Description("Twine Procedure Publisher")]
- FSETwineProcedurePublisher = 1007,
-
}
}
diff --git a/Software/Visual_Studio/Tango.BL/Enumerations/TangoUpdateStatuses.cs b/Software/Visual_Studio/Tango.BL/Enumerations/TangoUpdateStatuses.cs
deleted file mode 100644
index 9db075623..000000000
--- a/Software/Visual_Studio/Tango.BL/Enumerations/TangoUpdateStatuses.cs
+++ /dev/null
@@ -1,54 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.ComponentModel;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-namespace Tango.BL.Enumerations
-{
- public enum TangoUpdateStatuses
- {
- [Description("Setup started but did not complete")]
- SetupStarted = 0,
- [Description("Setup completed successfully")]
- SetupCompleted = 1,
- [Description("Setup failed")]
- SetupFailed = 2,
-
- [Description("Software update started but did not complete")]
- UpdateStarted = 100,
- [Description("Software update completed successfully")]
- UpdateCompleted = 101,
- [Description("Software update failed")]
- UpdateFailed = 102,
-
- [Description("Database update started but did not complete")]
- DatabaseStarted = 200,
- [Description("Database update completed successfully")]
- DatabaseCompleted = 201,
- [Description("Database update failed")]
- DatabaseFailed = 202,
-
- [Description("Synchronization started but did not complete")]
- SynchronizationStarted = 300,
- [Description("Synchronization completed successfully")]
- SynchronizationCompleted = 301,
- [Description("Synchronization failed")]
- SynchronizationFailed = 302,
-
- [Description("Offline update started but did not complete")]
- OfflineUpdateStarted = 400,
- [Description("Offline update completed successfully")]
- OfflineUpdateCompleted = 401,
- [Description("Offline update failed")]
- OfflineUpdateFailed = 402,
-
- [Description("Offline firmware upgrade started but did not complete")]
- OfflineFirmwareUpgradeStarted = 500,
- [Description("Offline firmware upgrade completed successfully")]
- OfflineFirmwareUpgradeCompleted = 501,
- [Description("Offline firmware upgrade failed")]
- OfflineFirmwareUpgradeFailed = 502,
- }
-}
diff --git a/Software/Visual_Studio/Tango.BL/Enumerations/TechHeaters.cs b/Software/Visual_Studio/Tango.BL/Enumerations/TechHeaters.cs
index 9731e5b61..a73fbb244 100644
--- a/Software/Visual_Studio/Tango.BL/Enumerations/TechHeaters.cs
+++ b/Software/Visual_Studio/Tango.BL/Enumerations/TechHeaters.cs
@@ -79,53 +79,5 @@ namespace Tango.BL.Enumerations
[Description("Mixer Heater")]
MixerHeater = 9,
- /// <summary>
- /// (Heater Zone 7)
- /// </summary>
- [Description("Heater Zone 7")]
- HeaterZone7 = 10,
-
- /// <summary>
- /// (Heater Zone 8)
- /// </summary>
- [Description("Heater Zone 8")]
- HeaterZone8 = 11,
-
- /// <summary>
- /// (Heater Zone 9)
- /// </summary>
- [Description("Heater Zone 9")]
- HeaterZone9 = 12,
-
- /// <summary>
- /// (Heater Zone 10)
- /// </summary>
- [Description("Heater Zone 10")]
- HeaterZone10 = 13,
-
- /// <summary>
- /// (Heater Zone 11)
- /// </summary>
- [Description("Heater Zone 11")]
- HeaterZone11 = 14,
-
- /// <summary>
- /// (Heater Zone 12)
- /// </summary>
- [Description("Heater Zone 12")]
- HeaterZone12 = 15,
-
- /// <summary>
- /// (Head Cover Heater 1)
- /// </summary>
- [Description("Head Cover Heater 1")]
- HeadCoverHeater1 = 16,
-
- /// <summary>
- /// (Head Cover Heater 2)
- /// </summary>
- [Description("Head Cover Heater 2")]
- HeadCoverHeater2 = 17,
-
}
}
diff --git a/Software/Visual_Studio/Tango.BL/Enumerations/TechMonitors.cs b/Software/Visual_Studio/Tango.BL/Enumerations/TechMonitors.cs
index 165fe2bd3..a017c18d1 100644
--- a/Software/Visual_Studio/Tango.BL/Enumerations/TechMonitors.cs
+++ b/Software/Visual_Studio/Tango.BL/Enumerations/TechMonitors.cs
@@ -236,102 +236,12 @@ namespace Tango.BL.Enumerations
FilterDeltaPressure = 26,
/// <summary>
- /// (Gas Sensor (VOC Sensor))
- /// </summary>
- [Description("Gas Sensor (VOC Sensor)")]
- GasSensor = 400,
-
- /// <summary>
/// (Head Air Flow)
/// </summary>
[Description("Head Air Flow")]
HeadAirFlow = 13,
/// <summary>
- /// (Head Blower 1 Air Flow)
- /// </summary>
- [Description("Head Blower 1 Air Flow")]
- HeadBlower1AirFlow = 403,
-
- /// <summary>
- /// (Head Blower 2 Air Flow)
- /// </summary>
- [Description("Head Blower 2 Air Flow")]
- HeadBlower2AirFlow = 404,
-
- /// <summary>
- /// (Head Blower Voltage 1)
- /// </summary>
- [Description("Head Blower Voltage 1")]
- HeadBlowerVoltage1 = 212,
-
- /// <summary>
- /// (Head Blower Voltage 2)
- /// </summary>
- [Description("Head Blower Voltage 2")]
- HeadBlowerVoltage2 = 213,
-
- /// <summary>
- /// (Head Cover Heater 1 Current)
- /// </summary>
- [Description("Head Cover Heater 1 Current")]
- HeadCoverHeater1Current = 214,
-
- /// <summary>
- /// (Head Cover Heater 1 Temperature)
- /// </summary>
- [Description("Head Cover Heater 1 Temperature")]
- HeadCoverHeater1Temperature = 215,
-
- /// <summary>
- /// (Head Cover Heater 2 Current)
- /// </summary>
- [Description("Head Cover Heater 2 Current")]
- HeadCoverHeater2Current = 216,
-
- /// <summary>
- /// (Head Cover Heater 2 Temperature)
- /// </summary>
- [Description("Head Cover Heater 2 Temperature")]
- HeadCoverHeater2Temperature = 217,
-
- /// <summary>
- /// (Head Zone 10 Heater Current)
- /// </summary>
- [Description("Head Zone 10 Heater Current")]
- HeadZone10HeaterCurrent = 206,
-
- /// <summary>
- /// (Head Zone 10)
- /// </summary>
- [Description("Head Zone 10")]
- HeadZone10Temperature = 207,
-
- /// <summary>
- /// (Head Zone 11 Heater Current)
- /// </summary>
- [Description("Head Zone 11 Heater Current")]
- HeadZone11HeaterCurrent = 208,
-
- /// <summary>
- /// (Head Zone 11)
- /// </summary>
- [Description("Head Zone 11")]
- HeadZone11Temperature = 209,
-
- /// <summary>
- /// (Head Zone 12 Heater Current)
- /// </summary>
- [Description("Head Zone 12 Heater Current")]
- HeadZone12HeaterCurrent = 210,
-
- /// <summary>
- /// (Head Zone 12)
- /// </summary>
- [Description("Head Zone 12")]
- HeadZone12Temperature = 211,
-
- /// <summary>
/// (Head Zone 1 Heater Current)
/// </summary>
[Description("Head Zone 1 Heater Current")]
@@ -383,7 +293,7 @@ namespace Tango.BL.Enumerations
/// (Head Zone 5-6 Heater Current)
/// </summary>
[Description("Head Zone 5-6 Heater Current")]
- HeadZone56HeaterCurrent = 82,
+ HeadZone5_6HeaterCurrent = 82,
/// <summary>
/// (Head Zone 5)
@@ -398,48 +308,6 @@ namespace Tango.BL.Enumerations
HeadZone6Temperature = 38,
/// <summary>
- /// (Head Zone 7 Heater Current)
- /// </summary>
- [Description("Head Zone 7 Heater Current")]
- HeadZone7HeaterCurrent = 200,
-
- /// <summary>
- /// (Head Zone 7)
- /// </summary>
- [Description("Head Zone 7")]
- HeadZone7Temperature = 201,
-
- /// <summary>
- /// (Head Zone 8 Heater Current)
- /// </summary>
- [Description("Head Zone 8 Heater Current")]
- HeadZone8HeaterCurrent = 202,
-
- /// <summary>
- /// (Head Zone 8)
- /// </summary>
- [Description("Head Zone 8")]
- HeadZone8Temperature = 203,
-
- /// <summary>
- /// (Head Zone 9 Heater Current)
- /// </summary>
- [Description("Head Zone 9 Heater Current")]
- HeadZone9HeaterCurrent = 204,
-
- /// <summary>
- /// (Head Zone 9)
- /// </summary>
- [Description("Head Zone 9")]
- HeadZone9Temperature = 205,
-
- /// <summary>
- /// (Incoming Voltage (VAC Sensor))
- /// </summary>
- [Description("Incoming Voltage (VAC Sensor)")]
- IncomingVoltage = 401,
-
- /// <summary>
/// (Mid Tank 1 Level)
/// </summary>
[Description("Mid Tank 1 Level")]
@@ -506,12 +374,6 @@ namespace Tango.BL.Enumerations
MixerTemperature = 9,
/// <summary>
- /// (Overall Temperature)
- /// </summary>
- [Description("Overall Temperature")]
- OverallTemperature = 102,
-
- /// <summary>
/// (Poller Motor)
/// </summary>
[Description("Poller Motor")]
@@ -530,42 +392,12 @@ namespace Tango.BL.Enumerations
ScrewMotor = 7,
/// <summary>
- /// (Shinko Current Value)
- /// </summary>
- [Description("Shinko Current Value")]
- ShinkoCurrentValue = 501,
-
- /// <summary>
- /// (Shinko Set Value)
- /// </summary>
- [Description("Shinko Set Value")]
- ShinkoSetValue = 500,
-
- /// <summary>
/// (Thread Speed)
/// </summary>
[Description("Thread Speed")]
ThreadSpeed = 8,
/// <summary>
- /// (Total WHS Flow)
- /// </summary>
- [Description("Total WHS Flow")]
- TotalWHSFlow = 502,
-
- /// <summary>
- /// (Waste Level)
- /// </summary>
- [Description("Waste Level")]
- WasteLevel = 402,
-
- /// <summary>
- /// (WHS Blower 2 Voltage)
- /// </summary>
- [Description("WHS Blower 2 Voltage")]
- WHSBlower2Voltage = 300,
-
- /// <summary>
/// (Winder Motor)
/// </summary>
[Description("Winder Motor")]