-
Please add or extend dtoverlay sht3x to include newer sht4x. Just got the newer sht4x sensors, and tried the sht3x support, does not seem to work, which seems a bit odd since address 0x44 is used for…
-
You described a workaround for representing bytes using a wavedrom bitfield in #10.
I would like to document the following byte/character based protocol command structure:
```
Command structure…
-
Heya,
I went down the rabbit hole of trying to understand your code in order to get rtl_433 to be able to parse our weather stations. Turns out my model has a different preamble than yours, and the…
-
That's kinda of all in the title :). My settings only have property in the parameters but function names are still highlighted in python.
Also, is it possible to specify a color theme? The default …
-
Hello,
FYI, this library has a systematic buffer overflow when you read a register with `readReg`. Indeed, the variable `buf` should have a length of 3 bytes and not only 2 bytes. Third byte is use…
-
When generating code for a "reflected" CRC, a function is used to reflect each input byte. This is inefficient—it would be preferable to use an alternative core CRC algorithm that is a "reflected" alg…
-
Seeing the following when testing on my PCM-071-5432DE11I.A0 dev kit:
"""
root@phyboard-lyra-am62xx-3:\~# dd if=/dev/zero of=/sys/bus/i2c/devices/0-0050/eeprom bs=256 count=1
1+0 records in
1+0 …
-
Configuration:
**Master i2c:** Raspberry Pi Zero v2, Raspberry Pi OS
**Slave i2c:** two STM32s (addresses: 0x09 and 0x0c)
App for master: in infinity loop write to slave command (1 byte) with data …
-
We run into the following issue when trying to compile in linux.
One workaround is to remove **libi2c-dev**, but it seems the issue is the way it includes i2c-dev.h and i2c.h.
```
switchtec-use…
-
After the Wire.requestFrom() there is no need to wait for something and the timeout with millis() is not needed.
When the Wire.requestFrom() returns, the I2C transaction has completely finished and…