Search found 46 matches

by dbemowsk
30 Aug 2023, 00:45
Forum: ESP Easy: Projects / Applications
Topic: Using ESPEasy with OctoPrint
Replies: 5
Views: 1992

Re: Using ESPEasy with OctoPrint

I have a number of sonoff basic modules that I have been running for a number of years. They are running a super old version of ESP Easy firmware. Not sure what version. Out of the 8 I have had running I have only had issues with 2 of them. I have 2 each in my light/ceiling fan setups. I recently re...
by dbemowsk
28 Aug 2023, 12:23
Forum: ESP Easy: Projects / Applications
Topic: Using ESPEasy with OctoPrint
Replies: 5
Views: 1992

Re: Using ESPEasy with OctoPrint

Out of curiosity, why would it reboot?
by dbemowsk
28 Aug 2023, 08:19
Forum: ESP Easy: Projects / Applications
Topic: Using ESPEasy with OctoPrint
Replies: 5
Views: 1992

Using ESPEasy with OctoPrint

So I wanted to share this trick I did to solve an issue I had. I wanted to control my 3D printer setups through Octoprint using a Sonoff S31 plug with ESPEasy firmware. In searching for some kind of Plugin to control the PSU of my printer, I noticed that there were plugins for many different types o...
by dbemowsk
13 Aug 2023, 05:44
Forum: ESP Easy: Hardware
Topic: incorrect voltage on a Sonoff S31
Replies: 12
Views: 2028

Re: incorrect voltage on a Sonoff S31

You had asked earlier what build I was running.
Image
by dbemowsk
12 Aug 2023, 23:55
Forum: ESP Easy: Hardware
Topic: incorrect voltage on a Sonoff S31
Replies: 12
Views: 2028

Re: incorrect voltage on a Sonoff S31

So would I call it like this:

V=voltage
I=current
P=power

http://[IP_of_unit]/control?cmd=secalibrate,V,I,P
by dbemowsk
12 Aug 2023, 18:31
Forum: ESP Easy: Hardware
Topic: incorrect voltage on a Sonoff S31
Replies: 12
Views: 2028

Re: incorrect voltage on a Sonoff S31

Thank you. I will look that over and figure it out. Any ideas on a good resistive load to use?
by dbemowsk
12 Aug 2023, 17:24
Forum: ESP Easy: Hardware
Topic: incorrect voltage on a Sonoff S31
Replies: 12
Views: 2028

Re: incorrect voltage on a Sonoff S31

OK, so it appears that the U Ref value keeps changing every so often. You can see here that it is now a negative number. The other numbers stay constant as the I Ref sand P Ref at 16345 and 5362 respectively have not changed from the last screenshots I sent. Only the U Ref has changed. https://dan.b...
by dbemowsk
11 Aug 2023, 01:48
Forum: ESP Easy: Hardware
Topic: incorrect voltage on a Sonoff S31
Replies: 12
Views: 2028

Re: incorrect voltage on a Sonoff S31

Ok, so I cleared those values and saved. This is the values it showed immediately after the save. https://dan.bemowski.info/wp-content/uploads/2023/08/sonoff_s31_clear_1.png After I close out to the devices list and go back to editing the device again, the U Ref stays the same, but the I Ref and P R...
by dbemowsk
10 Aug 2023, 23:45
Forum: ESP Easy: Hardware
Topic: incorrect voltage on a Sonoff S31
Replies: 12
Views: 2028

incorrect voltage on a Sonoff S31

So I just flashed a Sonoff S31 with ESP Easy. When I initally configured the CSE7766 power monitor and was checking the values returned, it was showing around 119 volts. Now the voltage being shown is over 900 volts. Do I have something configured wrong that it is showing that high of a value for vo...
by dbemowsk
04 Aug 2023, 13:00
Forum: ESP Easy: Projects / Applications
Topic: Creating some scene controller switches
Replies: 30
Views: 3716

Re: Creating some scene controller switches

