AmedeeBulle / pyrak811

RAK811 Python 3 library for Raspberry Pi
Apache License 2.0
50 stars 25 forks source link

Ubuntu 20.10 Support #13

Closed ryanteck closed 3 years ago

ryanteck commented 3 years ago

Customers are reporting issues with Ubuntu 20.04, investigating now to see what needs to be done.

ryanteck commented 3 years ago

Add

enable_uart=1
dtoverlay=pi3-miniuart-bt

To /boot/firmware/config.txt

ryanteck commented 3 years ago

Ok to get it working on Ubuntu 20.04 the user has to do the following:

Update the config.txt file manually, this can be done with nano by going sudo nano /boot/firmware/config.txt and to the end add

enable_uart=1
dtoverlay=pi3-miniuart-bt

After this, then reboot the Pi, and open terminal back up.

Install the required packages with sudo apt install python3-pip python3-rpi.gpio.

Then finally the library with sudo pip3 install rak811.

After this then you should be able to use the commands just the same.

IMG_20201111_1849465