We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e6f2fb commit a0247a6Copy full SHA for a0247a6
1 file changed
src/devices/infactory.c
@@ -20,7 +20,7 @@ Outdoor sensor, transmits temperature and humidity data
20
- inFactory NC-3982-913/NX-5817-902, Pearl (for FWS-686 station)
21
- nor-tec 73383 (weather station + sensor), Schou Company AS, Denmark
22
- DAY 73365 (weather station + sensor), Schou Company AS, Denmark
23
-- Tchibo NC-3982-675
+- Tchibo / Infactory NC-3982-675
24
25
Known brand names: inFactory, nor-tec, GreenBlue, DAY. Manufacturer in China.
26
@@ -66,7 +66,7 @@ static int infactory_crc_check(uint8_t *b)
66
67
static int infactory_decode(r_device *decoder, bitbuffer_t *bitbuffer)
68
{
69
- if (bitbuffer->bits_per_row[0] != 40)
+ if (bitbuffer->bits_per_row[0] != 40 && bitbuffer->bits_per_row[0] != 41)
70
return DECODE_ABORT_LENGTH;
71
72
uint8_t *b = bitbuffer->bb[0];
0 commit comments