Skip to content

digiblur/Tasmota

 
 

Repository files navigation

Tasmota - digiDIMv16-4heff Something Something Temporary Fork @ 12.2.0.4

It is recommended to use the standard PWM Dimmer Module built into the stock tasmota.bin release unless you need some functionality contained in the fork below. There are no templates needed on the stock setup or the fork below, it is currently handled by built in modules in Tasmota. Additional information on the PWM Dimmer Module

Precompiled bins supplied in the bins folder of this repo.

NOTE: Once you upgrade to 8.x you will only be able to downgrade to an older version via serial flash.

If you receive a Buffer Miscompare/Not Enough Space error when flashing any bin files do not worry, the fix is easy. All this means is you do not have enough free space on the flash. You need to flash Tasmota-lite.bin first, then flash the bin for this fork. You could also try the gzip versions if your base of Tasmota is recent enough to accept gzip'd files.

Changes

  • Dimming status sent at all power state changes
  • Power topic updated if a dimming change causes the power state to change
  • Martin Jerry SD-01 (02,03) Dimmer support
  • digiDIMv(X) indicated in the information tab for support purposes

I personally use this build on Tuya based dimmers and the Martin Jerry SD-01 Dimmer in our home with Home Assistant. Shown here

Martin Jerry SD-01 Dimmer

Tessan SD-02 Dimmer

NTONPOWER Dimmer

Martin Jerry SD-01 & Tessan SD-02 & Acenx SD-03 & NTONPOWER Dimmer Setup

Manual Flashing(Soldering Method)

Unplug the faceplate from the rear dimming module until you are ready to connect it to mains power! Do not connect the USB flasher to the faceplate while mains power is applied to the unit! The magic smoke will come out or worse!

If you do not like to solder, you can use dupont jumpers in the hole as show in this blog post or you can also use a TYWES3 pogo pin jig as shown in this blog post/video

Solder the wires for flashing like you normally would for a Tuya module flash as shown here . You do not need to solder GPIO 0 as the UP button is also GPIO 0, simply hold this button up during boot. Use the latest bin file provided in this folder.

Tuya-Convert (OTA Method)

The device should be in pairing mode (fast blink) upon applying power to the switch. Follow the standard Tuya-Convert process. After the dimmer is on the network, download the latest latest bin file provided in this folder to a folder on your computer. Use the Firmware Upgrade button on the Tasmota GUI and browse to the bin file that was just downloaded. If you receive a upload buffer miscompare error while uploading, this means you do not have enough flash space available on the dimmer. To correct the issue, flash the tasmota-lite bin through the Tasmota GUI. Then flash the digiDIM bin file.

Setup

The 12.2.0.4 v16 version now includes all the settings below during a factory reset, reset 5, etc.

Once you have the device connected to your WiFi please setup your MQTT tab information. Go to the Console and issue the following command:

module 72

This changes the Module Type to MJ-SD01 Dimmer. Let the device reboot and issue the following backlog on the console. Make sure every command takes effect:

backlog rule1 on switch3#state=2 do dimmer + endon on switch2#state=2 do dimmer - endon on switch2#state=3 do dimmer 20 endon on switch3#state=3 do dimmer 100 endon; rule1 1; ledtable 0; setoption32 8; setoption68 0; switchmode1 6; switchmode2 5; switchmode3 5

Once the switch reboots. Issue a switchmode3 command and make sure it comes back as a setting of "5". This will verify all of the above backlog commands went through correctly. If you do not see switchmode3 set to 5, you can issue each of the backlog commands separately one at a time and watch them go through.

In the rule1 you can change the "do dimmer 20" section to any value you like, a long press of down will set dimmer to 20%, a long press up will set the dimmer to 100%. Modify these to your needs.

Optional Rule for ON/OFF long press to send an MQTT toggle message to another switch/topic (example):

rule2 on switch1#state=3 do publish Table-Dimmer/Main TOGGLE endon 
rule2 1

NOTE: In the future, when you are preparing to flash a stock build of Tasmota to the MJ-SD01 Dimmer, select the Generic template first before flashing to prevent a possible conflict with another device template.

BONUS: Want the Red LED on while the light is off? Run this rule:

Rule3 on power1#state=1 do ledpower 0 endon on power1#state=0 do ledpower 1 endon on power1#boot=1 do ledpower 0 endon on power1#boot=0 do ledpower 1 endon
Rule3 1

Home Assistant Tasmota Integration

Verify you set a Device Name and FriendlyName in the Configure Other section of Tasmota. You can set them the same if you like, such as "Kitchen Light". Install and/or open the Tasmota Integration in Home Assistant. It is that simple!

Sample Manual Configuration YAML Code

- platform: mqtt
  name: "TuyaTest"
  state_topic: "stat/TuyaTest/POWER"
  command_topic: "cmnd/TuyaTest/POWER"
  availability_topic: "tele/TuyaTest/LWT"
  brightness_state_topic: "stat/TuyaTest/RESULT"
  brightness_command_topic: "cmnd/TuyaTest/Dimmer"
  brightness_scale: 100
  brightness_value_template: "{{ value_json.Dimmer }}"
  qos: 1
  payload_on: "ON"
  payload_off: "OFF"
  payload_available: "Online"
  payload_not_available: "Offline"
  retain: false

MultiPress Button Template

If you want to use the setoption73 1 multipress feature with the dimmer to have 6 actions per button you can use this template. This is more of an advanced user setup as you'll need to assign your various rules to all the button press states as needed. For more info check out this video

{"NAME":"digiDIM Buttons","GPIO":[19,18,255,0,56,0,0,0,0,37,0,122,0],"FLAG":0,"BASE":72}

About

Provide ESP8266 based itead Sonoff with Web, MQTT and OTA firmware using Arduino IDE or PlatformIO

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C 69.4%
  • C++ 25.7%
  • HTML 3.3%
  • Berry 0.7%
  • Python 0.6%
  • Makefile 0.2%
  • Other 0.1%