diff options
Diffstat (limited to 'Software/Visual_Studio/Tango.Integration/Operation/IMachineOperator.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.Integration/Operation/IMachineOperator.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.Integration/Operation/IMachineOperator.cs b/Software/Visual_Studio/Tango.Integration/Operation/IMachineOperator.cs index 0f9f3b008..0a46e0eb4 100644 --- a/Software/Visual_Studio/Tango.Integration/Operation/IMachineOperator.cs +++ b/Software/Visual_Studio/Tango.Integration/Operation/IMachineOperator.cs @@ -273,6 +273,11 @@ namespace Tango.Integration.Operation event EventHandler<StartTelemetryWireResponse> TelemetryWireAvailable; /// <summary> + /// Occurs when a new user notification is available. + /// </summary> + event EventHandler<StartNotificationResponse> NotificationAvailable; + + /// <summary> /// Occurs when waste replacement is required. /// </summary> event EventHandler WasteReplacementRequired; @@ -323,6 +328,11 @@ namespace Tango.Integration.Operation bool EnableTelemetryWire { get; set; } /// <summary> + /// Gets or set a value indicating whether to enable user notifications from the firmware. + /// </summary> + bool EnableNotifications { get; set; } + + /// <summary> /// Gets the last process parameters table sent to the embedded device. /// </summary> ProcessParametersTable CurrentProcessParameters { get; } |
