Search found 13 matches

by livebelive
10 May 2017, 16:13
Forum: ESP Easy: Hardware
Topic: the problem of data format
Replies: 6
Views: 4426

Re: the problem of data format

if (Plugin_049_init) { byte ppn[1]; ppn[1] = 1; if (Plugin_049_SoftSerial->available() > 1) { ppm = Plugin_049_SoftSerial->read(); UserVar[event->BaseVarIndex] = (unsigned int)ppm; Plugin_049_SoftSerial->write(ppn[1]); UserVar[event->BaseVarIndex] = (unsigned int)ppm; String log = F("Voice Dat...
by livebelive
10 May 2017, 15:30
Forum: ESP Easy: Hardware
Topic: the problem of data format
Replies: 6
Views: 4426

Re: the problem of data format

thank you again!
by livebelive
10 May 2017, 15:30
Forum: ESP Easy: Software
Topic: About read serial data need help!!!
Replies: 9
Views: 5317

Re: About read serial data need help!!!

I do not mind, I am glad that the current knowledge is limited, even if you say where to find, how to describe it is not quite understand, and so I know some of the more comprehensive post!
Thanks again!
by livebelive
10 May 2017, 06:32
Forum: ESP Easy: Hardware
Topic: the problem of data format
Replies: 6
Views: 4426

Re: the problem of data format

The problem has been solved!!!
Device[deviceCount].VType = SENSOR_TYPE_TRIPLE; this place needs to be replaced
Device[deviceCount].VType = SENSOR_TYPE_SINGLE;
by livebelive
10 May 2017, 06:06
Forum: ESP Easy: Hardware
Topic: the problem of data format
Replies: 6
Views: 4426

Re: the problem of data format

/* This plug in is written by Dmitry (rel22 ___ inbox.ru) Plugin is based upon SenseAir plugin by Daniel Tedenljung info__AT__tedenljungconsulting.com Additional features based on https://geektimes.ru/post/285572/ by Gerben (infernix__AT__gmail.com) This plugin reads the CO2 value from MH-Z19 NDIR ...
by livebelive
10 May 2017, 06:04
Forum: ESP Easy: Hardware
Topic: the problem of data format
Replies: 6
Views: 4426

the problem of data format

I modified a plug-in to read serial data, and then sent to the domoticz, but encountered a display problem. Following figure! 12345.png I only call and display a value. But in domoticz, the data becomes 1; 0; 0, three value! 23456.png I guess the other two groups should be TEM and u in the original ...
by livebelive
09 May 2017, 22:36
Forum: ESP Easy: Software
Topic: About read serial data need help!!!
Replies: 9
Views: 5317

Re: About read serial data need help!!!

First of all, stop stressing! If you want to get help here, you need to be patient and polite. Then checkout the CO2-Sensor on the wiki. It also uses serial communication. You will have to develop a plugin from there. It uses the softserial library to provide serial communication to two GPIO pins. ...
by livebelive
09 May 2017, 00:59
Forum: ESP Easy: Software
Topic: About read serial data need help!!!
Replies: 9
Views: 5317

Re: About read serial data need help!!!

somebody help me!!!
by livebelive
08 May 2017, 23:55
Forum: ESP Easy: Software
Topic: About read serial data need help!!!
Replies: 9
Views: 5317

Re: About read serial data need help!!!

int val; void setup() { pinMode(12, OUTPUT); pinMode(13, OUTPUT); Serial.begin(115200); digitalWrite(13, 0); digitalWrite(13, 0); delay(2000); Serial.print("@PlayFlashText#007$"); } void loop() { val = Serial.read(); if (val != -1) { if (val == 1) { digitalWrite(12, HIGH); } if (val == 2)...
by livebelive
08 May 2017, 23:44
Forum: ESP Easy: Software
Topic: About read serial data need help!!!
Replies: 9
Views: 5317

Re: About read serial data need help!!!

toffel969 wrote: 08 May 2017, 23:36 Have you seen the ser2net plugin? It should be the one for your application. I think it will require lua scripts on the domoticz side as it just maps the serial to a TCP port.
Yes, see the ser2net plug-in, set to complete, do not know how to send or receive data. Can you teach me how to do it?
by livebelive
08 May 2017, 23:32
Forum: ESP Easy: Software
Topic: Sendtohttp - domoticz json
Replies: 13
Views: 23584

Re: Sendtohttp - domoticz json

I tried something, and it worked fine. Just invert the commands, and put "param" as the first item, without the "&". Normal way ("&param" gets replaced): /json.htm?type=command&param=switchlight&idx=174&switchcmd=On Inverted way (working fine): /jso...
by livebelive
08 May 2017, 23:18
Forum: ESP Easy: Software
Topic: About read serial data need help!!!
Replies: 9
Views: 5317

About read serial data need help!!!

My English is so bad don't laugh at me Please!!!Thanks! The problem is this I got a voice recognition module I want to connect this module with espeasy What I want to do is to read the data from the module, and then transfer it to domoticz via espeasy There are two options 1, through the espeasy to ...
by livebelive
08 May 2017, 22:59
Forum: ESP Easy: Hardware
Topic: DHT plugin code change needed?
Replies: 1
Views: 2173

Re: DHT plugin code change needed?

How to create a new post
I need help!!!