------------------
**Bugfix**
Add support for LAN based Wiffi devices: They don't send the attributes
`rssi` and `ssid`, but the old code always tried to get them. This resulted in the crash:
Traceback (most recent call last):
File "/usr/local/lib/python3.10/site-packages/wiffi/init.py", line 224, in call
await self.parse_msg(peername, data[:-1]) omit separator with [:-1]
File "/usr/local/lib/python3.10/site-packages/wiffi/init.py", line 240, in parse_msg
metrics.append(WiffiMetricFromSystemInfo("rssi", "dBm", "number", data["Systeminfo"]["WLAN_Signal_dBm"]))
KeyError: 'WLAN_Signal_dBm'
This fix makes the attributes optional.