Search found 6 matches

by rjackr
01 Feb 2016, 21:01
Forum: ESP Easy: Software
Topic: Post to Thingspeak only first task
Replies: 3
Views: 3693

Re: Post to Thingspeak only first task

I'm confirm problem. Same issue.
by rjackr
01 Feb 2016, 20:57
Forum: ESP Easy: Software
Topic: Read GPIO via HTTP
Replies: 9
Views: 7006

Re: Read GPIO via HTTP

This is modification I made to support command: http://<ESP IP address>/control?cmd=GETPWM,<pin> I can't Attach file, and this is diff to _P001_Switch.ino file from BUILD 76 This can be added to GitHub. @@ -6,6 +6,9 @@ #define PLUGIN_ID_001 1 #define PLUGIN_NAME_001 "Switch input" #define ...
by rjackr
01 Feb 2016, 19:59
Forum: ESP Easy: Software
Topic: ESP easy PWM specifications
Replies: 1
Views: 3011

Re: ESP easy PWM specifications

From packages\esp8266\hardware\esp8266\2.0.0\cores\esp8266\core_esp8266_wiring_pwm.c
pwm_freq = 1000;
and from packages\esp8266\hardware\esp8266\2.0.0\cores\esp8266\Arduino.h
#define PWMRANGE 1023
by rjackr
01 Feb 2016, 14:16
Forum: ESP Easy: Software
Topic: Read GPIO via HTTP
Replies: 9
Views: 7006

Re: Read GPIO via HTTP

I thought there is any simple way to do it.
It would be a good feature. Complete solution. :idea:
by rjackr
01 Feb 2016, 13:12
Forum: ESP Easy: Software
Topic: Read GPIO via HTTP
Replies: 9
Views: 7006

Re: Read GPIO via HTTP

Consider this scenario: 1. Client set PWM level by http://<ESP IP address>/control?cmd=PWM,<pin>,<level> 2. After reset client or other client want to initialize self state by request to ESPEasy: "Hi, what is your PWM level of GPIOx?", and ESPEasy should respond with info about level. I ju...
by rjackr
01 Feb 2016, 11:55
Forum: ESP Easy: Software
Topic: Read GPIO via HTTP
Replies: 9
Views: 7006

Read GPIO via HTTP

There is a way to set GPIO like:
http://<ESP IP address>/control?cmd=PWM,<pin>,<level>

How to read state or PWM <level> of GPIO (to synchronize with application)?