Skip to content

Commit

Permalink
Update M5StackSats.ino
Browse files Browse the repository at this point in the history
  • Loading branch information
arcbtc authored Jul 1, 2020
1 parent caf1543 commit 79b6c14
Showing 1 changed file with 10 additions and 11 deletions.
21 changes: 10 additions & 11 deletions M5StackSats/M5StackSats.ino
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,19 @@

//Details to change
//Wifi details
char wifiSSID[] = "YOUR-WIFI";
char wifiPASS[] = "PASSWORD";
char wifiSSID[] = "PLUSNET-XPNKJ"; //ENTER YOUR WIFI SSID (Case sensitive)
char wifiPASS[] = "password"; //ENTER YOUR WIFI PASSWORD

//LNBITS DETAILS
const char* lnbitshost = "lnbits.com"; //ENTER YOUR LNBITS HOST
String invoicekey = "63d93848c0fa44e3a0bc341cbdfb9735"; //ENTER YOUR LNBITS INVOICE KEY
int httpsPort = 443;

String pubkey;
String totcapacity;
const char* payment_request;
bool certcheck = false;

//LNBITS DETAILS
int httpsPort = 443;
const char* lnbitshost = "YOUR-LNBITS-HOST";
String invoicekey = "YOUR-LNBITS-WALLET-KEY";

String choice;
String payhash;
String on_currency = "BTCGBP"; //currency can be changed here ie BTCUSD BTCGBP etc
Expand Down Expand Up @@ -117,17 +117,16 @@ void setup() {
delay(1000);
i++;
}


on_rates();

pinMode(KEYBOARD_INT, INPUT_PULLUP);

on_rates();


}

void loop() {

page_input();

cntr = "1";
Expand Down

0 comments on commit 79b6c14

Please sign in to comment.