Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/magcode/jeelink-mqtt
Exposes Jeelink data via MQTT.
https://github.com/magcode/jeelink-mqtt
home-automation jeelink mqtt
Last synced: 2 days ago
JSON representation
Exposes Jeelink data via MQTT.
- Host: GitHub
- URL: https://github.com/magcode/jeelink-mqtt
- Owner: magcode
- License: apache-2.0
- Created: 2017-12-10T16:09:58.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2022-11-05T07:58:57.000Z (about 2 years ago)
- Last Synced: 2024-05-19T07:44:22.399Z (9 months ago)
- Topics: home-automation, jeelink, mqtt
- Language: Java
- Size: 39.1 KB
- Stars: 2
- Watchers: 4
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Jeelink MQTT
This program exposes Jeelink data via MQTT.
It connects to a given serial port and publishes data to a given MQTT topic.The program is written in Java. You can run it on almost any device which can run Java.
## Config file
Create a `jeelink.properties` file with the following content. The file must be placed beside the *.jar file.```
mqttServer=tcp://broker.my.lan #address of your MQTT server
logLevel=INFO #log level
topic=home/temperatures #root topic
sketchName=LACR #LACR or EC3K
serialPortName=/dev/usb-lacr #port name of your jeelink
```## Building and running
To build run the following commands:
```
mvn clean install
java -jar target/jeelink-mqtt-0.1.0-SNAPSHOT-jar-with-dependencies.jar
```Alternatively you can download a [release](https://github.com/magcode/jeelink-mqtt/releases).
# Supported sketches
## Lacrosse
Use `LACR` as sketchName.
The following data is published for each sensor:```
home/temperatures/18/temperature 22.2
home/temperatures/18/humidity 48
home/temperatures/18/batterylow false
```## Energy Count 3000
Use `EC3K` as sketchName.
The following data is published for each sensor:```
home/ec3k/14E7/currentpower 31.0
home/ec3k/14E7/energy 199774
home/ec3k/14E7/timeon 24106151
home/ec3k/14E7/timetotal 24106151
home/ec3k/14E7/maxpower 51.6
```# Integration into Openhab
## Sample for Lacrosse```
Number temp_room1 "room1 temp [%.1f �C]" { mqtt="<[mosquitto:home/temperatures/63/temperature:state:default]" }
Number hum_room1 "room1 hum [%1d %%]" { mqtt="<[mosquitto:home/temperatures/63/humidity:state:default]" }
Switch bat_room1 "room1 battery low" {mqtt="<[mosquitto:home/temperatures/63/humidity/batterylow:state:MAP(battery.map)]"}
```You need a `battery.map` file:
```
true=ON
false=OFF
NULL=OFF
```## Sample for EC3K
```
Number ec3k1Power "ec3k 1 power" { mqtt="<[mosquitto:home/ec3k/0E3D/currentpower:state:default]" }
Number ec3k1Max "ec3k 1 max" { mqtt="<[mosquitto:home/ec3k/0E3D/maxpower:state:default]" }
Number ec3k1EnergyTotal "ec3k 1 total" { mqtt="<[mosquitto:home/ec3k/0E3D/energy:state:default]" }
```