Install Android Debug Bridge and in a terminal start adb with sudo adb devices
.
If your device is listed you can browse to brave://inspect/#devices
and your device should be visible.
Install Android Debug Bridge and in a terminal start adb with sudo adb devices
.
If your device is listed you can browse to brave://inspect/#devices
and your device should be visible.
The rPi acts as file server for the ESP32 and as interface for the eStreamPlayer32 through the chromium web browser that comes preinstalled with Raspbian.
The output from the browser goes to the 3.5″ TFT touchscreen that is attached.
This post is about the web-interface on the rPi.
Working from memory here. Probably forgot some step.
raspi-config
and:Boot options
and set Wait for Network at Boot
to <Yes>
. Interfacing Options
and enable both SSH
and SPI
.raspi-config
./etc/fstab
to mount 192.168.0.100:/tmp/mnt/sda1/music
on /mnt/muziek
./var/www/html
named muziek
that points to /mnt/muziek
./etc/lighttpd/lighttpd.conf
and add the handler ".mp3" => "audio/mpeg",
to mimetype.assign
. LCD35-show
script.sudo raspi-config
.Boot Options
and set Wait for Network at Boot
to yes
.raspi-config
and set Boot Options -> DeskTop / CLI
to Console Autologin
.cd ~
wget -N https://raw.githubusercontent.com/jpmck/PADD/master/padd.sh
sudo chmod +x padd.sh
./padd.sh
CTRL-C
sudo apt-get update && sudo apt-get upgrade
raspi-config
and go to Interfacing Options
and enable the SPI interface.cd ~
sudo rm -rf LCD-show
git clone https://github.com/goodtft/LCD-show.git
chmod -R 755 LCD-show
cd LCD-show
sudo ./LCD35-show
To use the HDMI port again, go to the LCD-show
folder and runsudo ./LCD-hdmi
to switch back to HDMI.
raspberrytips.nl circuitdigest.com github.com/goodtft/LCD-show
After setting a static ip address in a debian based os, there is often a secondary ip address visible with ip addr show.
This is caused by the dhcpcd
service which keeps running after setting a static ip.
Stopping this service will remove the secondary ip address after a reboot or network restart.
update-rc.d dhcpcd disable service dhcpcd stop #and optionally the next line or a reboot ip addr del %YOURS-SECOND-IP% dev ethX
Replace %YOURS-SECOND-IP%
with the unwanted secondary ip address.
And replace ethx
with the interface name.
Restart the network.
Or just reboot and the secondary ip will be gone.
Works on a Volumio based Raspberry Pi and Ubuntu Server 18.04.2 LTS.