Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions bitcoinSwitch/bitcoinSwitch.ino
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
// form in the web-installer https://lnbits.github.io/bitcoinswitch/installer/ //
///////////////////////////////////////////////////////////////////////////////////

String version = "0.1.1";

String ssid = "null"; // 'String ssid = "ssid";' / 'String ssid = "null";'
String wifiPassword = "null"; // 'String wifiPassword = "password";' / 'String wifiPassword = "null";'

Expand Down Expand Up @@ -58,6 +60,7 @@ struct KeyValue {
void setup()
{
Serial.begin(115200);
Serial.println("Welcome to BitcoinSwitch, running on version: " + version);
bool triggerConfig = false;
pinMode (2, OUTPUT); // To blink on board LED
FlashFS.begin(FORMAT_ON_FAIL);
Expand Down