Add Python Script to autostart

Run sudo nano /etc/rc.local   Add command before „exit 0“ python /home/pi/beerbot/telegram_bot_LIAM.py &

Install Telegram Python Lib

From: https://github.com/eternnoir/pyTelegramBotAPI#a-simple-echo-bot $ git clone https://github.com/eternnoir/pyTelegramBotAPI.git $ cd pyTelegramBotAPI $ python setup.py install

Change VNC screen resolution

# uncomment to force a console size. By default it will be display’s size minus # overscan. framebuffer_width=1900 framebuffer_height=1024 in /boot/config.txt

Arduino IDE installieren

Download ARM Linux 32-bit from https://www.arduino.cc/en/Main/Software Unpack with tar -xf arduino-1.8.0-linuxarm.tar.xz cd arduino-1.8.0 sh install.sh

USB Wifi Stick Installation (Broken)

Source: https://forum-raspberrypi.de/forum/thread/38463-treiber-fuer-externen-wlan-stick-installieren/?postID=325962#post325962 sudo apt-get install linux-image-rpi-rpfv linux-headers-rpi-rpfv raspberrypi-kernel-headers dkms build-essential bc Download zip: rtl8812AU_8821AU_linux-master or from here: https://github.com/abperiasamy/rtl8812AU_8821AU_linux Copy folder inside zip to raspberry (e.g. Download directory) nano Makefile Change lines: CONFIG_PLATFORM_I386_PC = y CONFIG_PLATFORM_ARM_RPI = n to CONFIG_PLATFORM_I386_PC = n CONFIG_PLATFORM_ARM_RPI = y Save. cd .. cd .. cd boot sudo nano config.txt Add this to end of…

LTE Stick installieren

SIM Karte einlegen und LTE Stick anstecken Network Manager installieren: sudo apt-get install network-manager network-manager-gnome rebooten. Über VNC die LTE Verbindung im Network Manager (Taskleiste) einrichten. Wenn Passwort verlangt wird: qweasdyxc Automatisches Verbinden im Network Manager für LTE aktivieren Ethernet abstecken rebooten, warten bis wieder über VPN SSH erreichbar (1-3 Minuten, je nach LTE Empfang)…

VNC Verbindung einrichten

VNC Viewer auf Laptop/PC/… installieren: https://www.realvnc.com/de/connect/download/viewer/ VNC Viewer starten Verbinden mit „Managed IP“ der ZeroTier VPN Verbindung (siehe Setting up BeerBot) Auflösung einstellen: sudo vi /boot/config.txt Uncomment these lines: framebuffer_width=1280 framebuffer_height=1024

Setting up BeerBot

Download and Install Raspberry Pi OS to SD card using Imager. Manually downloading the OS (zip-file), extracting the .img and using that seems to be more reliable than letting the Imager download the OS. https://www.raspberrypi.org/downloads/ Enable SSH Server: https://www.raspberrypi.org/documentation/remote-access/ssh/ Connect Raspberry to Network, find its IP using Angry IP Scanner: https://angryip.org/ Use PuTTy to start a SSH…