GithubHelp home page GithubHelp logo

livello / lighthub Goto Github PK

View Code? Open in Web Editor NEW

This project forked from anklimov/lighthub

0.0 2.0 0.0 19.77 MB

Flexible, Arduino Mega/Due/ESP8266 based SmartHome controller with DMX-512 in/out, 1-Wire, Modbus, MQTT interfaces. Openhab compatible.

License: Apache License 2.0

C++ 92.11% C 7.27% Shell 0.63%

lighthub's Introduction

LightHub

is Flexible, Arduino-Mega/Arduino DUE/ESP8266 open-software and open-hardware SmartHome controller. RU HOME-site RU It may operate both:

  • On especially designed hardware board with 16 optocoupled digital inputs, 16 ESD protected digital/analog Inputs/outputs, 8 open-collector outputs (up to 0.5A/50V), DMX IN/OUT, MODBUS RTU and hardware 1-wire support circuit.
  • On plain Arduino MEGA 2560, Arduino DUE, ESP8266 and even on Controllino (Controllino and ESP8266 is not tested enough and in experimental stage yet)

Lighthub allows connecting together:

  • Contact sensors (switches, buttons etc)
  • 1-Wire temperature sensors (up to 20 on single bus)
  • Standard nonexpensive Relay board with TTL inputs, like this to control AC powered lamps, floor heaters, boilers etc
  • Standard nonexpensive LED dimmers and AC DMX-512 dimmers
  • Modbus RTU devices (Currently, are deployed two types of Modbus devices: AC Dimmer and Ventilation set (Based on Vacon 10 controller)
  • Simple DMX wall sensor panel like this

alt text

Where is possible both, to configure local control/mapping between inputs and outputs (light, floor heating thermostats) and remote control from MQTT enabled software. At the moment, LightHub tested with following set of complementary free software:

  • Openhab or Openhab2 Smarthome software Openhab provides own native mobile app both, for IoS and Android, and even allow you to use Apple's HomeKit to say "Siri, turn on light in bedroom" but requires some server to be installed (Raspberry PI with Openhabian will good enough)
  • HomeRemote mobile client Home Remote mobile applicatios for IoS and Android requires just MQTT broker to be working. Any Cloud-based MQTT broker, like CloudMQTT will enough to serve average household, even with free account.
  • Node-Red Possibly, the best solution to deploy event-based authomation and scripting on top of MQTT/LightHub. The easy to use universal and visual tool to wire many different devices in single system. Having own Dashbord which allow control from web/mobile web, even without mobile apps (but excelent co-working with OpenHab and HomeRemote)

Scalability of Lighthub is virtually unlimited: Setup so many controllers you needed in most convenient places of your house - MQTT broker will allow controllers communicate each other and with Openhab/NodeRed/HomeRemote and propagate commands across network.

Finished portation of project to Arduino DUE and ESP8266 (ESP32 not tested).

Compiled image has been added to compiled/ folder. Flash your Mega 2560

avrdude  -v -V -patmega2560 -cwiring -b115200 -D -Uflash:w:firmware.hex:i

or flash your DUE (need to correct path and port, of course)

/Users/<user>/Library/Arduino15/packages/arduino/tools/bossac/1.6.1-arduino/bossac -i -d --port=cu.usbmodem1451 -U false -e -w -v -b firmware.bin -R

Note: binary images usually not up-to-date with recent code. The preferred way, to compile and upload firmware to your controller.

Dependencies

(quite big number of libs required. Use git clone to have your local copy in your Arduino libs folder) Please check updates for all dependences.

For patched libraries, appropriate GitHub repo URL provided:

Portation from AVR Mega 2560 to SAM3X8E (Arduino DUE) done since v 0.96 and tested against Wiznet 5100 Ethernet shield and Wiznet 5500 Ethernet module

Platforms specific details:

AVR version is basic, long tome in production and have all functions *DMX-out is software (DMXSimple) on pin3

SAM3X8E: (Tested. Recomended hardware at current moment)

  • default PWM frequency
  • both, DMX-in and DMX-out are hardware USART based. Use USART1 (pins 18 and 19) for DMX-out and DMX-in

ESP8266: (Developed but not tested in production)

  • DMX-OUT on USART1 TX
  • DMX-IN - not possible to deploy in ESP8266
  • Modbus - disabled. Might be configured in future on USART0 instead CLI/DEBUG

since v. 0.97: Mega and DUE: Need to use compiler directive -D Wiz5500 and https://github.com/anklimov/Ethernet2 library to compile with Wiznet 5500 instead 5100

Prefered way to compile project is using platformio toolchain, suitable for Arduino Due, and Arduino Mega2560

Due compilation issue "USART0_Handler redefinition"

Please, open /variants/arduino_due_x/variant.cpp file, then add USART0_Handler method definition like this void USART0_Handler(void) attribute((weak));

The normal path to find this file in platformio is: .platformio/packages/framework-arduinosam/variants/arduino_due_x

Platformio command line build instructions

First of all install platformio framework. Good tutorial for fast start in RUSSIAN.

In linux\OSX you can open terminal, navigate to your programming directory, then

 git clone https://github.com/anklimov/lighthub.git
 cd lighthub

now prepare project files for your IDE

pio init --ide [atom|clion|codeblocks|eclipse|emacs|netbeans|qtcreator|sublimetext|vim|visualstudio|vscode]

Set custom build flags. first make your own copy of template

cp build_flags_template.sh my_build_flags.sh

then edit, change or comment unnecessary sections and source it

nano my_build_flags.sh
source my_build_flags.sh

build and upload firmware for due|megaatmega2560|esp8266 board

pio run -e due|megaatmega2560|esp8266 -t upload

Clean pio libraries folder. Try it if you have compilation problem:

rm -Rf .piolibdeps

open COM-port monitor with specified baud rate

platformio device monitor -b 115200

Custom build flags

  • MY_CONFIG_SERVER=192.168.1.1 // address of external JSON-config http://192.168.1.1/de-ad-be-ef-fe-00.config.json
  • WATCH_DOG_TICKER_DISABLE //disable wdt feature
  • USE_1W_PIN=49 // use direct connection to 1W devices on 49 pin, no I2C bridge DS2482-100
  • SD_CARD_INSERTED // enable sd-card support and fix lan starting
  • SERIAL_BAUD=115200 // set baud rate for console on Serial0
  • Wiz5500 //Use Wiznet 5500 library instead Wiznet 5100
  • DISABLE_FREERAM_PRINT // disable printing free Ram in bytes
  • CUSTOM_FIRMWARE_MAC=de:ad:be:ef:fe:00 //set firmware macaddress
  • DMX_DISABLE //disable DMX support
  • MODBUS_DISABLE // disable Modbus support
  • OWIRE_DISABLE // disable OneWire support
  • ARTNET_ENABLE //Enable Artnet protocol support
  • CONTROLLINO //Change Modbus port, direction pins and Wiznet SS pins to be working on Controllino

Default compilation behavior:

  • Config server: lazyhome.ru
  • Watchdog enabled
  • 1-Wire communication with DS2482-100 I2C driver
  • No SD
  • Serial speed 115200
  • Wiznet 5100 (for MEGA & DUE)
  • Free Ram printing enabled
  • de:ad:be:ef:fe:00
  • DMX support enabled
  • Modbus support enabled
  • OneWire support enabled
  • Artnet disabled
  • Defailt MQTT input topic: /myhome/in
  • Default MQTT topic to publish device status: /myhome/s_out
  • Default Alarm output topic /alarm

If you've using Arduino IDE to compile & flash firmware, it will use Default options above and you will not able to configure additional compilers options except edit "options.h" file

lighthub's People

Contributors

anklimov avatar livello avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.