I switched to using all asyncevents and it seems to be working. The only time I could maybe see it being any kind of issue may be if there were a rapid press of keys on the keypad in direct succession, but in large part, that shouldn't happen. I'll see how it goes with it this way and if I experienc...
by dbemowsk
04 Aug 2023, 02:43
Forum: ESP Easy: Projects / Applications
Topic: Creating some scene controller switches
Replies: 30
Views: 3716

Re: Creating some scene controller switches

So this appears to work fine. Is this what you were referring to? On keypad#ScanCode=17 Do asyncevent,"ChangeSwitch=5,0" Endon On keypad#ScanCode=18 Do asyncevent,"ChangeSwitch=5,1" Endon On keypad#ScanCode=33 Do asyncevent,"ChangeSwitch=4,0" Endon On keypad#ScanCode=34...
by dbemowsk
04 Aug 2023, 02:37
Forum: ESP Easy: Projects / Applications
Topic: Creating some scene controller switches
Replies: 30
Views: 3716

Re: Creating some scene controller switches

The use of event was from the rules code suggestion from Ath. Is it just a matter of putting asyncevent instead of event? If that's all it is I will do it right now. Are event and asyncevent handled the same?
by dbemowsk
04 Aug 2023, 01:45
Forum: ESP Easy: Projects / Applications
Topic: Creating some scene controller switches
Replies: 30
Views: 3716

Re: Creating some scene controller switches

So here is my updated rule code that appears to work, for the most part. On keypad#ScanCode=17 Do event,"ChangeSwitch=5,0" Endon On keypad#ScanCode=18 Do event,"ChangeSwitch=5,1" Endon On keypad#ScanCode=33 Do event,"ChangeSwitch=4,0" Endon On keypad#ScanCode=34 Do even...
by dbemowsk
03 Aug 2023, 15:09
Forum: ESP Easy: Projects / Applications
Topic: Creating some scene controller switches
Replies: 30
Views: 3716

Re: Creating some scene controller switches

TD-er Thanks for all the input on this. The logic between the switch and the relay should be the same. I have the switch working with the relay so that when you press the on or off button for a row it changes the state of the LED and also sends the signal to the relay to turn it on or off. The state...
by dbemowsk
03 Aug 2023, 08:30
Forum: ESP Easy: Projects / Applications
Topic: Creating some scene controller switches
Replies: 30
Views: 3716

Re: Creating some scene controller switches

So just a little update on the progress. Since I needed to get a state sent to Home Assistant to indicate the on/off switch states for each row, and since I was using the LEDs as a visual indicator, I set the 4 LEDs up as devices tied to the GPIO pin they are connected to. I configured my MQTT contr...
by dbemowsk
31 Jul 2023, 06:30
Forum: ESP Easy: Projects / Applications
Topic: Creating some scene controller switches
Replies: 30
Views: 3716

Re: Creating some scene controller switches

OK, I played with it a bit and got it figured out. That does change the rules code quite a bit and makes it shorter and more compact. Thank you for all your help. Here is the prototype of the new controller. https://dan.bemowski.info/wp-content/uploads/2023/07/new_switch_controller_side_by_side.png ...
by dbemowsk
31 Jul 2023, 05:02
Forum: ESP Easy: Projects / Applications
Topic: Creating some scene controller switches
Replies: 30
Views: 3716

Re: Creating some scene controller switches

Ath, This is amazing, and a game changer. I didn't know that ESPEasy had point to point UDP communication, much less how to utilize it. I do not have unit numbers configured, but that is now something that I am going to put in my spreadsheet where I am keeping track of the devices I am setting up al...
by dbemowsk
30 Jul 2023, 16:06
Forum: ESP Easy: General Discussion
Topic: Wrong WiFi Password
Replies: 3
Views: 750

Re: Wrong WiFi Password

Thank you, that worked. I found out I had selected the wrong fimware version, but once I was in I was able to do an OTA update to the correct one.

