You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For the case of NMEA 2000 multiframe fast packets, you can utilize the below details:
98
+
99
+
```
100
+
from utils_tp import MultiFrameDecoder, nmea_fast_packet_pgns
101
+
...
102
+
res_id_list_hex = nmea_fast_packet_pgns
103
+
tp_type = "nmea"
104
+
105
+
```
106
+
---
107
+
97
108
### Add InfluxDB tags
98
109
You can add tags to your data when using InfluxDB. This effectively adds additional dimensions to your data that you can e.g. use to color timeseries based on events or to further segment your queries when visualizing the data. The `utils_db.py` contains a basic example via the `add_signal_tags` functions that you can use as outset for building your own logic.
0 commit comments