wimleers / esp8266-arduino-ebus

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

esp8266-arduino-ebus

Warning: Do not power your adapter from a power supply on eBus terminals - you will burn the transmit circuit (receive may still work)!

Quickstart

  • connect adapter to ebus
  • you should see at least one LED on the adapter shining (v4.0+) - if not, switch eBus wires
  • search for WiFi networks, you should see network with name "esp-eBus"
  • connect to the network - a configuration page should open automatically
  • configure your WiFi network settings (SSID, password)
  • after reboot, you should be able to run ping esp-ebus.local successfully from a computer in your network (if your network is correctly configured for mDNS)
  • LED D1 blinking indicates activity on the bus. If it is still on or off, you need to adjust ebus level using trimer RV1:
    • turn the trimmer counterclockwise until you find the position between D1 blinking and still on
    • turn the trimmer clockwise until you find the position between D1 blinking and still off
    • count the turns between these positions and set the trimmer in the middle position with D1 blinking
  • the adapter listens on two TCP ports (from HW rev v3.0):
    • 3333 - on this port you can both read and write to the eBus - the blue led will shine when TX pin is enabled
    • 3334 - listen only port - everything sent to this port will be ignored and the adapters TX pin is physically isolated (TX-DISABLE)
  • to verify there are bytes being received by the adapter connect to esp-ebus.local port 3334 using telnet - you should see unreadable binary data
  • if you are using ebusd, you can configure it use adapter by following parameters: -d esp-ebus.local:3333
  • if you are going to transmit to ebus, I also recommend to increase latency limit to, e.g.: --latency=200000

Troubleshooting

The adapter seems dead, no LED shines or blinks.

The ebus wires are reversed, try switching the wires. Don't worry, it has a protection against reversing.

The ebus logs shows [bus error] device status: unexpected enhanced byte 2

You have set protocol to enhanced by specifying the device as -d enh:IP/name:port. You need to remove the enh: portion and set it to -d IP/name:port

I often see messages like: ERR: arbitration lost, signal lost, signal acquired

It's possible that the adapter has a poor WiFi reception so it has to resend messages and the latency increases. Try to improve the signal by moving the adapter closer to the WiFi AP. You can also try to increase the ebusd latency parameter to e.g. --latency=200000.

The adapter is loosing connectivity, breaking other ebus components communication, D7 is blinking, WiFi is disappearing after connecting, devices on the bus show error status or other intermittent failures.

It's possible that ebus doesn't have enough power to supply the adapter together with all other connected devices. You can try powering the adapter from an external power supply through pins TP2 (+) and TP3 (-). Use adapter with 24V DC output. If you cut JP1 (v4.1+), you can use any adapter with voltage from 5V to 24V.

Nothing helps. I need support.

Run ebusd with --lograwdata=data --latency=2000 --log=all:debug. Then save the log, open an issue here, describe the problem and attach the log. I'll try to help you.

Config reset

  • disconnect device from bus
  • connect TX-DISABLE (previously ESP-RX) and GND pins using a wire
  • connect device to bus
  • wait 5 seconds
  • disconnect the wire

Upgrading

There are following options:

  • over the network (OTA)
  • physically using a USB-TTL adaptor

web interface

  • reset device to access config portal
  • connect to the esp-eBus WiFi network
  • click blue Update button
  • upload firmware.bin file
  • click red Update button
  • wait for restart, reconnect to adapter and configure WiFi

platform.io

  • clone this repository using git
  • pip3 install platformio
  • inside the project folder run:
pio run -e esp12e-ota -t upload

espota.py

$ python3 espota.py -i esp-ebus.local -f firmware.bin -r -d
16:33:23 [DEBUG]: Options: {'esp_ip': 'esp-ebus.local', 'host_ip': '0.0.0.0', 'esp_port': 8266, 'host_port': 47056, 'auth': '', 'image': 'firmware.bin', 'spiffs': False, 'debug': True, 'progress': True}
16:33:23 [INFO]: Starting on 0.0.0.0:47056
16:33:23 [INFO]: Upload size: 380320
16:33:23 [INFO]: Sending invitation to: esp-ebus.local
16:33:23 [INFO]: Waiting for device...
Uploading: [============================================================] 100% Done...

16:33:30 [INFO]: Waiting for result...
16:33:31 [INFO]: Result: OK

upgrading using USB-TTL adaptor

You will need an USB-TTL adaptor (dongle) which suports 3V3 voltage levels and has 3V3 voltage output pin

About


Languages

Language:C++ 98.3%Language:Shell 1.7%