Thank you again
by dbemowsk
30 Jul 2023, 09:43
Forum: ESP Easy: Projects / Applications
Topic: Creating some scene controller switches
Replies: 30
Views: 3716

Re: Creating some scene controller switches

So I have a positive update on my progress with this. I have my keypad connected to the PCF8574, which is then connected to the ESP32-C3 board via I2C on address 0x20. The keypad is a 4x2 matrix. I set the SCL and SDA pins under the hardware tab to be GPIO 6 and 7 respectively. I also have GPIO 6 an...
by dbemowsk
30 Jul 2023, 06:58
Forum: ESP Easy: General Discussion
Topic: Wrong WiFi Password
Replies: 3
Views: 750

Wrong WiFi Password

So I flashed an ESP32-C3 module. After flashing I went to the page where you select your WiFi network and enter your password. I think I entered the wrong password for the WiFi and now it will not connect. When I try to re-flash it, all that happens it the flash tool's console window just show a ser...
by dbemowsk
30 Jul 2023, 01:14
Forum: ESP Easy: Projects / Applications
Topic: Creating some scene controller switches
Replies: 30
Views: 3716

Re: Creating some scene controller switches

I think I got this. I found the github page for the keypad code. https://github.com/letscontrolit/ESPEasy/blob/mega/src/_P061_KeyPad.ino It shows this which I think is mostly what I need. // Connecting KeyPad matrix to PCF8574 chip: // row 0 = GND (optional if 5 rows needed) // row 1 = P0 // row 2 =...
by dbemowsk
30 Jul 2023, 00:10
Forum: ESP Easy: Projects / Applications
Topic: Creating some scene controller switches
Replies: 30
Views: 3716

Re: Creating some scene controller switches

So the PCF8574P chips arrived today. Is there some sort of schematic for wiring these to the keypad and an ESP device for use with ESPEasy?
by dbemowsk
30 Jul 2023, 00:07
Forum: ESP Easy: Hardware
Topic: Flashing a Sonoff DualR3
Replies: 9
Views: 1703

Re: Flashing a Sonoff DualR3

I will do that. I found out how easy it was to do OTA updates, so switching to the energy build sounds easy enough.
by dbemowsk
29 Jul 2023, 16:22
Forum: ESP Easy: Hardware
Topic: Flashing a Sonoff DualR3
Replies: 9
Views: 1703

Re: Flashing a Sonoff DualR3

I wasn't necessarily thinking of connecting any other sensors, I was just wondering really if using the climate build over one of the others would maybe prevent the relays on the R3 from working normally.
by dbemowsk
28 Jul 2023, 23:18
Forum: ESP Easy: Hardware
Topic: Flashing a Sonoff DualR3
Replies: 9
Views: 1703

Re: Flashing a Sonoff DualR3

So what functionality does the climate build give you?
by dbemowsk
28 Jul 2023, 23:17
Forum: ESP Easy: Hardware
Topic: Flashing a Sonoff DualR3
Replies: 9
Views: 1703

Re: Flashing a Sonoff DualR3

As I was looking into this, I noticed that I mistakenly bought the lite versons of these which don't have the energy monitoring on them. They will only do the switching. The next ones I buy I will make sure have that.
by dbemowsk
28 Jul 2023, 05:27
Forum: ESP Easy: Hardware
Topic: Flashing a Sonoff DualR3
Replies: 1
Views: 834

Re: Flashing a Sonoff DualR3

Sorry for the double post. I didn't realize it submitted twice.
by dbemowsk
28 Jul 2023, 05:18
Forum: ESP Easy: Hardware
Topic: Flashing a Sonoff DualR3
Replies: 9
Views: 1703

Flashing a Sonoff DualR3

