RobotDynOfficial / RBDDimmer

The following library is used for work with dimmer, it gives ability to control large ammoun of dimmer. This lib uses with Leonardo, Mega, UNO, ESP8266, ESP32, Arduino M0, Arduino Zero, Arduino Due, STM32.
227 stars 104 forks source link

Please Fix the ESP portion of this Lib . #45

Open 9ghost9 opened 3 years ago

9ghost9 commented 3 years ago

I have added Change to the ISR ability and corrected what others have already suggested .

It is frustrating to purchase RobotDyn products only to have the firmware not function .

Here is the fixed Lib completed that will remove ESP flashing frustration and also enable reasonable AC LED control .

https://drive.google.com/file/d/13wZMFQneHm8znYDxutUyMGcZuyUESraV/view?usp=sharing

RBDmcuESP8266.cpp

line: 9 int rise_fall_change = true; // added change line: 61 attachInterrupt(inPin, isr_ext,CHANGE); // set to CHANGE and works with incans or leds.

Note; From my testing and experience with the Robotdyn AC module , by adding a parallel load to Led fixtures the top end percentage is not clipped at 80% but works correctly through to 100%

Thank you

Here is code for a Web Server to test on your Esp + AC device

``#include

include

include

include //

// Replace with your network credentials const char ssid = "hAPP dAYS"; //REPLACE_WITH_YOUR_SSID const char password = "WORDPASS"; //REPLACE_WITH_YOUR_PASSWORD

//const int output = 2;

define outputPin D6 // Set to your Gpio liking

define zerocross D1 // for boards with CHANGEBLE input pins

dimmerLamp dimmer(outputPin, zerocross); //initialase port for dimmer for ESP8266, ESP32, Arduino due boards

String sliderValue = "0";

const char* PARAM_INPUT = "value";

// Create AsyncWebServer object on port 80 AsyncWebServer server(80);

const char index_html[] PROGMEM = R"rawliteral( <!DOCTYPE HTML>

ESP Web Server

ESP Web Server

%SLIDERVALUE%

)rawliteral";

// Replaces placeholder with button section in your web page String processor(const String& var){ //Serial.println(var); if (var == "SLIDERVALUE"){ return sliderValue; } return String(); }

void setup(){ // Serial port for debugging purposes Serial.begin(115200);

//analogWrite(output, sliderValue.toInt());

// Connect to Wi-Fi WiFi.begin(ssid, password); while (WiFi.status() != WL_CONNECTED) { delay(1000); Serial.println("Connecting to WiFi.."); } dimmer.begin(NORMAL_MODE, ON); //dimmer initialisation: name.begin(MODE, STATE)

// Print ESP Local IP Address Serial.println(WiFi.localIP());

// Route for root / web page server.on("/", HTTP_GET, [](AsyncWebServerRequest *request){ request->send_P(200, "text/html", index_html, processor); });

// Send a GET request to /slider?value= server.on("/slider", HTTP_GET, [] (AsyncWebServerRequest *request) { String inputMessage; // GET input1 value on /slider?value= if (request->hasParam(PARAM_INPUT)) { inputMessage = request->getParam(PARAM_INPUT)->value(); sliderValue = inputMessage; //analogWrite(output, sliderValue.toInt()); dimmer.setPower(sliderValue.toInt()); // setPower(0-100%);

}
else {
  inputMessage = "No message sent";
}
Serial.println(inputMessage);
request->send(200, "text/plain", "OK");

});

// Start server server.begin(); }

void loop() {

}``

canDry commented 2 years ago

It is frustrating to purchase RobotDyn products

This. So damn frustrating.

THANK YOU ... got it working on ESP8266 with YOUR updated library!

9ghost9 commented 2 years ago

It is frustrating to purchase RobotDyn products

This. So damn frustrating.

THANK YOU ... got it working on ESP8266 with YOUR updated library!

hi Here is much better code , you will need the hw_timer.lib . Find it here-> https://github.com/Theb-1/ESP8266-wifi-light-dimmer

This is AP also . :} enjoy !

