Fabian Peter Hammerle
Fabian Peter Hammerle
thanks for this awesome project! option to enable last.fm scrobbling would be nice :) (to track what songs I am listening to and get recommendations on last.fm) https://www.last.fm/about/trackmymusic https://www.last.fm/api/scrobbling
`ustreamer` works fine when I connect a TC358743 board instead of the camera.
Thanks @benjaminjacobreji for your suggestion to revert to the legacy stack! If possible, I would prefer keeping libcamera, as I also use `libcamera-vid --post-process-file ...` from time to time. I...
Thanks a lot for looking into this issue, @mdevaev !
On T-Beam v1.1 the GPS module is connected to AXP192's `LDO3` pin: ```cpp // https://github.com/lewisxhe/AXP202X_Library #include // ... if(axp.begin(Wire, AXP192_SLAVE_ADDRESS) == AXP_FAIL) { Serial.println(F("failed to initialize communication with AXP192")); }...
tested on t-beam v1.1: ```c #include // https://github.com/lewisxhe/AXP202X_Library #include AXP20X_Class axp; void setup() { // ... Wire.begin(21, 22); if(axp.begin(Wire, AXP192_SLAVE_ADDRESS) == AXP_FAIL) { Serial.println(F("failed to initialize communication with AXP192")); }...
potential alternative for raspberry pi: https://github.com/nahueldsanchez/pycc1101 (python)
Maybe your HTTP response code is not in `{200, 201, 204, 206, 301, 302, 303, 304, 307, 308}`. Did you try adding the `always` keyword to the `add_header` statement? https://stackoverflow.com/a/57932938/5894777
I failed to wrap `stubby` (`v1.5.1-1` debian package) with `torsocks` (`v2.3.0-2`): ``` $ TORSOCKS_ALLOW_INBOUND=1 TORSOCKS_LOG_LEVEL=5 /usr/bin/torsocks /usr/bin/stubby -C /etc/stubby/test.yml [...] [15:36:13.895632] STUBBY: Read config from file /etc/stubby/test.yml 1621870573 DEBUG torsocks[29757]:...
Thanks for recommending proxychains-ng, @phantomcraft! Worked great so far. ``` # /etc/proxychains4.conf strict_chain [ProxyList] socks4 127.0.0.1 9050 ```