diff --git a/M5Stack b/M5Stack new file mode 100644 index 0000000..65f858a --- /dev/null +++ b/M5Stack @@ -0,0 +1,13 @@ +sudo apt-get install git wget make libncurses-dev flex bison gperf python python-serial +git clone --depth 1 https://github.com/loboris/MicroPython_ESP32_psRAM_LoBo.git +cd MicroPython_ESP32_psRAM_LoBo/MicroPython_BUILD/ +# ./BUILD.sh menuconfig +./BUILD.sh + +cd ../.. +git clone https://github.com/tuupola/micropython-m5stack.git + + +$ sudo pip3 install rshell +$ make sync +$ make repl \ No newline at end of file diff --git a/ZAP with RaspiBolt/raspibolt_71_ZAP.md b/ZAP with RaspiBolt/raspibolt_71_ZAP.md new file mode 100644 index 0000000..6152728 --- /dev/null +++ b/ZAP with RaspiBolt/raspibolt_71_ZAP.md @@ -0,0 +1,53 @@ + + +## Connect the ZAP Desktop Lightning wallet to your RaspiBolt + + +The desktop app ZAP (https://github.com/LN-Zap/zap-desktop) +) is a cross platform Lightning Network wallet focused on user experience and ease of use. + +Download ZAP for your operating sytem: +https://github.com/LN-Zap/zap-desktop/releases +Install instructions: https://github.com/LN-Zap/zap-desktop#install + + +### Preparation on the Pi + +* Add the following line to your lnd configuration file in the section `[Application Options]` + `$ sudo nano /home/bitcoin/.lnd/lnd.conf` + + ```tlsextraip=0.0.0.0``` + +* Restart LND and unlock wallet + `$ sudo systemctl restart lnd` + `$ lncli unlock` + +### On your linux desktop: + Copy the tls.cert to your home directory: + + `scp admin@your.RaspiBolt.LAN.IP:/home/admin/.lnd/tls.cert ~/` + +Copy the admin.macaroon to your home directory: + +`scp admin@your.RaspiBolt.LAN.IP:/home/admin/admin.macaroon ~/` + +### Configure ZAP + +* Start the app and select: +```Connect your own node``` + +![](zap1.png) + + +* Fill in the next screen: + +`your.RaspiBolt.LAN.IP:10009` + +`~/tls.cert` + +`~/admin.macaroon` + +![](zap2.png) + +* Confirm the settings on the following screen and you are done! + diff --git a/ZAP with RaspiBolt/zap1.png b/ZAP with RaspiBolt/zap1.png new file mode 100644 index 0000000..ceafb20 Binary files /dev/null and b/ZAP with RaspiBolt/zap1.png differ diff --git a/ZAP with RaspiBolt/zap2.png b/ZAP with RaspiBolt/zap2.png new file mode 100644 index 0000000..af3b3dd Binary files /dev/null and b/ZAP with RaspiBolt/zap2.png differ