Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

IMP - Add meter group 10 and its subgroup 1 #115

Merged
merged 1 commit into from
Oct 3, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion primestg/event_groups.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
(6, 'Grupo 6 - Alta ocurrencia'),
(7, 'Grupo 7 - Seguridad'),
(8, 'Grupo 8 - Fugas a tierra'),
(9, 'Grupo 9 - Calidad de suministro')
(9, 'Grupo 9 - Calidad de suministro'),
(10, 'Grupo 10 - Estado de conexión'),
]

# meter events
Expand All @@ -20,6 +21,7 @@
(5, 'Grupo 5 - Gestión de la demanda'),
(6, 'Grupo 6 - Alta ocurrencia'),
(7, 'Grupo 7 - Seguridad'),
(10, 'Grupo 10 - Estado de conexión'),
]

# cnc events
Expand Down Expand Up @@ -327,6 +329,8 @@
11: 'Error en el cifrado y autenticación de los mensajes',
12: 'Error en el password LLS',
13: 'Error en el cambio de Security policy',
}, 10: {
1: 'Cambio de estado',
}}

dc_events = {1: {
Expand Down
Loading