Show Posts
|
|
Pages: [1] 2
|
|
1
|
International / Nederlands / Re: TowiTek RFID Reader
|
on: February 16, 2013, 12:26:34 pm
|
String content = ""; char character; int tester=0; String cont2=0; while(RFIDReader.available()) { character = RFIDReader.read(); tester = (character + '255'); content.concat(tester); }
if (content != "") { Serial.println(content); cont2.concat(content); Serial.println(cont2); Ik maak er dmv er 255 bij op te tellen een ansi code
|
|
|
|
|
2
|
International / Nederlands / Re: Verbeteringen, Ethercard, RFID lezer.
|
on: February 16, 2013, 09:58:23 am
|
void loop() { ether.packetLoop(ether.packetReceive());
String content = ""; char character; int tester=0; String cont2=0; while(RFIDReader.available()) { character = RFIDReader.read(); tester = (character + '255'); content.concat(tester); }
if (content != "") { Serial.println(content); cont2.concat(content); Serial.println(cont2); Beep(100); delay(50); Beep(100);
if (millis() > timer + REQUEST_RATE) { timer = millis(); Serial.println("\n>>> REQ"); char RFT[30]; String xcode = String(cont2); xcode.toCharArray(RFT,30);
foundPatternState=0;// Reset state machine ether.persistTcpConnection(true);// enable persist, so that the callback is called for each received packet. ether.browseUrl(PSTR("/dev_frizz.php?tag="), RFT, website, browseUrlCallback); delay(1000); Serial.println("Ready");
} } }
// Magical stuff below
void ReadSerial(String &ReadTagString) { int bytesread = 0; int val = 0; char code[10]; String TagCode="";
if(RFIDReader.available() > 0) { // If data available from reader if((val = RFIDReader.read()) == 10) { // Check for header bytesread = 0; while(bytesread<10) { // Read 10 digit code if( RFIDReader.available() > 0) { val = RFIDReader.read(); if((val == 10)||(val == 13)) { // If header or stop bytes before the 10 digit reading break; // Stop reading } code[bytesread] = val; // Add the digit bytesread++; // Ready to read next digit } } if(bytesread == 10) { // If 10 digit read is complete
for(int x=0;x<10;x++) //Copy the Chars to a String { TagCode += code[x]; } ReadTagString = TagCode; //Update the caller while(RFIDReader.available() > 0) //Burn off any characters still in the buffer { RFIDReader.read(); }
} bytesread = 0; DisplayTAG = 0;
} } }
void Beep(int x) {
digitalWrite(7, HIGH); delay(x); digitalWrite(7, LOW); }
void Red(int x) { digitalWrite(9, HIGH); delay(x); digitalWrite(9, LOW); }
void Green(int x) { digitalWrite(3, HIGH); delay(x); digitalWrite(3, LOW); }
void Blue(int x) { digitalWrite(10, HIGH); delay(x); digitalWrite(10, LOW); }
void Relais(int x) { digitalWrite(6, HIGH); delay(x); digitalWrite(6, LOW); }
void Consumption() { digitalWrite(6, HIGH); // Relais aan digitalWrite(3, HIGH); // Groen aan digitalWrite(7, HIGH); // Beep aan delay(50); digitalWrite(7, LOW); // Beep uit delay(50); digitalWrite(6, LOW); // RELAIS uit digitalWrite(7, HIGH); delay(50); digitalWrite(7, LOW); delay(50); digitalWrite(7, HIGH); delay(50); digitalWrite(7, LOW); delay(1000); digitalWrite(3, LOW); delay(200); }
void GeenSaldo() {
digitalWrite(9, HIGH); // Groen aan digitalWrite(7, HIGH); // Beep aan delay(100); digitalWrite(7, LOW); // Beep uit delay(100); digitalWrite(7, HIGH); delay(100); digitalWrite(7, LOW); delay(1500); digitalWrite(9, LOW); }
void Pauze(){ digitalWrite(10, HIGH); delay(2000); digitalWrite(10, LOW); Beep(10); }
|
|
|
|
|
3
|
International / Nederlands / Re: Verbeteringen, Ethercard, RFID lezer.
|
on: February 16, 2013, 09:58:07 am
|
#include <SoftwareSerial.h> #include <EtherCard.h> #include <TextFinder.h>
int length = 0; static uint32_t timer;
// Patterns and pattern buffer pointer char *searchPattern[] = { "<code>" }; char *searchPatternProgressPtr;
// Output bugger and pointer to the buffer char displayBuff[64]; char testBuf[64];
char *outputBufferPtr;
int foundPatternState;// Initialsed in loop()
// Utility functions void removeSubstring(char *s,const char *toremove) { while( s=strstr(s,toremove) ) { memmove(s,s+strlen(toremove),1+strlen(s+strlen(toremove))); } }
// Function to find a string in a buffer, and return a pointer to the first char after the end of the match // Returns pointer to NULL if a pattern is not found // This function is designed to fing the search string across multiple buffers, and uses the patternInProgress pinter to store partial pattern matches // The calling code needs to maintain patternInProgress between subsequent calls to the function. char *multiBufferFindPattern(char *buffer,char *searchString,char *patternInProgress) { while (*buffer && *patternInProgress) { if (*buffer == *patternInProgress) { patternInProgress++; } else { patternInProgress=searchString;// reset to start of the pattern } buffer++; } if (!*patternInProgress) { return buffer; } return NULL; }
int getData(char *inputBuffer, char *outputBuffPtr, char endMarker) { while(*inputBuffer && *inputBuffer!=endMarker && *outputBuffPtr) { *outputBuffPtr=*inputBuffer; outputBuffPtr++; inputBuffer++;
} if (*inputBuffer==endMarker && *outputBuffPtr!=0) { *outputBuffPtr=0; // end character found return 1; } else { return 0; } }
//Ethernet needs this #define REQUEST_RATE 1000 // milliseconds static byte mymac[] = { 0x74,0x69,0x69,0x2D,0x30,0x31 };
char website[] PROGMEM = "frizzbar.nl";
byte Ethernet::buffer[400];
// request 2 remove other static void browseUrlCallback (byte status, word off, word len) { char *pos;// used for buffer searching pos=(char *)(Ethernet::buffer+off); Ethernet::buffer[off+len] = 0;// set the byte after the end of the buffer to zero to act as an end marker (also handy for displaying the buffer as a string) Serial.println((const char*) Ethernet::buffer + off);
//Serial.println(pos); if (foundPatternState==0) { // initialise pattern search pointers searchPatternProgressPtr=searchPattern[0]; foundPatternState=1; }
if (foundPatternState==1) { pos = multiBufferFindPattern(pos,searchPattern[0],searchPatternProgressPtr); if (pos) { foundPatternState=2; outputBufferPtr=displayBuff; memset(displayBuff,'0',sizeof(displayBuff));// clear the output display buffer displayBuff[sizeof(displayBuff)-1]=0;//end of buffer marker } else { return;// Need to wait for next buffer, so just return to save processing the other if states } }
if (foundPatternState==2) { //Serial.println("Found HR start"); if (getData(pos,outputBufferPtr,'<')) { Serial.print("Code "); Serial.println(displayBuff);
long displayInt = atol(displayBuff); long codeInt = atol("9812"); long faultInt = atol("6767");
if (displayInt == codeInt) { Serial.print("Equal."); Consumption();
}
if (displayInt == faultInt) { Serial.print("Equal."); GeenSaldo(); }
String DisplayTAG = "";
ether.persistTcpConnection(false); //Move to next state (not used in this demo) } else { Beep(100); Beep(100); Beep(100); Beep(100); // end marker is not found, stay in same findPatternState and when the callback is called with the next packet of data, outputBufferPtr will continue where it left off } } Pauze(); }
// called when the client request is complete static void my_result_cb (byte status, word off, word len) {
Serial.print("<<< reply "); Serial.print(millis() - timer); Serial.println(" ms"); Serial.println((const char*) Ethernet::buffer + off);
}
//Parallax RFID Reader
#define RFIDSerialRate 9600 //Parallax RFID Reader Serial Port Speed
//Using SoftwareSerial Library to locate the serial pins off the default set //This allows the Arduino to be updated via USB with no conflict #define RxPin 5 //Pin to read data from Reader #define TxPin 4 //Pin to write data to the Reader NOTE: The reader doesn't get written to, don't connect this line. SoftwareSerial RFIDReader(RxPin,TxPin);
String RFIDTAG=""; //Holds the RFID Code read from a tag String DisplayTAG = ""; //Holds the last displayed RFID Tag
void setup() { pinMode(3, OUTPUT); pinMode(6, OUTPUT); pinMode(7, OUTPUT); pinMode(9, OUTPUT); pinMode(10, OUTPUT); // RFID reader SOUT pin connected to Serial RX pin at 9600bps RFIDReader.begin(RFIDSerialRate);
// Set Enable pin as OUTPUT to connect it to the RFID /ENABLE pin
// Activate the RFID reader // Setting the RFIDEnablePin HIGH will deactivate the reader // which could be usefull if you wanted to save battery life for // example.
Serial.begin(9600); // set up Serial library at 9600 bps
Serial.println("\n[getDHCPandDNS]");
if (ether.begin(sizeof Ethernet::buffer, mymac) == 0) Serial.println( "Failed to access Ethernet controller"); Beep(500); Blue(100); Beep(500); Blue(100); Blue(100); Blue(100); Blue(100);
if (!ether.dhcpSetup()) Serial.println("DHCP failed");
ether.printIp("My IP: ", ether.myip); // ether.printIp("Netmask: ", ether.mymask); ether.printIp("GW IP: ", ether.gwip); ether.printIp("DNS IP: ", ether.dnsip);
if (!ether.dnsLookup(website)) Serial.println("DNS failed");
ether.printIp("Server: ", ether.hisip);
timer = - REQUEST_RATE; // start timing out right away
}
|
|
|
|
|
4
|
International / Nederlands / Verbeteringen, Ethercard, RFID lezer.
|
on: February 16, 2013, 09:57:27 am
|
|
Hoi allemaal,
Onderstaande code doet wat het moet doen, maar netjes is het zeker niet. Zijn er mensen die mogelijke verbeteringen of meer fool-proof ideeen hebben hiervoor? Het is de betaal automaat voor een frisdrankautomaat (gewoon een kleintje voor een groep vrienden). Mensen betalen vooraf en krijgen dan credits op een webserver (in een mysql database). Dit programma leest een aangeboden tag, stuurt de tag naar een webpagina en leest de return code. Afhankelijk van de code krijgen ze of een groen lampje en schakelt een relais kort in. Of ze krijgen bij geen saldo een rood lampje, of indien de tag niet herkent is een blauw lampje.
|
|
|
|
|
5
|
International / Nederlands / TowiTek RFID Reader
|
on: February 01, 2013, 07:03:38 am
|
Hallo allemaal, Na het gebruik van de parallax rfid reader ben ik over gestapt op de kleinere TowiTek RFID lezer. De onderstaande code: long incomingByte; char Data[6]; int i; unsigned long Tempo;
void setup() { Serial.begin(9600); }
void loop(){ do { if (Serial.available()) { Data[i] = Serial.read(); i++; } if(i<1)Tempo = millis(); } while (i<5&&(millis()-Tempo) < 500); Data[i] = 0; incomingByte = atof(Data); Serial.print(incomingByte); for (i=0; i<5; i++) { Serial.print(Data[i]); } i=0; } Werkte prima voor de parallax reader (die overigens op 2400 baud werkt). Helaas is dit de output die ik krijg na het aanbieden van 4 tags:  Dus vreemde tekens ipv normale tag code. Wie kan mij verder helpen?
|
|
|
|
|
6
|
International / Nederlands / Re: TextFinder and Ethercard
|
on: January 19, 2013, 01:09:36 pm
|
|
Hoi Rikky,
Uiteindelijk moet het gewoon over Ethernet werken! Overigens was het geen probleem om verbinding te maken met mijn router en een IP adres toegewezen te krijgen over DHCP.
Ik snap wat je bedoelt, maar ik gebruik arduino niet als server maar als client. Door middel van de link kan ik informatie verzenden: iets.php?id=123 verstuurd id=123 naar de php pagina.
Maar wat ik wilde is gelukt!
|
|
|
|
|
7
|
Using Arduino / Networking, Protocols, and Devices / Re: How to process information from Ethercard
|
on: January 19, 2013, 08:52:28 am
|
After some more googling I found a webscraping example for Ethercard and this works great. Serial.print("Code ");Serial.println(displayBuff); char fCode[] = "1111"; Serial.print("Fcode ");Serial.println(fCode); if (displayBuff ==fCode) { Serial.print("Equal."); }
The result of this is Code 1111 Fcode 1111
However the code does not return my print. I believed at first this was an issue because of the numerical string, but using ABCDE gives the same answer.
|
|
|
|
|
9
|
International / Nederlands / Re: TextFinder and Ethercard
|
on: January 19, 2013, 03:41:23 am
|
Ja, zo zou het ook kunnen maar ik dacht dat TextFinder makkelijk zou werken  Het probleem is dat ik uit een voorbeeld heb dat die Ethercard informatie uitspuugt naar de seriele monitor maar dat ik geen enkel idee heb hoe ik iets met die informatie kan. TextFinder kan iets uit een stream halen, maar hoe zorg ik dat die stream mijn pagina is? Als ik een Ethernet shield had dan was het niet zo lastig, maar 7 euro ipv 35 veranderd de zaak!
|
|
|
|
|
10
|
International / Nederlands / Re: TextFinder and Ethercard
|
on: January 18, 2013, 05:06:06 pm
|
Hoi Jantje, Hartelijk dank! Nee, het gaat in dit geval niet om RFIDTAG maar om de pagina die ik terug krijg. In de code gaat het om: Serial.println((const char*) Ethernet::buffer + off); Deze lijn spuugt de pagina uit die ik terug krijg en de content van die pagina bevat een "code/string/oid" die ik wil vergelijken met een aantal waarde en dan een actie uitvoeren. (Leg ik het zo duidelijk uit?)
|
|
|
|
|
12
|
International / Nederlands / TextFinder and Ethercard
|
on: January 18, 2013, 09:01:22 am
|
Hallo mede gebruikers, Had deze vraag ook al in het Engels geplaatst maar misschien fijn om hier ook in het Nederlands over te praten. Ik heb de volgende code: #include <SoftwareSerial.h> #include <EtherCard.h> #include <TextFinder.h>
//Ethernet needs this #define REQUEST_RATE 5000 // milliseconds static byte mymac[] = { 0x74,0x69,0x69,0x2D,0x30,0x31 };
char website[] PROGMEM = "jecom.nl";
byte Ethernet::buffer[400]; static long timer;
void Beep(){ digitalWrite(7, HIGH); delay(300); digitalWrite(7, LOW); delay(300); digitalWrite(7, HIGH); delay(300); digitalWrite(7, LOW); }
// called when the client request is complete static void my_result_cb (byte status, word off, word len) { Serial.print("<<< reply "); Serial.print(millis() - timer); Serial.println(" ms"); Serial.println((const char*) Ethernet::buffer + off); Beep(); }
//Parallax RFID Reader #define RFIDEnablePin 2 //Pin that enables reading. Set as OUTPUT and LOW to read an RFID tag #define RFIDSerialRate 2400 //Parallax RFID Reader Serial Port Speed
//Using SoftwareSerial Library to locate the serial pins off the default set //This allows the Arduino to be updated via USB with no conflict #define RxPin 5 //Pin to read data from Reader #define TxPin 4 //Pin to write data to the Reader NOTE: The reader doesn't get written to, don't connect this line. SoftwareSerial RFIDReader(RxPin,TxPin);
String RFIDTAG=""; //Holds the RFID Code read from a tag String DisplayTAG = ""; //Holds the last displayed RFID Tag
void setup() { // RFID reader SOUT pin connected to Serial RX pin at 2400bps RFIDReader.begin(RFIDSerialRate);
// Set Enable pin as OUTPUT to connect it to the RFID /ENABLE pin pinMode(RFIDEnablePin,OUTPUT); pinMode(7, OUTPUT);
// Activate the RFID reader // Setting the RFIDEnablePin HIGH will deactivate the reader // which could be usefull if you wanted to save battery life for // example. digitalWrite(RFIDEnablePin, LOW);
Serial.begin(9600); // set up Serial library at 9600 bps Serial.println("\n[getDHCPandDNS]"); if (ether.begin(sizeof Ethernet::buffer, mymac) == 0) Serial.println( "Failed to access Ethernet controller");
if (!ether.dhcpSetup()) Serial.println("DHCP failed"); ether.printIp("My IP: ", ether.myip); // ether.printIp("Netmask: ", ether.mymask); ether.printIp("GW IP: ", ether.gwip); ether.printIp("DNS IP: ", ether.dnsip);
if (!ether.dnsLookup(website)) Serial.println("DNS failed"); ether.printIp("Server: ", ether.hisip); Beep(); timer = - REQUEST_RATE; // start timing out right away
}
void loop() { ether.packetLoop(ether.packetReceive()); if(RFIDReader.available() > 0) // If data available from reader { ReadSerial(RFIDTAG); //Read the tag number from the reader. Should return a 10 digit serial number }
//This only displays a tag once, unless another tag is scanned if(DisplayTAG!=RFIDTAG) { DisplayTAG=RFIDTAG; Serial.println(RFIDTAG); delay(1000); digitalWrite(7, HIGH); delay(300); digitalWrite(7, LOW); if (millis() > timer + REQUEST_RATE) { timer = millis(); Serial.println("\n>>> REQ"); char RFT[25]; DisplayTAG.toCharArray(RFT,25);
ether.browseUrl(PSTR("/frizzbar.php?tag="), RFT, website, my_result_cb); delay(1000);
} } }
// Magical stuff below
void ReadSerial(String &ReadTagString) { int bytesread = 0; int val = 0; char code[10]; String TagCode="";
if(RFIDReader.available() > 0) { // If data available from reader if((val = RFIDReader.read()) == 10) { // Check for header bytesread = 0; while(bytesread<10) { // Read 10 digit code if( RFIDReader.available() > 0) { val = RFIDReader.read(); if((val == 10)||(val == 13)) { // If header or stop bytes before the 10 digit reading break; // Stop reading } code[bytesread] = val; // Add the digit bytesread++; // Ready to read next digit } } if(bytesread == 10) { // If 10 digit read is complete
for(int x=0;x<10;x++) //Copy the Chars to a String { TagCode += code[x]; } ReadTagString = TagCode; //Update the caller while(RFIDReader.available() > 0) //Burn off any characters still in the buffer { RFIDReader.read(); }
} bytesread = 0; TagCode=""; } } }
Bij elkaar geschraapt. Zoals jullie kunnen zien wacht hij op een RFID tag die hij dan in een URL zet en naar een pagina transporteert. Ik krijg dan van die pagina een inhoud terug met de volgende waardes: <code>hier nu nog kopie van de TAG</code> Met TextFinder wil ik die code in een integer zetten of iets anders dat ik kan vergelijken of gebruiken. Alleen weet ik niet hoe ik dit precies kan doen en welke stream ik moet gebruiken om dit waar te maken.
|
|
|
|
|
13
|
Using Arduino / Networking, Protocols, and Devices / Re: How to process information from Ethercard
|
on: January 18, 2013, 03:13:26 am
|
If the below is what is returned, then you can count the carrage returns in the stream and capture the string between what looks to be 8 and 9.
That seems logical indeed. However I am unsure how to do this. The example is quite clear, but since EtherCard is different from normal Ethernet I don't know how to implement it. Or in other words I don't know how to put the output in a stream that I can use with TextFind
|
|
|
|
|
14
|
Using Arduino / Networking, Protocols, and Devices / Re: How to process information from Ethercard
|
on: January 18, 2013, 02:50:46 am
|
However, as I think of it I could just compare the complete buffer but it contains a date and time stamp. It would be helpful to see the actual output, but, generally web site data is separated by carriage returns and line feeds into logical blocks. You could discard any data that does not contain data of interest. If you control the output, make it identify the interesting data in some easy to parse way. <<< reply 5074 ms HTTP/1.1 200 OK Date: Fri, 18 Jan 2013 07:47:11 GMT Server: Apache/2 Vary: Accept-Encoding,User-Agent Content-Length: 4 Connection: close Content-Type: text/html
1234 So the info is contained by ether.packetLoop but documentation on ethercard is limited so I don't know how to use it in combination with TextFinder
|
|
|
|
|
15
|
Using Arduino / Networking, Protocols, and Devices / Re: How to process information from Ethercard
|
on: January 17, 2013, 05:21:03 pm
|
|
Hmm yep, sounds logical.
Yes, I am sorry if I was unclear. The content of this page is a numerical code so indeed it's "1234" (or whatever I make it spit out). However the buffer contains first the header and then the content of this page and I need only that numerical code.
However, as I think of it I could just compare the complete buffer but it contains a date and time stamp.
|
|
|
|
|