Git Product home page Git Product logo

espblinds's Introduction

ESPBlinds - Wifi Controlled Roller Blinds

STLs are available in the files folder in this repo, and on thingiverse at: https://www.thingiverse.com/thing:5321952

Arduino Program

This Repo contains the Arduino program used to run the ESP-8266 controller.

The code has been tested on Arduino IDE v1.8.19 on Linux and Mac, if you have issues compiling please try using this version of the Arduino IDE.

Constants file

IMPORTANT: You need to create constants.h

Copy-paste the file constants.example.h to constants.h and fill update at minimum the following variables:

  • WIFI_SSID
  • WIFI_PASSWORD
  • MQTT_SERVER
  • MQTT_USER
  • MQTT_PASSWORD

All MQTT topics are also defined in constants.h, feel free to customise these if you prefer different topic naming.

Arduino Libraries

Please ensure the following Arduino Libraries are installed using the Arduino Library Manager:

Compiling for ESP8266

If you are using the ESP-12F modukle as I did, use the following Board settings in Arduino IDE:

  • Board: NodeMCU 1.0 (ESP-12E)
  • Upload Speed: 115200
  • (I left all other settings as the default)

Parts used

...and some generic electronics components, such as 3.3v regulator, capacitors, resistors, and NPN transistors.

See the schematic for full details

Schematic

NOTE The schematic shows the A4988 Stepper Driver, which was from a previous iteration. I am now using the DRV8255 which has a slightly different pinout.

Most notably on the DRV8255, the VDD pin is not present and instead replaced by the FAULT pin (which I am not using), and the RST and SLP pins go to 3.3v rather than being tied to each other.

Mounting instructions

  • First mount the enclosure to the wall. The motor covers one of the screw holes.
  • Mount the stepper motor before adding the main gear - it covers access to 2 of the motor screw holes
  • Then put in the main gear and everything else
  • Then add on the lid!

MQTT Topics

The unit is controlled remotely via MQTT, as I use Home Assistant and the MQTT integration for all my home automation projects.

See constants.example.h for all the available topics - you can also change the topic stings to whatever you want.

The topics are grouped into two types: Control and Non-Control topics. Control topics have control somewhere in the name, and the unit listens to these topics and does something (e.g. moves the blinds) when a message is received on the topic. Non-control topics don't have the word control in the them, and are used to send messages out from the unit to let the world know it's current states and settings.

Control Topics

MQTT_TOPIC_CONTROL_ENABLED

Enables/Disables the Stepper Motor Driver - useful for emergency stopping the motor

Expected Values:

  • 0 - Disable
  • 1 - Enable

MQTT_TOPIC_CONTROL_DIRECTION

Changes the direction of the stepper motor/the direction the blinds will move

Expected Values:

  • 0 - Open/Up
  • 1 - Close/Down

MQTT_TOPIC_CONTROL_STEPFOR

Immediately move the stepper motor X full steps, in the currently set direction (e.g. set via MQTT_TOPIC_CONTROL_DIRECTION).

Expected Value: An integer for the number of steps

MQTT_TOPIC_CONTROL_BLINDS

Tell the blinds to either open or close, for the set number of steps required to complete the journey (e.g. set via MQTT_TOPIC_CONTROL_STEPS_VERTICAL)

Expected Values:

  • opened - Open the blinds
  • closed - Close the blinds

MQTT_TOPIC_CONTROL_MODE_OPEN

Set the stepper mode used during Opening of Blinds (e.g. full step, half step, quarter step, etc)

This value is saved to eeprom, so it will persist if the ESP8266 restarts or looses power

Expected Values:

  • 1 - Full Step Mode
  • 2 - Half Step Mode
  • 4 - Quarter Step Mode
  • 8 - Eighth Step Mode

MQTT_TOPIC_CONTROL_MODE_CLOSE

Set the stepper mode used during Closing of Blinds (e.g. full step, half step, quarter step, etc)

This value is saved to eeprom, so it will persist if the ESP8266 restarts or looses power

