-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release 1.1.0 - Add PIN TX, Toggle SafeMode, Transition to esp2.4.1 pkg
* ADD Allow entering a numeric pin directly into Experimental TX Mode * ADD allow disabling automatic restarts on captures(Called disabling safe mode) * Transition to esp8266 2.4.1 board manager package * esp8266 board package 2.4.1 has some bug fixes but still isn't 100% stable, I suggest leaving safe mode on(default)
- Loading branch information
1 parent
d91255a
commit ae051bb
Showing
3 changed files
with
190 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
void pinSEND(int pinDELAY,String pinBIN) { | ||
for (int i=0; i<=pinBIN.length(); i++) { | ||
if (pinBIN.charAt(i) == '0') { | ||
digitalWrite(DATA0, LOW); | ||
delayMicroseconds(txdelayus); | ||
digitalWrite(DATA0, HIGH); | ||
} | ||
else if (pinBIN.charAt(i) == '1') { | ||
digitalWrite(DATA1, LOW); | ||
delayMicroseconds(txdelayus); | ||
digitalWrite(DATA1, HIGH); | ||
} | ||
delay(txdelayms); | ||
} | ||
yield(); | ||
delay(pinDELAY); | ||
pinBIN=""; | ||
pinDELAY=100; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
String version = "1.0.91"; | ||
String version = "1.1.0"; |