Skip to content
LuisThe0ne edited this page Aug 16, 2022 · 10 revisions

Introduction

OpenBK7231T/OpenBeken is a Tasmota/Esphome replacement for new Tuya modules featuring MQTT and Home Assistant compatibility. This repository is named "OpenBK7231T_App", but now it's a multiplatform app, supporting build for multiple separate chips:

  • BK7231T (WB3S, WB2S, WB2L, etc)
  • BK7231N (CB2S, CB2L, WB2L_M1, etc)
  • T34 (T34 is based on BK7231N)
  • XR809 (XR3, etc)
  • BL602
  • W800 (W800-C400, WinnerMicro WiFi & Bluetooth), W801

Please use automatically compiled binaries from the Releases tab. To build yourself for a given platform, just checkout first our version of SDK and then checkout this app repository into it, details later.

Features

OpenBeken features:

  • Tasmota-like setup, configuration and experience on all supported platforms
  • OTA firwmare upgrade system (for Beken chips); to use OTA, drag and drop RBL file (always RBL file) on OTA field on new Web App Javascript Console
  • MQTT compatibility with Home Assistant
  • Support for multiple relays, buttons, leds, inputs and PWMs
  • Driver system for custom peripherals, including TuyaMCU, I2C bus and BL0942, BL0937 power metering chips
  • Supports multiple I2C devices, like TC74 temperature sensor, MCP23017 port expander, PCF8574T LCD 2x16 (or other?), etc
  • NTP time from network (can be used with TH06 and other TuyaMCU devices)
  • RGBCW LED lighting control compatible with Home Assistant (both PWM LEDs and SM2135 LEDs)
  • LittleFS integration for large files (resides in OTA memory, so you have to backup it every time you OTA)
  • Command line system for starting and configuring drivers
  • Short startup command (up to 512 characters) storage in flash config, so you can easily init your drivers (eg. BL0942) without LittleFS
  • Simple scripting and events system (allows you to mirror Tasmota rules, for example catch button click, double click, hold)
  • Automatic reconnect when WiFi network goes out
  • and much more
  • can't find what you are looking for? feel free to contribute and develop the feature yourself

Flashing, OTA Updates and Building

BK7231T

For Info see BK7231T

BK7231N

For Info see BK7231N

XR809

For Info see XR809

Building and flashing for BL602

Follow the BL602 guide: https://www.elektroda.com/rtvforum/topic3889041.html

Building for W800/W801

For Info see W100/W101

Testing HTTP server on Windows

It is also possible to build a part of our App for Windows platform. It basically creates a Windows .exe for our HTTP server, so developers can create our configurator, etc, pages faster, without having any Tuya modules at hand. For building on Windows, use MSVC projects in the app directory. It is using Winsock and creates a TCP listening socket on port 80, so make sure your machine has it free to use.

Pin roles

You can set pin roles in "Configure Module" section or use one of predefined templates from "Quick config" subpage, for detailed Explanation see Pin Roles.

Safe mode

Device is counting full boots (full boot is a boot after which device worked for 30 seconds). If you power off and on device multiple times, it will enter open access point mode and safe mode (safe mode means even pin systems are not initialized). Those modes are used to recover devices from bad configs and errors.

Simple TCP command server for scripting

You can enable a simple TCP server in device Generic/Flags option, which will listen by default on port 100. Server can accept single connection at time from Putty in RAW mode (raw TCP connection) and accepts text commands for OpenBeken console. In future, we may add support for multiple connections at time. Server will close connection if client does nothing for some time.

There are some extra short commands for TCP console:

  • GetChannel [index]
  • GetReadings - returns voltage, current and power
  • ShortName the commands above return a single ASCII string as a reply so it's easy to parse.

How to set relay state on device boot? (PowerOnState)

There are two ways.

  1. Go to Config -> Startup state and set it from GUI here.

  2. Use use short startup command from Options or create "autoexec.bat" in LittleFS file system in web panel and execute commands from there.

For example, for RGBCW LED, you can do startup command:

backlog led_dimmer 100; led_basecolor_rgb #FF00FF; led_enableAll 1

For simple relay, in this example on channel number 5, you can do:

backlog SetChannel 5 1

For direct PWM access (for single-color strips etc) you can do:

backlog SetChannel 5 90

Detailed Guides, More Info and Examples

Link

Troubles programming by UART?

I had some reports from users saying that they are unable to flash BK7231T with CP2102 but CH340 works. So, maybe try different USB to UART dongle. Some of them might not be reliable enough for flashing.

Futher reading

For technical insights and generic SDK information related to Bekken and XRadio modules, please refer:

https://www.elektroda.com/rtvforum/topic3850712.html

https://www.elektroda.com/rtvforum/topic3866123.html

https://www.elektroda.com/rtvforum/topic3806769.html

Support project

If you want to support project, please donate at: https://www.paypal.com/paypalme/openshwprojects

Special thanks for Tasmota/Esphome/etc contributors for making a great reference for implementing Tuya module drivers