mirror of
https://github.com/openshwprojects/OpenBK7231T_App.git
synced 2026-02-05 06:45:40 +00:00
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
This commit is contained in:
@ -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}}
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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);
|
||||
|
||||
Reference in New Issue
Block a user