So I flashed a Sonoff DualR3 tonight with the ESP_Easy_mega_20230623_climate_ESP32_4M316k.factory.bin firmware. I didn't realize it had climate in the name and after booting it and looking at my WiFi network, I was expecting to see some kind of SSID with ESP in the name and I didn't. I saw one named...
by dbemowsk
28 Jul 2023, 05:18
Forum: ESP Easy: Hardware
Topic: Flashing a Sonoff DualR3
Replies: 1
Views: 834

Flashing a Sonoff DualR3

So I flashed a Sonoff DualR3 tonight with the ESP_Easy_mega_20230623_climate_ESP32_4M316k.factory.bin firmware. I didn't realize it had climate in the name and after booting it and looking at my WiFi network, I was expecting to see some kind of SSID with ESP in the name and I didn't. I saw one named...
by dbemowsk
28 Jul 2023, 05:07
Forum: ESP Easy: Projects / Applications
Topic: Creating some scene controller switches
Replies: 30
Views: 3716

Re: Creating some scene controller switches

I ordered a pack of 5 PCF8574P chips that should be here Saturday. I will give them a shot this weekend.
by dbemowsk
24 Jul 2023, 04:31
Forum: ESP Easy: Projects / Applications
Topic: Creating some scene controller switches
Replies: 30
Views: 3716

Re: Creating some scene controller switches

TD-er, When I did this with my MySensors setup using an arduino Pro Mini, there is an actual library for the arduinos. The library accepts row and column inputs which are the 2 contacts of any of the switches. The way I understand it works is that it sends a scrolling scan signal over the row pins a...
by dbemowsk
23 Jul 2023, 22:03
Forum: ESP Easy: Projects / Applications
Topic: Sonoff Dual R3
Replies: 4
Views: 1764

Re: Sonoff Dual R3

Thanks for all that information. I think I am going to get me a couple of these to try out.
by dbemowsk
23 Jul 2023, 21:45
Forum: ESP Easy: Projects / Applications
Topic: Creating some scene controller switches
Replies: 30
Views: 3716

Re: Creating some scene controller switches

I purchased 3 of the Seed Studio ones to try out. They are 18mm x 22mm so very small. I was able to get ESPEasy flashed to one for testing. I currently just have a basic resistor/LED connevted to test MQTT, and it works really well. On many of the other ESP32 modules, the antenna is integrated onto ...
by dbemowsk
23 Jul 2023, 21:39
Forum: ESP Easy: Projects / Applications
Topic: Sonoff Dual R3
Replies: 4
Views: 1764

Re: Sonoff Dual R3

I my current light/ceiling fan setups I have 2 sonoff basics mounted in each and I am looking to switch them to a dual relay that I can have ESPEasy on.
by dbemowsk
23 Jul 2023, 21:19
Forum: ESP Easy: Projects / Applications
Topic: Sonoff Dual R3
Replies: 4
Views: 1764

Sonoff Dual R3

So I was doing some searching in the forum to see if I could find anything on flashing the newer sonoff dual R3. Has anyone done it with one of these yet? Is this even possible? https://www.amazon.com/Sonoff-Metering-Certified-DualR3-Assistant/dp/B091HYC35J/ref=sr_1_2?keywords=sonoff+dualr3&qid=...
by dbemowsk
23 Jul 2023, 21:06
Forum: ESP Easy: Projects / Applications
Topic: Creating some scene controller switches
Replies: 30
Views: 3716

Re: Creating some scene controller switches

I see you mentioned the MCP23017 again. You mention that it is supported by ESPEasy, but to that end, the PCF8574 is also supported. As mentioned though, space, ease of build and price are factors. Not saying that the MCP23017 is expensive, but it's use gets iffy based on it's size if used in a DIP ...
by dbemowsk
23 Jul 2023, 20:30
Forum: ESP Easy: Projects / Applications
Topic: Creating some scene controller switches
Replies: 30
Views: 3716

Re: Creating some scene controller switches

