- Android Device: Running Android 5.0 or higher
- Meshtastic Device: Powered on with firmware flashed
- Bluetooth Enabled: To connect to the device
- Meshtastic App Installed: Download from the Google Play Store
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function autoScrollToLastFollower() { | |
| const lastFollower = document.querySelector( | |
| 'div[data-e2e="follow-info-popup"]>div:last-child>li:last-child' | |
| ); | |
| if (lastFollower) { | |
| lastFollower.scrollIntoView(); | |
| } else { | |
| console.info('No follower found. Make sure you are on the following page and opening list of followers.'); | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import os | |
| import subprocess | |
| from random import sample | |
| from uuid import uuid4 | |
| from pathlib import Path | |
| def create_filelist(folder, init_file, file_pattern): | |
| files = sorted([f for f in os.listdir(folder) if f.startswith(file_pattern) and f.endswith('.m4s')]) | |
| return [f"{os.path.join(folder, init_file)}"] + [f"{os.path.join(folder, file)}" for file in files] |
- Install Termux from Github: https://github.com/termux/termux-app/releases
- Download the apk and install it -> Note that installing termux from Play Store is highly discouraged.
pkg update
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| I have managed to get the alsa-plugins-a52 to output over HDMI on bazzite. | |
| Problem 1: TV's like Samsung does not support LPCM 5.1 over HDMI EARC. | |
| Problem 2: Many recievers in use today only support HDMI ARC, which means only PCM 2.0 / Dolby Digital or DTS. | |
| How to fix on Bazzite so you can enjoy surround sound in your games in your home theater setup : | |
| 1. Install alsa-plugins-a52 | |
| sudo rpm-ostree install alsa-plugins-a52 |