-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathApiPlcOperatingMode.cs
More file actions
57 lines (56 loc) · 1.26 KB
/
ApiPlcOperatingMode.cs
File metadata and controls
57 lines (56 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
// Copyright (c) 2026, Siemens AG
//
// SPDX-License-Identifier: MIT
namespace Siemens.Simatic.S7.Webserver.API.Enums
{
/// <summary>
/// Plc Opertaing Modes enum
/// </summary>
public enum ApiPlcOperatingMode
{
/// <summary>
/// should never be the case
/// </summary>
None = 0,
/// <summary>
/// STOP
/// </summary>
Stop = 1,
/// <summary>
/// ANLAUF
/// </summary>
Startup = 2,
/// <summary>
/// RUN
/// </summary>
Run = 3,
/// <summary>
/// Halt
/// </summary>
Hold = 4,
/// <summary>
/// should never be the case
/// </summary>
Unknown = 5,
/// <summary>
/// STOP Firmware-Update
/// </summary>
Stop_fwupdate = 6,
/// <summary>
/// RH PLCs are in Run-Redundant mode.
/// </summary>
Run_redundant = 7,
/// <summary>
/// RH PLCs are in syncup state.
/// </summary>
Syncup = 8,
/// <summary>
/// RH PLCs are synchronizing.
/// </summary>
Run_syncup = 9,
/// <summary>
///
/// </summary>
Remote_unknown = 10,
}
}