Matthew Clark
Matthew Clark
For those of you who are using `weectl database add-column` to resolve the problem, the root problem might be the same as what I just discovered on my instance of...
> Same problem here. Got the following every 5 Minutes > > Statistics.html still in the basic skin and do not update to wdc. > > `ERROR weewx.reportengine: Caught unrecoverable...
I'm also looking for a solution. So far, looks like I may have to come up with one myself -- I'll share it if I do, of course...
And still happening on WeeWX v5.1.0, but the version doesn't matter since the last release of NeoWX Material was over three years ago, and there haven't been anymore commits since...
Just started using Spoolman for the first time, and while loading up all my filaments and spools, I ran into this same problem: brand-new 1Kg spool actually weighed in at...
Yep, [the API model specifies a constraint](https://github.com/Donkie/Spoolman/blob/a68e0d59bd18983403cc56497bdc9bca84285886/spoolman/api/v1/models.py#L188C32-L188C36) that the value should be greater than or equal to zero, which the web client violates when sending a negative value for `used_weight`....
Um... did you not notice your typo? You're providing the `messageList` to `beginPacket()` instead of `write()` 🙃
So, the other thing I noticed is your `messageList` is a `bytes()` object. Maybe try: ```python LoRa.write(list(map(int, messageList))) ```
I'm guessing you installed the [python3-gpiod](https://github.com/hhk7734/python3-gpiod) module. What you actually need is the [libgpiod](https://git.kernel.org/pub/scm/libs/libgpiod/libgpiod.git/about/) module. If you're on Ubuntu/Debian, just run `sudo apt install python3-libgpiod`.
You must be following the current [examples](https://github.com/chandrawi/LoRaRF-Python/tree/main/examples/network); but those were refactored (commit 67cb5c9) after the v1.4.0 release (commit 86572c3), so they reference a new API that doesn't exist in the...