Search found 10 matches

by majklovec
13 Jul 2017, 14:23
Forum: ESP Easy: General Discussion
Topic: "Load" and "Free Mem" (version 2.0.0-dev10)
Replies: 4
Views: 3846

Re: "Load" and "Free Mem" (version 2.0.0-dev10)

LC is loop count, how many times the loop() function has been run.
by majklovec
12 Dec 2016, 06:39
Forum: ESP Easy: Software
Topic: Stepper Motor
Replies: 36
Views: 49598

Re: Stepper Motor

I believe that changing PLUGIN_BACKGROUND to PLUGIN_TEN_PER_SECOND in the source (in the case section) will do the job. Just to get sure you need to have some stepper driver A4988, DRV8825 ... often used in RepRap 3D printers and connect "not ENable", STEP and DIR to the selected pins. htt...
by majklovec
07 Dec 2016, 02:41
Forum: ESP Easy: Software
Topic: Stepper Motor
Replies: 36
Views: 49598

Re: Stepper Motor

Yes, add to espeasy.ino #define DEVICE_TYPE_TRIPLE 5 And to webserver.ino to function; void handle_devices() after if (Device[DeviceIndex].Type == DEVICE_TYPE_DUAL) { Settings.TaskDevicePin1[index - 1] = taskdevicepin1.toInt(); Settings.TaskDevicePin2[index - 1] = taskdevicepin2.toInt(); } ADD THIS:...
by majklovec
06 Dec 2016, 03:09
Forum: ESP Easy: Software
Topic: Stepper Motor
Replies: 36
Views: 49598

Re: Stepper Motor

#include <Arduino.h> //####################################################################################################### //############################# Plugin 106: Stepper <info@sensorio.cz#################################### //################################################################...
by majklovec
09 Nov 2016, 22:03
Forum: ESP Easy: Software
Topic: Nextion display plugin
Replies: 587
Views: 1863232

Re: Nextion display plugin

@ledfreak3d

Just use rules and send the command to nextion:

Code: Select all

On UNIT01#TEMPERATURE do
     NEXTION,z0.val=[UNIT01#TEMPERATURE]
endon
I believe the same way %internal variables% can be sent.

I don't know domoticz, so I can't serve.
by majklovec
09 Nov 2016, 21:23
Forum: ESP Easy: Software
Topic: Nextion display plugin
Replies: 587
Views: 1863232

Re: Nextion display plugin

Bert, yeah that's it. It works even the other way around. 2 options are available: 1) Try to make a button in the Nextion and check on "Touch release event" - "Send component id" See the event sent. 2) Or do not check "Send component id" and use print to send whatever e...
by majklovec
09 Nov 2016, 02:40
Forum: ESP Easy: Software
Topic: Nextion display plugin
Replies: 587
Views: 1863232

Re: Nextion display plugin

Dirty, easy, working. Enjoy #include <Arduino.h> #include <SoftwareSerial.h> //####################################################################################################### //#################################### Plugin 104: Nextion <info@sensorio.cz> //########################### //#######...