Skip to content

Commit

Permalink
minor: Fix some unwanted chars in input files
Browse files Browse the repository at this point in the history
  • Loading branch information
zuckschwerdt committed Feb 7, 2024
1 parent fe8ca7e commit a63bbf1
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 13 deletions.
4 changes: 2 additions & 2 deletions conf/energy_count_3000.conf
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# EC3k Energy Count Control
#
# "Voltcraft Energy Count 3000" (868.3 MHz) sensor sold by Conrad
# aka Velleman NETBSEM4
# aka La Crosse Technology Remote Cost Control Monitor – RS3620.
# aka "Velleman NETBSEM4"
# aka "La Crosse Technology Remote Cost Control Monitor – RS3620".
# aka "ELV Cost Control"
#
# Stub driver
Expand Down
2 changes: 1 addition & 1 deletion src/devices/acurite_01185m.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Decoder for Acurite Grill/Meat Thermometer 01185M.
S.a. #1824
Temperature is 16 bit, degrees F, scaled x10 +900.
The first reading is the Meat channel and the second is for the Ambient or grill temperature.
The first reading is the "Meat" channel and the second is for the "Ambient" or grill temperature.
The range would be around -57F to 572F with the manual stating temps higher than 700F could damage the sensor.
- A value of 0x1b58 (7000 / 610F) indicates the sensor is unplugged and sending an E1 error to the displays.
Expand Down
2 changes: 1 addition & 1 deletion src/devices/emontx.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ This is the JeeLibs RF12 packet format as described at
The RFM69 chip misses out the zero bit at the end of the
0xAA 0xAA 0xAA preamble; the receivers only use it to set
up the bit timing, and they look for the 0x2D at the start
of the packet. So we'll do the same except since we're
of the packet. So we'll do the same -- except since we're
specifically looking for emonTx packets, we can require a
little bit more. We look for a group of 0xD2, and we
expect the CDA bits in the header to all be zero:
Expand Down
4 changes: 2 additions & 2 deletions src/devices/geo_minim.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ or as follows:
1. On the display, hold down the <- and +> buttons together for 3 seconds.
2. At the next screen, hold down the middle button for 3 seconds until the
display shows Pair?
display shows "Pair?"
3. On the sensor, press and hold the pair button (next to the red light)
until the red LED light illuminates.
4. Release the pair button and the LED flashes as the transmitter pairs.
5. The display should now read Paired CT"
5. The display should now read "Paired CT"
When paired the display listens for sensor packets and then transmits a
summary packet using the same protocol.
Expand Down
2 changes: 1 addition & 1 deletion src/devices/proove.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Proove packet structure (32 bits or 36 bits with dimmer value):
HHHH HHHH HHHH HHHH HHHH HHHH HHGO CCEE [DDDD]
- H = The first 26 bits are transmitter unique codes, and it is this code that the receiver learns to recognize.
- H = The first 26 bits are transmitter unique codes, and it is this code that the receiver "learns" to recognize.
- G = Group command. Set to 1 for on, 0 for off.
- O = On/Off bit. Set to 1 for on, 0 for off.
- C = Channel bits (inverted).
Expand Down
11 changes: 5 additions & 6 deletions src/devices/tfa_marbella.c
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,13 @@
TFA Dostmann Marbella (30.3238.06).
Main display cat no: 3066.01
External links
https://www.tfa-dostmann.de/produkt/funk-poolthermometer-marbella-30-3066/
https://clientmedia.trade-server.net/1768_tfadost/media/3/52/21352.pdf
External links:
- https://www.tfa-dostmann.de/produkt/funk-poolthermometer-marbella-30-3066/
- https://clientmedia.trade-server.net/1768_tfadost/media/3/52/21352.pdf
The Marbella sensor operates at 868MHz frequency band.
FSK_PCM with 105 us long high durations
AA 2D D4 68 3F 16 0A 31 9A AA XX
Expand Down

0 comments on commit a63bbf1

Please sign in to comment.