- based on small Digital Ocean VPS (1CPU / 1GB RAM) with Ubuntu 16.04
- SSH keys are recommended, but not described here
- (sub) domain name necessary for SSL certificate
Login as "root"
| 0xa867f9035A5e48E40bB10C82e599aA05217ab370 |
| Change to root user | |
| sudo su - | |
| Locate device name for USB HDD | |
| fdisk -l | |
| Start fdisk using UDB HDD - Important!! replace "sdc" with your device name. | |
| fdisk /dev/sdc | |
| Delete existing partition |
| #Install Dot-Net for ARM | |
| cd /home/admin | |
| sudo apt-get -y install libunwind8 gettext | |
| wget https://download.visualstudio.microsoft.com/download/pr/9650e3a6-0399-4330-a363-1add761127f9/14d80726c16d0e3d36db2ee5c11928e4/dotnet-sdk-2.2.102-linux-arm.tar.gz | |
| wget https://download.visualstudio.microsoft.com/download/pr/9d049226-1f28-4d3d-a4ff-314e56b223c5/f67ab05a3d70b2bff46ff25e2b3acd2a/aspnetcore-runtime-2.2.1-linux-arm.tar.gz | |
| sudo mkdir /opt/dotnet | |
| sudo tar -xvf dotnet-sdk-2.2.102-linux-arm.tar.gz -C /opt/dotnet/ | |
| sudo tar -xvf aspnetcore-runtime-2.2.1-linux-arm.tar.gz -C /opt/dotnet/ | |
| sudo ln -s /opt/dotnet/dotnet /usr/local/bin | |
| dotnet --info |
| Order from Lightning in a Box https://lightninginabox.co/product/btcpi/ | |
| or | |
| Visit BTCPi.com for DIY instructions. | |
| ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev | |
| country=US | |
| network={ | |
| ssid="ssid" | |
| psk="password" | |
| key_mgmt=WPA-PSK | |
| } |
I hereby claim:
To claim this, I am signing this object:
| These instructions are outdated. | |
| Please visit https://btcpi.com for detailed instructions on installing BTCPayServer on the Raspberry Pi 4B. | |
| #Install Dot-Net for ARM | |
| cd /home/admin | |
| sudo apt-get -y install libunwind8 gettext libssl1.0 | |
| wget https://download.visualstudio.microsoft.com/download/pr/9650e3a6-0399-4330-a363-1add761127f9/14d80726c16d0e3d36db2ee5c11928e4/dotnet-sdk-2.2.102-linux-arm.tar.gz | |
| wget https://download.visualstudio.microsoft.com/download/pr/9d049226-1f28-4d3d-a4ff-314e56b223c5/f67ab05a3d70b2bff46ff25e2b3acd2a/aspnetcore-runtime-2.2.1-linux-arm.tar.gz | |
| sudo mkdir /opt/dotnet |
| #include <ezTime.h> | |
| #include <M5ez.h> | |
| #include <M5Stack.h> | |
| #include <ArduinoJson.h> | |
| #include <HTTPClient.h> | |
| void setup() { | |
| ez.begin(); | |
| } |
| #include <ezTime.h> | |
| #include <M5ez.h> | |
| #include <M5Stack.h> | |
| #include <ArduinoJson.h> | |
| #include <HTTPClient.h> | |
| String ONApiKey = "Replace with your ON ApiKey"; | |
| String currency = "USD"; | |
| void setup() { |