From 355b856f5096a82f94db9a6cf42ea26c774d02e2 Mon Sep 17 00:00:00 2001 From: divadiow <62958974+divadiow@users.noreply.github.com> Date: Mon, 8 Apr 2024 10:49:09 +0100 Subject: [PATCH] update supported chips list on OBK about page + more modules to release info (#1171) * update supported chips list on OBK about page * forgot Belon * correct spelling in drv_bp1658cj.h in comments only * update release notice supported chips and modules * add BL602 modules * add w600 module * add more modules --- .releaserc.yaml | 15 +++++++++------ src/driver/drv_bp1658cj.h | 4 ++-- src/httpserver/http_fns.c | 2 +- 3 files changed, 12 insertions(+), 9 deletions(-) diff --git a/.releaserc.yaml b/.releaserc.yaml index 051d357fc..691718645 100644 --- a/.releaserc.yaml +++ b/.releaserc.yaml @@ -75,13 +75,16 @@ generateNotes: 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 + - BK7231T (WB3S, WB2S, WB2L etc) + - BK7231N (CB2S, CB2L, WB2L_M1 etc) + - T34 (based on BK7231N) + - BL2028N (based on BK7231N) + - XR809 (XR3 etc) + - BL602 (DT-BL200, SM-028_V1.3 etc) + - LF686 (based on BL602) - W800 (W800-C400, WinnerMicro WiFi & Bluetooth), W801 - - W600 + - W600 (TW-01, TW-02, TW-03 etc), W601 (WIS600, ESP-01W etc) + - LN882H (LN-02, WL2S, WL2H etc) footerPartial: | {{#if noteGroups}} diff --git a/src/driver/drv_bp1658cj.h b/src/driver/drv_bp1658cj.h index 42f758d16..3087710a2 100644 --- a/src/driver/drv_bp1658cj.h +++ b/src/driver/drv_bp1658cj.h @@ -1,9 +1,9 @@ // Thx to the work of https://github.com/arendst (Tasmota) for making the initial version of the driver -// This implemantation is heavily based on the BP5758D implemantation by openshwprojects +// This implementation is heavily based on the BP5758D implementation by openshwprojects // Sadly I couldn't find any datasheet of this ic, so I sniffed the i2c protocol with a logic analyser -// I've been testing the implemantation for a week now and it seems to be working without any issues. +// I've been testing the implementation for a week now and it seems to be working without any issues. #define BP1658CJ_ADDR_OUT 0xB0 #define BP1658CJ_ADDR_SLEEP 0x80 // When this command + the subadress and 00 for every channel is send, the device goes to sleep. --> was send by original firmware diff --git a/src/httpserver/http_fns.c b/src/httpserver/http_fns.c index 01a4d9d62..718ee39fa 100644 --- a/src/httpserver/http_fns.c +++ b/src/httpserver/http_fns.c @@ -928,7 +928,7 @@ typedef enum { int http_fn_about(http_request_t* request) { http_setup(request, httpMimeTypeHTML); http_html_start(request, "About"); - poststr_h2(request, "Open source firmware for BK7231N, BK7231T, XR809 and BL602 by OpenSHWProjects"); + poststr_h2(request, "Open source firmware for BK7231N, BK7231T, T34, BL2028N, XR809, W600/W601, W800/W801, BL602, LF686 and LN882H by OpenSHWProjects"); poststr(request, htmlFooterReturnToMainPage); http_html_end(request); poststr(request, NULL);