Skip to content

Commit

Permalink
update supported chips list on OBK about page + more modules to relea…
Browse files Browse the repository at this point in the history
…se 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
  • Loading branch information
divadiow authored Apr 8, 2024
1 parent 9391d53 commit 355b856
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 9 deletions.
15 changes: 9 additions & 6 deletions .releaserc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <code>OpenBK7231T_App</code>, 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}}
Expand Down
4 changes: 2 additions & 2 deletions src/driver/drv_bp1658cj.h
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/httpserver/http_fns.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 355b856

Please sign in to comment.