forked from arcbtc/bitcoinSwitch
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathconfig.js
72 lines (70 loc) · 1.35 KB
/
config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
export const addressesAndFiles = [
{
address: "0x1000",
fileName: "bitcoinSwitch.ino.bootloader.bin",
},
{
address: "0x8000",
fileName: "bitcoinSwitch.ino.partitions.bin",
},
{
address: "0xE000",
fileName: "boot_app0.bin",
},
{
address: "0x10000",
fileName: "bitcoinSwitch.ino.bin",
},
];
export const configPath = "elements.json";
export const elements = [
{
name: "password",
value: "ToTheMoon1",
label: "Password for PoS AP WiFi",
type: "text",
},
{
name: "ssid",
value: "",
label: "WiFi SSID",
type: "text",
},
{
name: "wifipassword",
value: "",
label: "WiFi Password",
type: "text",
},
{
name: "socket",
value: "",
label: "LNURLDEVICE SWITCH OPTION Use LNURLDevices extension in LNbits",
type: "text",
},
{
name: "thresholdInkey",
value: "",
label:
"THRESHOLD OPTION (use lnurlp extension to make an lnurlp) Invoice/read key from LNbits",
type: "text",
},
{
name: "thresholdAmount",
value: "",
label: "THRESHOLD OPTION amount to hit to trigger",
type: "text",
},
{
name: "thresholdPin",
value: "",
label: "THRESHOLD OPTION pin to trigger",
type: "text",
},
{
name: "thresholdTime",
value: "",
label: "THRESHOLD OPTION time to turn of for",
type: "text",
},
];