IMPORTANT DISCLAIMER: The information provided on this page is NOT officially supported by the Pwnagotchi development team. These are unofficial “hacks” that users have worked out while customizing their units and decided to document for anybody else who might want to do something similar.
If you test one of these hacks yourself and it still works, it’s extra nice if you update the Last Tested On table and note any minor adjustments you may have had to make to the instructions to make it work with your particular Pwnagotchi setup. :heart:
Last tested on | Pwnagotchi version | Working? | Reference |
---|---|---|---|
2019 October 3 | Unknown | :white_check_mark: | (link) |
Some of this guide will work with other framebuffer-based displays.
apt-get update
../LCD35-show
, add lite
to the command prompt (e.g., ./LCD35-show lite
).cd ~
ln -s pwnagotchi.png pwnagotchi_1.png
ln -s pwnagotchi.png pwnagotchi_2.png
ln -s pwnagotchi.png pwnagotchi_3.png
apt install fbi
inky
in config.yml
modules-load=dwc2,g_ether
to your kernel command line (/boot/cmdline.txt
) or it will break!dtoverlay=dwc2
to the bottom of (/boot/config.txt
)/etc/rc.local
and add: fbi -T 1 -a -noverbose -t 15 -cachemem 0 /root/pwnagotchi_1.png /root/pwnagotchi_2.png /root/pwnagotchi_3.png &
And you should be good!
Last tested on | Pwnagotchi version | Working? | Reference |
---|---|---|---|
2019 October 6 | Unknown | :white_check_mark: | on Android |
2019 October 6 | Unknown | :white_check_mark: | on iPad iOS 9.3.5 |
A way to view your Pwnagotchi’s face UI wirelessly via Bluetooth on a separate device. Refresh rate is the same as the e-ink display (every few seconds). This is NOT Bluetooth tethering; this is only Bluetooth as a server on pi side; you connect the Bluetooth and get a DHCP IP address and that’s it. This hack cannot leverage the data connection.
Contributed by Systemic in the Slack.
/boot/config.txt
: #dtoverlay=pi3-disable-bt
/root/pwnagotchi/config.yml
to have 0.0.0.0
instead of 10.0.0.2
to listen as well on Bluetooth.sudo apt-get install bluez bluez-tools bridge-utils dnsmasq
```sudo modprobe bnep sudo brctl addbr pan0 sudo brctl setfd pan0 0 sudo brctl stp pan0 off sudo ifconfig pan0 172.26.0.1 netmask 255.255.255.0 sudo ip link set pan0 up
```cat <<- EOF > /tmp/dnsmasq_bt.conf```
```bind-interfaces
port=0
interface=pan0
listen-address=172.26.0.1
dhcp-range=172.26.0.2,172.26.0.100,255.255.255.0,5m
dhcp-leasefile=/tmp/dnsmasq_bt.leases
dhcp-authoritative
log-dhcp
```sudo dnsmasq -C /tmp/dnsmasq_bt.conf
sudo bt-agent -c NoInputNoOutput&
sudo bt-adapter -a hci0 --set Discoverable 1
sudo bt-adapter -a hci0 --set DiscoverableTimeout 0
sudo bt-adapter -a hci0 --set Pairable 1
sudo bt-adapter -a hci0 --set PairableTimeout 0
sudo bt-network -a hci0 -s nap pan0 &
http://172.26.0.1:8080
sudo bettercap
then ui.update
)
127.0.0.1
to 0.0.0.0
.Happy tweaking.