Search found 7 matches

by Thotti
22 Oct 2016, 09:41
Forum: ESP Easy: Software
Topic: Introducing the Dummy Device on ESP Easy (Github R118!)
Replies: 29
Views: 48157

Re: Introducing the Dummy Device on ESP Easy (Github R118!)

In rules "taskvalueset 4,1,1" works just fine, but "http://#.#.#.#/control?cmd=taskvalueset 4,1,1" gives me a "Unknown or restricted command!". I thought that every command from rules can be used with "control?cmd=" Am i doing it wrong, is it not possible or ...
by Thotti
22 Oct 2016, 09:40
Forum: ESP Easy: Software
Topic: Plugin for RFID Reader RDM6300
Replies: 15
Views: 16092

Re: Plugin for RFID Reader RDM6300

Thank you very much! It works with the RDM6300. :D
by Thotti
20 Oct 2016, 18:37
Forum: ESP Easy: Software
Topic: Plugin for RFID Reader RDM6300
Replies: 15
Views: 16092

Re: Plugin for RFID Reader RDM6300

That would be great. Can you push it to the playground?
I would like to check it out. :-)
by Thotti
17 Oct 2016, 08:18
Forum: ESP Easy: Software
Topic: Plugin for RFID Reader RDM6300
Replies: 15
Views: 16092

Re: Plugin for RFID Reader RDM6300

Did you already have a look at the ESP Easy internals? ;-)
by Thotti
14 Oct 2016, 19:21
Forum: ESP Easy: Software
Topic: Plugin for RFID Reader RDM6300
Replies: 15
Views: 16092

Re: Plugin for RFID Reader RDM6300

This is my code: case PLUGIN_SERIAL_IN: { if (Plugin_034_init) { Plugin_034_receivedTag = false; if(Serial.available() > 0) { // if data available from reader if((val = Serial.read()) == 2) { // check for header bytesread = 0; while(bytesread<10) { // read 10 digit code if( Serial.available() > 0) {...
by Thotti
14 Oct 2016, 09:55
Forum: ESP Easy: Software
Topic: Plugin for RFID Reader RDM6300
Replies: 15
Views: 16092

Re: Plugin for RFID Reader RDM6300

Thanks. I put my code into: case PLUGIN_SERIAL_IN: { } In the log i can see the RFID Tag by printing UserVar[event->BaseVarIndex]. But it seems that it is not accessable in the rules and the value of "Tag" is also not shown on the "devices page". The event for that device is neve...
by Thotti
11 Oct 2016, 15:36
Forum: ESP Easy: Software
Topic: Plugin for RFID Reader RDM6300
Replies: 15
Views: 16092

Plugin for RFID Reader RDM6300

I'm trying to develop a plugin for the RFID Reader Module RDM6300. Is ist connected via the Serial RX PIN on my NodeMCU. In my plugin i read the serial data via hardware serial. I read the serial data in the function PLUGIN_TEN_PER_SECOND and put the result in UserVar[event->BaseVarIndex]. Is this t...