03-Functional_Testing
Instructions
Ethernet


IR Infrared

HDMI


Audio






WiFi / Bluetooth


USB

4G
KEY

RS485/232

FAQ

Last updated

















Last updated
echo none > /sys/class/leds/sys_led/trigger
echo 1 > /sys/class/leds/sys_led/brightness
echo 0 > /sys/class/leds/sys_led/brightnesscat /proc/bus/input/devices
hexdump /dev/input/event0
Press the remote control and check for event reports.cd /bin
sudo ln -s pavucontrol pavucontrol-qt
sudo apt-get update
sudo apt purge pulseaudio
sudo apt install pulseaudio
reboot$ aplay <filepath> # Play audio, use -h for help
$ amixer # Alsa tool for audio configuration, use -h for help
$ cat /proc/asound/cards # List sound cardsHDMI output:
aplay -D hw:0,0 music.wavHeadphone output:
aplay -D hw:1,0 music.wavHDMI output:
aplay -D hw:2,0 music.wavHeadphone/speaker output:
aplay -D hw:1,0 music.wav# View network device list
sudo nmcli dev
# Enable WiFi
sudo nmcli r wifi on
# Disable WiFi
sudo nmcli r wifi off
# Scan nearby hotspots
sudo nmcli dev wifi
# Connect to a hotspot (replace SSID and PASSWORD)
sudo nmcli dev wifi connect "SSID" password "PASSWORD" ifname wlan0$ sudo apt-get update
$ sudo apt-get install bluez$ hciconfig -a # Start scanning
bluetoothctl scan on
# Pair with a device (replace with target MAC)
bluetoothctl pair 28:52:E0:19:17:69
# Connect to a paired device
bluetoothctl connect 28:52:E0:19:17:69
# Trust the device for auto-connection
bluetoothctl trust 28:52:E0:19:17:69
# Disconnect
bluetoothctl disconnect 28:52:E0:19:17:69
# Unpair a device (replace with MAC)
bluetoothctl remove FC:E8:06:E7:96:AF
# Block connection from a device
bluetoothctl block FC:E8:06:E7:96:AF
# List paired devices
bluetoothctl paired-devices# Check connected devices
bluetoothctl paired-devices
# Set Bluetooth as default audio sink (replace MAC)
pacmd set-default-sink bluez_sink.28_52_E0_19_17_69.a2dp_sink
# Play audio through Bluetooth
aplay sample-15s.wavBLE (Low Energy) Scan
$ hcitool -i hci0 cmd 0x03 0x0003
$ hcitool -i hci0 cmd 08 01 3f 00 00 00 00 00 00 00
$ hcitool lescanlsblk mkdir /mnt/sda
mount /dev/sda1 /mnt/sda/
ls /mnt/sda/# lsusb# ls /dev/ttyUSB*# sudo pppd call quectel-ppp &ps -ef | grep pppd # Find the process ID
kill -9 <PID> # Terminate the process
# Repeat the dialing command# ping www.baidu.com# vim /etc/resolv.confnameserver 8.8.8.8
nameserver 8.8.4.4stty -F /dev/ttyAS3 115200 # Set baud rate (e.g., 115200 for RS485)
echo "123" > /dev/ttyAS3 # Send data through RS485
cat /dev/ttyAS3 # Receive data from RS485