150d
150d
I'm seeing the same problem described in https://github.com/WordPress/two-factor/issues/301 (marked as duplicate to this issue) here: My FIDO2 key is set as a second factor, which is correctly requested when logging...
I can't get a console, but will try the other versions. In the meantime: Could it be this issue from way before again? https://github.com/ioBroker/ioBroker.vis/issues/424
I can confirm that with vis version v1.5.1 everything is back to normal. Only v1.5.4 didn't work for my device. The device in question is a Samsung Galaxy S2 running...
@oweitman I'm using the app "Wallpanel" - a dedicated, "kiosk-like" browser especially designed for smarthome purposes. In the meantime, I was able to upgrade the device to Android 11. With...
This may also be an opportunity for a strategic decision: As I understand it, vis-2 is already well on the horizon (though still not in stable repository yet.) Therefore: a)...
URL change: As described, I can't use that because a) it's too slow and b) it doesn't reflect simple touch events (that don't lead to a different page.) motion/face: I...
... just wanted to add that I'm seeing the same problem here with adapter version v1.15.18. A reinit-config has not helped here. And yes, I'm also getting the messages about...
I believe I found the root cause. In your quote (and I'm seeing the same problem on my own hardware as well) you logged the following NMEA message: `$GNRMC,052331.000,A,1057.27606,N,07619.38087,E,0.00,190.74,140224,,,A,V*0D` This...
In the meantime I did some more research and found that the NMEA spec is not as absolute as I assumed it to be. Apparently, there are a number of...
It's trivial, really: In libloragw/src/loragw_gps.c, you'll find: `832 if (nb_fields != 13) {` Change that to something like: `832 if ( (nb_fields != 13) && (nb_fields != 14) ) {`...