`// Import required libraries

include

include

include

include

// network credentials const char ssid = "AP"; // ACCESS POINT const char password = ""; //ENTER PASSWORD IF DESIRED

const byte zcPin = D1; const byte pwmPin = D6;

byte fade = 1; byte state = 1; byte tarBrightness = 255; byte curBrightness = 0; byte zcState = 0; // 0 = ready; 1 = processing; void ICACHE_RAM_ATTR zcDetectISR (); void ICACHE_RAM_ATTR dimTimerISR ();

String sliderValue = "0";

const char* PARAM_INPUT = "value";

// Create AsyncWebServer object on port 80 AsyncWebServer server(80);

const char index_html[] PROGMEM = R"rawliteral( <!DOCTYPE HTML>

ESP Web Server

ESP Web Server

%SLIDERVALUE%

)rawliteral";

// Replaces placeholder with button section in your web page String processor(const String& var){ //Serial.println(var); if (var == "SLIDERVALUE"){ return sliderValue; } return String(); }

void setup(){ // Serial port for debugging purposes Serial.begin(115200);

WiFi.softAP(ssid, password); IPAddress IP = WiFi.softAPIP();//

pinMode(zcPin, INPUT_PULLUP); pinMode(pwmPin, OUTPUT); attachInterrupt(zcPin, zcDetectISR, RISING); // Attach an Interupt to Pin (interupt 0) for Zero Cross Detection hw_timer_init(NMI_SOURCE, 0); hw_timer_set_func(dimTimerISR);

// Route for root / web page server.on("/", HTTP_GET, [](AsyncWebServerRequest *request){ request->send_P(200, "text/html", index_html, processor); });

// Send a GET request to /slider?value= server.on("/slider", HTTP_GET, [] (AsyncWebServerRequest *request) { String inputMessage; // GET input1 value on /slider?value= if (request->hasParam(PARAM_INPUT)) { inputMessage = request->getParam(PARAM_INPUT)->value(); sliderValue = inputMessage;

}
else {
  inputMessage = "No message sent";
}
Serial.println(inputMessage);
request->send(200, "text/plain", "OK");

});

// Start server server.begin(); }

void loop() { int val; val = sliderValue.toInt(); if (val > 0){ tarBrightness = val; } }

void dimTimerISR() { if (fade == 1) { if (curBrightness > tarBrightness || (state == 0 && curBrightness > 0)) { --curBrightness ; } else if (curBrightness < tarBrightness && state == 1 && curBrightness < 255) { ++curBrightness; } } else { if (state == 1) { curBrightness = tarBrightness; } else { curBrightness = 0; } }

if (curBrightness == 0) { state = 0; digitalWrite(pwmPin, 0); } else if (curBrightness == 255) { state = 1; digitalWrite(pwmPin, 1); } else { digitalWrite(pwmPin, 1); }

zcState = 0; }

void zcDetectISR() { if (zcState == 0) { zcState = 1;

if (curBrightness < 255 && curBrightness > 0) { digitalWrite(pwmPin, 0);

int dimDelay = 29 * (255 - curBrightness) + 400;//400 hw_timer_arm(dimDelay); } } }`

canDry commented 2 years ago

It is frustrating to purchase RobotDyn products

This. So damn frustrating. THANK YOU ... got it working on ESP8266 with YOUR updated library!

hi Here is much better code , you will need the hw_timer.lib . Find it here-> https://github.com/Theb-1/ESP8266-wifi-light-dimmer

THANK YOU again! Works great on an esp8266, and doesn't need RobotDyn's library. 😁

Any chance you have one that works for ESP32? This (esp8266) version requires "ets_sys.h which isn't found for ESP32. I found an ESP32 timer library (hal_timer e.g. https://desire.giesecke.tk/index.php/2018/04/22/using-the-hw-timers-of-the-esp32/) but haven't had luck in using it for dimmer timing.

9ghost9 commented 2 years ago

I had not considered AC dimming with the Esp32 but I will take a look at it when I have some free time. I have found the Wemos mini pro with external antenna to be excellent for this task combined with the RobotDyn Wemos shield. RobotDyn customer service is very poor in regards to their shield and is why I dumped their .lib for the hw_timer.

9ghost9 commented 2 years ago

It is frustrating to purchase RobotDyn products

This. So damn frustrating. THANK YOU ... got it working on ESP8266 with YOUR updated library!

hi Here is much better code , you will need the hw_timer.lib . Find it here-> https://github.com/Theb-1/ESP8266-wifi-light-dimmer

THANK YOU again! Works great on an esp8266, and doesn't need RobotDyn's library.

Any chance you have one that works for ESP32? This (esp8266) version requires "ets_sys.h which isn't found for ESP32. I found an ESP32 timer library (hal_timer e.g. https://desire.giesecke.tk/index.php/2018/04/22/using-the-hw-timers-of-the-esp32/) but haven't had luck in using it for dimmer timing.

So ,some good news , I went ahead and built an AC dimmer that is controllable with any Arduino board or ESP module . . It does not use isr's but rather uses analogWrite and in the case of ESP32 LedcWrite for direct PWM control .

A very simple circuit to build as DIY ! Will probably need to go via PM from here if you need any more advice .

unaipuelles commented 2 years ago

Hi,

Anyone knows if can be used with the board of Arduino Uno Wifi Rev2 that has the chip Atmega4809. I try to compile the library for this board and I can't. I also searched for other dimming modules and I can't find anything for this board.

