We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 741dde4 commit 11c5f92Copy full SHA for 11c5f92
bitcoinSwitch/bitcoinSwitch.ino
@@ -3,6 +3,8 @@
3
// form in the web-installer https://lnbits.github.io/bitcoinswitch/installer/ //
4
///////////////////////////////////////////////////////////////////////////////////
5
6
+String version = "0.1.1";
7
+
8
String ssid = "null"; // 'String ssid = "ssid";' / 'String ssid = "null";'
9
String wifiPassword = "null"; // 'String wifiPassword = "password";' / 'String wifiPassword = "null";'
10
@@ -58,6 +60,7 @@ struct KeyValue {
58
60
void setup()
59
61
{
62
Serial.begin(115200);
63
+ Serial.println("Welcome to BitcoinSwitch, running on version: " + version);
64
bool triggerConfig = false;
65
pinMode (2, OUTPUT); // To blink on board LED
66
FlashFS.begin(FORMAT_ON_FAIL);
0 commit comments