Ath, Thanks for the reply, I was looking at some of those options, but I don't need support for 72 buttons. I am only using 8. As for the LEDs I only need 4.The PCF8574 MIGHT be an option, but I would want it to be a minimalist design. That's why I was thinking of the resistor matrix as a possible o...
by dbemowsk
23 Jul 2023, 19:40
Forum: ESP Easy: Projects / Applications
Topic: Creating some scene controller switches
Replies: 30
Views: 3716

Creating some scene controller switches

I am working on creating some scene controller switches that basically use a 2x4matrix keypad with 4 LEDs and am wondering what the easiest/cheapest approach for this would be. The microcontroller I plan on using is the Seed Studio ESP32 C3 board. For the keypad I thought of creating a resistor netw...
by dbemowsk
13 May 2023, 07:58
Forum: ESP Easy: Projects / Applications
Topic: Looking to redesign some light switches
Replies: 3
Views: 1387

Re: Looking to redesign some light switches

Thanks for the response. The current way I am using the switches I have is that when I push a button on the switch, that communicates down to my Vera Home Controller in the basement, and then the Vera sends the command to the light/fan to turn on or off. I do find it pretty amazing that that whole p...
by dbemowsk
01 May 2023, 00:16
Forum: ESP Easy: General Discussion
Topic: New install not working on Sonoff Basic
Replies: 4
Views: 839

Re: New install not working on Sonoff Basic

OK, I feel so dumb right now. The 192.168.4.100 address was the IP address of my phone while connected to the AP. THe IP of the AP was 192.168.4.1. Once I put that in the browser, I got to the config page. :lol:
by dbemowsk
30 Apr 2023, 23:45
Forum: ESP Easy: General Discussion
Topic: New install not working on Sonoff Basic
Replies: 4
Views: 839

Re: New install not working on Sonoff Basic

Thank you, I'll give that a try.
by dbemowsk
30 Apr 2023, 22:46
Forum: ESP Easy: General Discussion
Topic: New install not working on Sonoff Basic
Replies: 4
Views: 839

New install not working on Sonoff Basic

So I used PlatformIO to compile and upload ESPEasy-mega-20230409. It compiles and uploads fine. When I plug in the Sonoff, it goes into AP mode as I can see the ESP Easy AP with my phone. I can also connect using the default password espconfig (or whatever that was). My phone shows that I am connect...
by dbemowsk
30 Apr 2023, 04:54
Forum: ESP Easy: Projects / Applications
Topic: Looking to redesign some light switches
Replies: 3
Views: 1387

Looking to redesign some light switches

So my automation setup is kind of a mix of things which are all run through an old Vera Plus home controller. I have light switches that I built that run off of the MySensors framework: https://forum.mysensors.org/topic/4317/us-decora-style-wall-switch/28?_=1682822740637 I am wondering if I can conv...
by dbemowsk
22 Nov 2018, 16:55
Forum: ESP Easy: General Discussion
Topic: getting temperature value from ESP8266 to vera controller
Replies: 5
Views: 5173

Re: getting temperature value from ESP8266 to vera controller

I had emailed this workaround solution to this user. Just posting it here for others to take advantage of. I may have a workaround for you that should get you what you need. It relies on a feature of the ESP Easy firmware called "Rules" which is basically a small scripting engine for the f...
by dbemowsk
20 May 2018, 19:16
Forum: ESP Easy: Hardware
Topic: FLASH Wifi Relay
Replies: 22
Views: 18767

Re: FLASH Wifi Relay

I may have missed it looking through the comments, but is the relay on this on the same GPIO port as the standard sonoff modules? GPIO 12? I see GPIO 14, 4 and 5 on the headers, but not sure what the relay is.
by dbemowsk
06 Aug 2017, 22:32
Forum: ESP Easy: General Discussion
Topic: Big Wish - Vera Controller
Replies: 2
Views: 3390

Re: Big Wish - Vera Controller

I posted this on another topic too, so I hope I am not overstepping bounds by posting it here too, but here is a solution that I developed for using ESP Easy with Vera.
https://dan.bemowski.info/2017/07/04/us ... -and-vera/