Skip to content

Commit

Permalink
Update API v1.0.1
Browse files Browse the repository at this point in the history
to....fix bad typo
  • Loading branch information
exploitagency committed Mar 18, 2018
1 parent a5f04cb commit f940dbc
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Source Code/esprfidtool/api.h
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ void apilog(String logfile,int prettify) {
int hsecondIndex = line.indexOf(",", hfirstIndex + 1);
String hexCURRENT=line.substring(hfirstIndex+5, hsecondIndex);
hexCURRENT.replace("\r","");
apiCURRENTcaptureOBJECT["Hexidecimal"]=hexCURRENT;
apiCURRENTcaptureOBJECT["Hexadecimal"]=hexCURRENT;
}
if(line.indexOf(",Keypad Code:") > 0) {
int kfirstIndex = line.indexOf(",Keypad Code:");
Expand Down
8 changes: 4 additions & 4 deletions Source Code/esprfidtool/esprfidtool.ino
Original file line number Diff line number Diff line change
Expand Up @@ -1163,7 +1163,7 @@ void setup() {
hexTEMP+=hexCHAR;
}

dataCONVERSION+=String()+F("Hexidecimal: ")+hexTEMP+F("<br><small>You may want to drop the leading zero(if there is one) and if your cloning software does not handle it for you.</small><br><br>");
dataCONVERSION+=String()+F("Hexadecimal: ")+hexTEMP+F("<br><small>You may want to drop the leading zero(if there is one) and if your cloning software does not handle it for you.</small><br><br>");
hexTEMP="";

dataCONVERSION+=F("<br><br>");
Expand All @@ -1177,7 +1177,7 @@ void setup() {
char hex2binCHAR[hex2binBUFFlen];
(server.arg("hex2binHTML")).toCharArray(hex2binCHAR,hex2binBUFFlen);

dataCONVERSION+=String()+F("Hexidecimal: ")+hex2binCHAR+F("<br><br>");
dataCONVERSION+=String()+F("Hexadecimal: ")+hex2binCHAR+F("<br><br>");

String binTEMP="";

Expand Down Expand Up @@ -1245,14 +1245,14 @@ void setup() {
"</FORM>"
"<br>"
"<FORM action=\"/data-convert\" id=\"bin2hex\" method=\"post\">"
"<b>Convert Binary Data to Hexidecimal:</b><br>"
"<b>Convert Binary Data to Hexadecimal:</b><br>"
"<small>For use with card cloning, typically includes both the preamble and card data(binary before and after the space in log).</small><br>"
"<INPUT form=\"bin2hex\" type=\"text\" name=\"bin2hexHTML\" value=\"\" pattern=\"[0-1]{1,}\" required title=\"Only 0's & 1's allowed, no spaces allowed, must not be empty\" minlength=\"1\" size=\"52\"><br>"
"<INPUT form=\"bin2hex\" type=\"submit\" value=\"Convert\"><br>"
"</FORM>"
"<br>"
"<FORM action=\"/data-convert\" id=\"hex2bin\" method=\"post\">"
"<b>Convert Hexidecimal Data to Binary:</b><br>"
"<b>Convert Hexadecimal Data to Binary:</b><br>"
"<small>In some situations you may want to add a leading zero to pad the output to come up with the correct number of bits.</small><br>"
"<INPUT form=\"hex2bin\" type=\"text\" name=\"hex2binHTML\" value=\"\" pattern=\"[0-9a-fA-F]{1,}\" required title=\"Only characters 0-9 A-F a-f allowed, no spaces allowed, must not be empty\" minlength=\"1\" size=\"52\"><br>"
"<INPUT form=\"hex2bin\" type=\"submit\" value=\"Convert\"><br>"
Expand Down
2 changes: 1 addition & 1 deletion Source Code/esprfidtool/version.h
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
String version = "1.1.8";
String APIversion = "1.0.0";
String APIversion = "1.0.1";

0 comments on commit f940dbc

Please sign in to comment.