From f940dbcc9884a61aad581de8334ddb5576bd8a4f Mon Sep 17 00:00:00 2001 From: Corey Harding Date: Sun, 18 Mar 2018 03:02:42 -0400 Subject: [PATCH] Update API v1.0.1 to....fix bad typo --- Source Code/esprfidtool/api.h | 2 +- Source Code/esprfidtool/esprfidtool.ino | 8 ++++---- Source Code/esprfidtool/version.h | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Source Code/esprfidtool/api.h b/Source Code/esprfidtool/api.h index 600c88d..de26334 100644 --- a/Source Code/esprfidtool/api.h +++ b/Source Code/esprfidtool/api.h @@ -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:"); diff --git a/Source Code/esprfidtool/esprfidtool.ino b/Source Code/esprfidtool/esprfidtool.ino index fcc46c6..40eb788 100644 --- a/Source Code/esprfidtool/esprfidtool.ino +++ b/Source Code/esprfidtool/esprfidtool.ino @@ -1163,7 +1163,7 @@ void setup() { hexTEMP+=hexCHAR; } - dataCONVERSION+=String()+F("Hexidecimal: ")+hexTEMP+F("
You may want to drop the leading zero(if there is one) and if your cloning software does not handle it for you.

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

"); hexTEMP=""; dataCONVERSION+=F("

"); @@ -1177,7 +1177,7 @@ void setup() { char hex2binCHAR[hex2binBUFFlen]; (server.arg("hex2binHTML")).toCharArray(hex2binCHAR,hex2binBUFFlen); - dataCONVERSION+=String()+F("Hexidecimal: ")+hex2binCHAR+F("

"); + dataCONVERSION+=String()+F("Hexadecimal: ")+hex2binCHAR+F("

"); String binTEMP=""; @@ -1245,14 +1245,14 @@ void setup() { "" "
" "
" - "Convert Binary Data to Hexidecimal:
" + "Convert Binary Data to Hexadecimal:
" "For use with card cloning, typically includes both the preamble and card data(binary before and after the space in log).
" "
" "
" "
" "
" "
" - "Convert Hexidecimal Data to Binary:
" + "Convert Hexadecimal Data to Binary:
" "In some situations you may want to add a leading zero to pad the output to come up with the correct number of bits.
" "
" "
" diff --git a/Source Code/esprfidtool/version.h b/Source Code/esprfidtool/version.h index e142299..047ab8c 100644 --- a/Source Code/esprfidtool/version.h +++ b/Source Code/esprfidtool/version.h @@ -1,2 +1,2 @@ String version = "1.1.8"; -String APIversion = "1.0.0"; +String APIversion = "1.0.1";