项目作者: piotrC4

项目描述 :
Homie based bridge between MQTT and RFlink module
高级语言: C++
项目地址: git://github.com/piotrC4/mqtt-rflink-bridge.git
创建时间: 2016-11-06T18:23:53Z
项目社区:https://github.com/piotrC4/mqtt-rflink-bridge

开源协议:

下载


Homie based bridge MQTT to RFLink module

Features:

  • publish via MQTT in JSON format message received from RFlink gateway
  • send to RFlink gateway message received via MQTT
  • All Homie buildin features (OTA,configuration)

Limitations

  • Too long messages (mostly debug) may not be published - error message will be published

Connections

  • Do standard RFlink wiring
  • Connect RFLink to ESP8266
    • Arduino MEGA TX (D1) to ESP8266 Soft Serial RX (GPIO14/D5) via logic level shifter 5V->3,3V or voltage divider (use 200Ohm and 470Ohm resistors)
    • Arduino MEGA RX (D0) to ESP8266 Soft Serial TX (GPIO5/D1)

schematic

alt text

MQTT messages


































Property Message format Direction Description
HOMIE_PREFIX/node-id/serial01/to-send/set See RFlink protocol reference Controller → Device
HOMIE_PREFIX/node-id/serial01/publish-mode/set (RAW|JSON|STANDARD) Controller → Device Set publishing methods
HOMIE_PREFIX/node-id/serial01/device_name See below JSON message format section Device → Controller
HOMIE_PREFIX/node-id/$online (true|false) Device → Controller /true when the device is online, false when the device is offline (through LWT)

Message format

  • JSON
    Message received from RFLink is converted to JSON array. Each field is converted to array element. Name is used in topic name.

RFlink message: 20;1B;Keeloq;ID=e311;SWITCH=0A;CMD=ON;BAT=OK; will be published in topic:
HOMIE_PREFIX/node-id/serial01/Keeloq with value {“msgIdx”:”12”,”ID”:”e331”,”SWITCH”:”01”,”CMD”:”ON”,”BAT”:”OK”}

  • RAW
    Message recived from RFLink is published as is. Used in debug.

  • STANDARD
    Message received from RFLink is converted to JSON array partialy
    RFlink message: 20;1B;Keeloq;ID=e311;SWITCH=0A;CMD=ON;BAT=OK; will be published in topic:
    HOMIE_PREFIX/node-id/serial01/Keeloq/e331 with value {“SWITCH”:”01”,”CMD”:”ON”,”BAT”:”OK”}

Examples of usage

  • Sending RF - Publish to HOMIE_PREFIX/node-id/serial01/to-send/set value: 10;Kaku;00004d;1;OFF;
  • Turn on RFDEBUG - Publish to HOMIE_PREFIX/node-id/serial01/to-send/set value: 10;RFDEBUG=ON;
  • PING RFLink module - Publish to HOMIE_PREFIX/node-id/serial01/to-send/set value: 10;PING;. Response will be published in topic HOMIE_PREFIX/node-id/serial01/PONG

Usage with OpenHAB

  • STANDARD format
    • create rflink.items file:
      1. Group gRFLink
      2. String rfLinkKeeloq
      3. "Keeloq message [%s]" (gRFLink)
      4. {mqtt="<[mosquitto:_HOMIE_PREFIX_/_node-id_/serial01/Keeloq/1111:state:default]"}
    • create keeloq.rules file:
      ```java
      import org.openhab.core.library.types.
      import org.openhab.core.persistence.

      import org.openhab.model.script.actions.*

rule keeloqUpdate
when
Item rfLinkKeeloq received update
then
var String SWITCH = transform(“JSONPATH”, “$.SWITCH”, Message)
var String CMD = transform(“JSONPATH”, “$.CMD”, Message)
var String BAT = transform(“JSONPATH”, “$.BAT”, Message)
if (SWITCH==”01” && CMD==”ON”)
{
// When button was pressed log it
logInfo(“keeloq”,”Received message from keeloq”)
}
end

  1. * JSON format
  2. * create <code>rflink.items</code> file:
  3. ```java
  4. Group gRFLink
  5. String rfLinkKeeloq
  6. "Keeloq message [%s]" (gRFLink)
  7. {mqtt="<[mosquitto:_HOMIE_PREFIX_/_node-id_/serial01/Keeloq:state:default]"}
  • create keeloq.rules file:
    ```java
    import org.openhab.core.library.types.
    import org.openhab.core.persistence.

    import org.openhab.model.script.actions.*

rule keeloqUpdate
when
Item rfLinkKeeloq received update
then
var String Message = rfLinkKeeloq.state.toString
var String ID = transform(“JSONPATH”, “$.ID”, Message)
var String SWITCH = transform(“JSONPATH”, “$.SWITCH”, Message)
var String CMD = transform(“JSONPATH”, “$.CMD”, Message)
var String BAT = transform(“JSONPATH”, “$.BAT”, Message)

  1. if (ID=="1111" && SWITCH=="01" && CMD=="ON")
  2. {
  3. // When button was pressed log it
  4. logInfo("keeloq","Received message from keeloq")
  5. }

end

```