Line 154, my Pi didn't like the commented text after the register array, I simply moved it to a new line and that solved the issue.
- name: system_datetime description: System DateTime unit: active: true modbus: register: [3072, 3073, 3074, 3075, 3076, 3077] # [year, month, day, hour, minute, seconds]
Needs to be
- name: system_datetime description: System DateTime unit: active: true modbus: register: [3072, 3073, 3074, 3075, 3076, 3077]
# [year, month, day, hour, minute, seconds]
If anyone has a full 5G registers config they'd like to share I'd be most grateful, I appear to have some unit/precision errors in mine but will work through them this next weekend.
Line 154, my Pi didn't like the commented text after the register array, I simply moved it to a new line and that solved the issue.
- name: system_datetime description: System DateTime unit: active: true modbus: register: [3072, 3073, 3074, 3075, 3076, 3077] # [year, month, day, hour, minute, seconds]Needs to be
- name: system_datetime description: System DateTime unit: active: true modbus: register: [3072, 3073, 3074, 3075, 3076, 3077]# [year, month, day, hour, minute, seconds]If anyone has a full 5G registers config they'd like to share I'd be most grateful, I appear to have some unit/precision errors in mine but will work through them this next weekend.