Expected Values:

  • 1 - Full Step Mode
  • 2 - Half Step Mode
  • 4 - Quarter Step Mode
  • 8 - Eighth Step Mode

MQTT_TOPIC_CONTROL_DELAY_OPEN

Set the stepper speed used during Opening of Blinds. (Less speed == more torque).

This value is saved to eeprom, so it will persist if the ESP8266 restarts or looses power

Expected Value: An integer for the microseconds between steps

MQTT_TOPIC_CONTROL_DELAY_CLOSE

Set the stepper speed used during Closing of Blinds. (Less speed == more torque).

This value is saved to eeprom, so it will persist if the ESP8266 restarts or looses power

Expected Value: An integer for the microseconds between steps

MQTT_TOPIC_CONTROL_STEPS_VERTICAL

Set the number of steps to take when performing a full open or close cycle (See MQTT_TOPIC_CONTROL_BLINDS)

This value is saved to eeprom, so it will persist if the ESP8266 restarts or looses power

Expected Value: An integer for the number of steps to take

Non-Control Topics

MQTT_TOPIC_STATE

Publishes the current movement state of the blinds

Expected Values:

  • opening
  • opened
  • closing
  • closed

MQTT_TOPIC_STATE

Publishes the current movement state of the blinds

Expected Values:

  • opening
  • opened
  • closing
  • closed

MQTT_TOPIC_STEPS

Publishes the current number of full steps taken (note this is only sent every 250 steps)

Expected Value: Integer

MQTT_TOPIC_ENABLED

Publishes if the stepper motor driver is currently enabled

Expected Values:

  • 0 - Not Enabled
  • 1 - Enabled

MQTT_TOPIC_DIRECTION

Publishes the current stepper motor direction

Expected Values:

  • forwards
  • backwards

MQTT_TOPIC_MODE

Publishes the current stepper motor step mode

Expected Values:

  • 1 - Full Step Mode
  • 2 - Half Step Mode
  • 4 - Quarter Step Mode
  • 8 - Eighth Step Mode

MQTT_TOPIC_STATUS

Publishes the current MQTT connection status

Expected Values:

  • connected - The unit is connected to MQTT
  • disconnected - The unit has disconnected from MQTT (this is sent as an MQTT last-will message, so it is mostly reliable)

MQTT_TOPIC_MODE_OPEN

Publishes the current step mode for the Opening sequence (see MQTT_TOPIC_CONTROL_MODE_OPEN)

Expected Values:

  • 1 - Full Step Mode
  • 2 - Half Step Mode
  • 4 - Quarter Step Mode
  • 8 - Eighth Step Mode

MQTT_TOPIC_MODE_CLOSE

Publishes the current step mode setting for the Closing sequence (see MQTT_TOPIC_CONTROL_MODE_CLOSE)

Expected Values:

  • 1 - Full Step Mode
  • 2 - Half Step Mode
  • 4 - Quarter Step Mode
  • 8 - Eighth Step Mode

MQTT_TOPIC_DELAY_OPEN

Publishes the current step speed setting for the Opening sequence (see MQTT_TOPIC_CONTROL_DELAY_OPEN)

Expected Value: Integer

MQTT_TOPIC_DELAY_CLOSE

Publishes the current step speed setting for the Closing sequence (see MQTT_TOPIC_CONTROL_DELAY_CLOSE)

Expected Value: Integer

MQTT_TOPIC_STEPS_VERTICAL

Publishes the setting for the current number of full steps to take when performing a full open or close cycle (see MQTT_TOPIC_CONTROL_STEPS_VERTICAL)

Expected Value: Integer

Some more pics

Gear

Main gear with ball-chain gear attachment


Ball-Chain attachment

Ball-chain gear attachment (another angle)


Control Board

Control Board (with A4988 instead of DRV8255 stepper driver)


Housing with stepper

Housing with stepper motor and gear installed


Housing with stepper and board

Housing with stepper motorm, gears, and board installed


Housing with stepper and board

Everything ready to go, just need to put the lid on

License

MIT - see LICENSE.md

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.