update fileinfos
This commit is contained in:
parent
c580696dc1
commit
fcc0f30247
1 changed files with 38 additions and 22 deletions
58
README.md
58
README.md
|
@ -1,42 +1,58 @@
|
||||||
# Python files for RaspyRFM
|
# Python files for RaspyRFM
|
||||||
|
|
||||||
## rfm69.py
|
## connair.py
|
||||||
|
emulate a gateway for controlling RC socket. Compatible to "Brennenstuhl Brematic", Intertechno "ITGW-433", "ConnAir"
|
||||||
|
see https://power-switch.eu/
|
||||||
|
|
||||||
interfacing the RFM69
|
## emoncms.py
|
||||||
|
receive lacrosse-sensors and post them to the open energy monitor, see https://openenergymonitor.org/
|
||||||
|
|
||||||
|
## fs20tx.py
|
||||||
|
controlling FS20 RX sockets
|
||||||
|
```sh
|
||||||
|
sudo ./fs20tx <housecode> <address> <command>
|
||||||
|
```
|
||||||
|
|
||||||
## intertechno.py
|
## intertechno.py
|
||||||
controlling remote control sockets
|
controlling remote control sockets
|
||||||
usage example:
|
|
||||||
```sh
|
```sh
|
||||||
sudo intertechno.py 0000F0000FFF
|
intertechno <HOUSECODE A-P> <GROUP 1-4> <CHANNEL 1-4> on|off
|
||||||
|
intertechno <12 symbols tristate code>
|
||||||
|
intertechno <26 bit address> <1 goup bit> <4 bit unit> on|off
|
||||||
|
intertechno <32 bit code>
|
||||||
|
usage example:
|
||||||
|
intertechno A 1 1 on
|
||||||
|
intertechno 0000FFFF0FFF
|
||||||
|
interttechno 11110000111100001111000010 0 1110 on
|
||||||
|
interttechno 11110000111100001111000010010000
|
||||||
```
|
```
|
||||||
|
|
||||||
## lacrosse.py
|
## lacrosse.py
|
||||||
receiving temperature sensors
|
receiving temperature sensors
|
||||||
|
|
||||||
## hamarx.py
|
|
||||||
receive hama remote controller for remote control sockets
|
|
||||||
|
|
||||||
## logilightrx.py
|
|
||||||
receive logilight remote control
|
|
||||||
```sh
|
```sh
|
||||||
sudo ./logilightrx.py
|
sudo ./lacrosse.py
|
||||||
RFM69 found!
|
RFM69 found on CS 1
|
||||||
INIT COMPLETE
|
INIT COMPLETE
|
||||||
Systemcode 415166 onoff 0 ch 7
|
Waiting for sensors...
|
||||||
Systemcode 415166 onoff 0 ch 7
|
La crosse {'batlo': False, 'AFC': 94, 'init': False, 'T': (19.6, 'C'), 'RSSI': -105, 'RH': (60, '%'), 'ID': '68'}
|
||||||
Systemcode 415166 onoff 0 ch 5
|
La crosse {'batlo': False, 'AFC': -118, 'init': False, 'T': (19.5, 'C'), 'RSSI': -98, 'RH': (60, '%'), 'ID': '78'}
|
||||||
Systemcode 415166 onoff 0 ch 5
|
La crosse {'batlo': False, 'AFC': 6, 'init': False, 'T': (20.4, 'C'), 'RSSI': -87, 'RH': (58, '%'), 'ID': 'e4'}
|
||||||
|
La crosse {'batlo': False, 'AFC': 114, 'init': False, 'T': (19.7, 'C'), 'RSSI': -86, 'RH': (57, '%'), 'ID': '24'}
|
||||||
|
La crosse {'batlo': False, 'AFC': 52, 'init': False, 'T': (19.5, 'C'), 'RSSI': -58, 'RH': (60, '%'), 'ID': '68'}
|
||||||
|
La crosse {'batlo': False, 'AFC': 14, 'init': False, 'T': (20.5, 'C'), 'RSSI': -97, 'RH': (56, '%'), 'ID': '4'}
|
||||||
|
La crosse {'batlo': False, 'AFC': 308, 'init': False, 'T': (19.5, 'C'), 'RSSI': -103, 'RH': (60, '%'), 'ID': '68'}
|
||||||
|
La crosse {'batlo': False, 'AFC': 376, 'init': False, 'T': (19.7, 'C'), 'RSSI': -103, 'RH': (57, '%'), 'ID': '24'}
|
||||||
```
|
```
|
||||||
|
|
||||||
## logilighttx.py
|
## rcs1000.py
|
||||||
control remote control sockets
|
controll Brennenstuhl RC1000 RC sockets
|
||||||
```sh
|
```sh
|
||||||
sudo ./logilighttx.py 415166 1 7 4
|
sudo ./rcs1000.py <5xDIPSWITCH> <CHANNEL 1-4> on|off
|
||||||
RFM69 found!
|
|
||||||
INIT COMPLETE
|
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## rfm69.py
|
||||||
|
interfacing the RFM69
|
||||||
|
|
||||||
# Installation
|
# Installation
|
||||||
* [Install GPIO](http://sourceforge.net/projects/raspberry-gpio-python/)
|
* [Install GPIO](http://sourceforge.net/projects/raspberry-gpio-python/)
|
||||||
Version has to be >= 0.5.4
|
Version has to be >= 0.5.4
|
||||||
|
|
Loading…
Reference in a new issue