You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Add TX mode to API
* Fine tune TX data interval now that setting is in microseconds(via API only)
* TX multiple packets(limited by devices RAM)
* TX directly from log file view
Copy file name to clipboardExpand all lines: Source Code/esprfidtool/esprfidtool.ino
+23-1Lines changed: 23 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1015,7 +1015,29 @@ void ViewLog(){
1015
1015
File f = SPIFFS.open(payload, "r");
1016
1016
String webString = f.readString();
1017
1017
f.close();
1018
-
ShowPL = String()+F("<html><head></head><body><a href=\"/\"><- BACK TO INDEX</a><br><br><a href=\"/logs\">List Exfiltrated Data</a> - <a href=\"/experimental\">Experimental TX Mode</a> - <a href=\"/data-convert\">Data Conversion Tools</a><br><br><a href=\"")+payload+"\"><button>Download File</button><a> - <a href=\"/deletelog?payload="+payload+"\"><button>Delete File</button></a><br><br><small>Note: Preambles shown are only a guess based on card length and may not be accurate for every card format.</small><br><pre>"+payload+"\n-----\n"+webString+"</pre></body></html>";
0 commit comments