Thank you!

PD: This message has nothing in common with this issue but I don't know where to ask this because the maintainers of this repo don't respond anymore.

homonto commented 2 years ago

hi there, is there any progress with making this library working on ESP32? thx

Alan-Somebody commented 2 years ago

It is frustrating to purchase RobotDyn products

This. So damn frustrating. THANK YOU ... got it working on ESP8266 with YOUR updated library!

hi Here is much better code , you will need the hw_timer.lib . Find it here-> https://github.com/Theb-1/ESP8266-wifi-light-dimmer

THANK YOU again! Works great on an esp8266, and doesn't need RobotDyn's library. Any chance you have one that works for ESP32? This (esp8266) version requires "ets_sys.h which isn't found for ESP32. I found an ESP32 timer library (hal_timer e.g. https://desire.giesecke.tk/index.php/2018/04/22/using-the-hw-timers-of-the-esp32/) but haven't had luck in using it for dimmer timing.

So ,some good news , I went ahead and built an AC dimmer that is controllable with any Arduino board or ESP module . . It does not use isr's but rather uses analogWrite and in the case of ESP32 LedcWrite for direct PWM control .

A very simple circuit to build as DIY ! Will probably need to go via PM from here if you need any more advice .

@9ghost9 , sadly I can't see a way to PM you in here. were you able to get this to work on an ESP32 by any chance? I just bought their 16A/600V dimmer and very disappointed that I can't get it to work on my 'ESP32 Dev C' unit & that RobotDyn don't offer any working software or help!

9ghost9 commented 2 years ago

Hi

It is frustrating to purchase RobotDyn products

This. So damn frustrating. THANK YOU ... got it working on ESP8266 with YOUR updated library!

hi Here is much better code , you will need the hw_timer.lib . Find it here-> https://github.com/Theb-1/ESP8266-wifi-light-dimmer

THANK YOU again! Works great on an esp8266, and doesn't need RobotDyn's library. Any chance you have one that works for ESP32? This (esp8266) version requires "ets_sys.h which isn't found for ESP32. I found an ESP32 timer library (hal_timer e.g. https://desire.giesecke.tk/index.php/2018/04/22/using-the-hw-timers-of-the-esp32/) but haven't had luck in using it for dimmer timing.

So ,some good news , I went ahead and built an AC dimmer that is controllable with any Arduino board or ESP module . . It does not use isr's but rather uses analogWrite and in the case of ESP32 LedcWrite for direct PWM control . A very simple circuit to build as DIY ! Will probably need to go via PM from here if you need any more advice .

@9ghost9 , sadly I can't see a way to PM you in here. were you able to get this to work on an ESP32 by any chance? I just bought their 16A/600V dimmer and very disappointed that I can't get it to work on my 'ESP32 Dev C' unit & that RobotDyn don't offer any working software or help!

Hi Alan Yes I have AC dimming via ESP32 , but not with these Robo-modules.

I built this circuit -> https://www.youtube.com/watch?v=XdCvJ1wZ0bA

This works perfectly with LedcWrite. PWM and a frequency of 1k - 5 k .

Alan-Somebody commented 2 years ago

Thank you very much @9ghost9 for replying and for the link. I will take a look.

9ghost9 commented 2 years ago

There are a few cautions with this circuit . The load line is constant /always live and L & N need to be wired correctly or short circuit will occur .

9ghost9 commented 2 years ago

hi there, is there any progress with making this library working on ESP32? thx

Have you tried this link ? https://github.com/RobotDynOfficial/Lib-RBD-Dimmer-for-ESP32/tree/master/RBDdimmerESP32

Alan-Somebody commented 2 years ago

Hi @9ghost9 . I did try the link yes. The code compiles when I tell the Arduino IDE that I am using an Arduino Uno, but the code fails when I tell it I am using the ESP32.

9ghost9 commented 2 years ago

You need to install the RBDdimmerESP32 lib and install in your Arduino/library.

https://github.com/RobotDynOfficial/Lib-RBD-Dimmer-for-ESP32

I just tried and it compiles fine for Esp32 .

Sketch uses 208513 bytes (15%) of program storage space. Maximum is 1310720 bytes

coolstuff99 commented 1 year ago

It compiles but @9ghost9 did you get it working? I mean, I know code works because added a println in the main and returns from the serial monitor but no way to get bulb on, neither dimmable :(

9ghost9 commented 1 year ago

I gave up on RBD for the ESP modules . I built the circuit from this demonstration video and am able to control AC & DC elements/fixtures with PWM .

This has perfect dimming from 0 -> 255

https://www.youtube.com/watch?v=XdCvJ1wZ0bA