https://github.com/atus/proove_433_cpp
C++ lib for controlling your Proove/Nexa/Anslut/Telldus RF sockets
https://github.com/atus/proove_433_cpp
433mhz anslut cpp iot nexa proove proove-rf-sockets raspberry-pi rf telldus
Last synced: 3 months ago
JSON representation
C++ lib for controlling your Proove/Nexa/Anslut/Telldus RF sockets
- Host: GitHub
- URL: https://github.com/atus/proove_433_cpp
- Owner: atus
- License: gpl-3.0
- Created: 2017-04-16T11:20:32.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-04-23T18:24:44.000Z (about 8 years ago)
- Last Synced: 2025-01-24T20:41:34.003Z (4 months ago)
- Topics: 433mhz, anslut, cpp, iot, nexa, proove, proove-rf-sockets, raspberry-pi, rf, telldus
- Language: C++
- Homepage:
- Size: 17.6 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# proove_433_cpp
C++ lib for controlling your proove RF socketsThanks to http://tech.jolowe.se/arduino-home-automation-project/ for explaining the protocol
```
Packet structure:
Bit nbr: Name:
01-52 Transmitter code. 26 bits, sent as 52 (every other bit is the inverse of previous)
53-54 Group On(01), Off(10)
55-56 On(01), Off(10) (or Dim(11)?)
57-60 Channel. 1=1010, 2=1001, 3=0110, 4=0101
61-64 Switch. 1=1010, 2=1001, 3=0110, 4=0101
(65-73 Dimmer value, 16 steps. (optional))
# 10 20 30 40 50 60
# 1234567890123456789012345678901234567890123456789012 34 56 7890 1234
----------------------------------------------------------------------------
#1 On: 1010100101101001010101100101011001010101010101010110 10 01 0101 0101
#1 Off: 1010100101101001010101100101011001010101010101010110 10 10 0101 0101
#2 On: 1010100101101001010101100101011001010101010101010110 10 01 0101 0110
#2 Off: 1010100101101001010101100101011001010101010101010110 10 10 0101 0110
#3 On: 1010100101101001010101100101011001010101010101010110 10 01 0101 1001
#3 Off: 1010100101101001010101100101011001010101010101010110 10 10 0101 1001
Gr On: 1010100101101001010101100101011001010101010101010110 01 01 0101 0101
Gr Off: 1010100101101001010101100101011001010101010101010110 01 10 0101 0101
```