acid-drop/README.md

81 lines
4.4 KiB
Markdown
Raw Normal View History

2024-05-23 18:42:03 -04:00
<p align="center">
<img src="./.screens/aciddrop2.png" />
2024-05-23 18:42:03 -04:00
</p>
# Work in progress
This is a custom firmware being developed for the [LilyGo T-Deck](https://www.lilygo.cc/products/t-deck), currently it is experimental & buggy.
I am terrible at C++ and still am trying to wrap my head around the language's logic, so most of this code has been shit out and written like a cowboy.
2024-05-25 22:04:47 -04:00
The project started out with as IRC bridge for [Meshtastic](https://meshtastic.org/) over MQTT, just so I could say "we have IRC over radio", which later led to me modifying the official Meshtastic [firmware](https://github.com/meshtastic/firmware) to add extended features. I am deep in the rabbit hole of embedded development and am starting from scratch making this an entirely custom firmware.
2024-05-23 18:42:03 -04:00
This is being developed in my free time as a fun project. It is no where near being useful.
2024-05-26 13:55:53 -04:00
A compiled "release" will be done once I finish somoe fo the basic features, but feel free t compile this on your own to test it out!
# Previews
2024-05-25 16:37:54 -04:00
![](./.screens/preview1.png) ![](./.screens/preview2.png)
# Flashing the Firmware
###### Using VS Code
1. Add your user to the `dialout` group: `sudo gpasswd -a YOURUSERNAME dialout` *(You will need to re-login after adding your user to the `dialout` group for it to take affect)*
2. Install [Visual Studio Code](https://code.visualstudio.com/)
3. Install the [PlatformIO plugin](https://platformio.org/install/ide?install=vscode)
4. Hold down the trackball on the device, turn it on, and plug it in to the computer.
5. Press **F1** and select `PlatformIO: Build`
6. Press **F1** and select `PlatformIO: Upload`
###### Using ESP Tool
1. Take the `firmware.bin` file from the release page and download it. *(no releases yet, we still building)*
2. Install [esptool](https://pypi.org/project/esptool/): `pip install esptool`
3. Hold down the trackball on the device, turn it on, and plug it in to the computer.
4. Confirm the serial device in your `/dev` directory *(Your device will likely be `/dev/ttyAMC0` or `/dev/ttyUSB0`)*
5. Flash the device: `esptool.py --chip esp32 --port /dev/ttyUSB0 --baud 115200 write_flash -z 0x1000 firmware.bin`
2024-05-23 18:42:03 -04:00
# Roapmap
2024-05-26 01:23:53 -04:00
###### Device functionality
- [X] Screen timeout on inactivity *(default 30 seconds)*
2024-05-26 01:23:53 -04:00
- [ ] Keyboard backlight timeout on 10 seconds oof inactivity.
- [ ] Trackball support
- [ ] Speaker support
###### Features
2024-05-25 16:38:58 -04:00
- [X] Wifi scanning & selection menu
- [ ] Saved wifi profiles
2024-05-26 01:23:53 -04:00
- [ ] Wifi Hotspot
- [ ] Notifcations Window *(All notifications will go here, from IRC, Gotify, Meshtastic, or anything)*
- [X] Status bar *(Time, Date, Notification, Wifi, and Battery)*
- [ ] XBM icons for status bar items
- [ ] Allow specifying the IRC server, port, TLS, nick, etc...
- [ ] Screensaver
###### Applications
2024-05-24 21:49:38 -04:00
- [X] IRC Client
- [X] `/raw` command for IRC client to send raw data to the server
- [ ] Add scrolling backlog for IRC to see the last 200 messages
- [X] Hilight support *(so we can see when people mention our NICK)*
2024-05-24 21:49:38 -04:00
- [ ] ChatGPT
- [ ] SSH Client
- [ ] Wardriving
2024-05-26 01:23:53 -04:00
- [ ] Evil Portal AP
2024-05-26 01:26:01 -04:00
- [ ] Local Network Probe *(Scans for devices on the wifi network you are connected to, add port scanning)*
2024-05-24 21:49:38 -04:00
- [ ] Gotify
- [ ] Meshtastic
2024-05-26 01:23:53 -04:00
- [ ] Spotify/Music player *(can we play audio throuigh Bluetoth headphones or the on-board speaker?)*
- [ ] Syslog *(All serial logs will be displayed here for on-device debugging)*
2024-05-23 18:42:03 -04:00
2024-05-25 21:03:05 -04:00
# Known issues
- Messages that exceed the screen width and wrap to the next line will throw off thje logic of calculating the max lines able to be displayed on the screen. Messages eventually go off screen.
- Input messages exceeding the screen width go off screen, and need to wrap and create a new input line, pushing up the backlog of messages.
- Some colors are not working when its only a background color or only contains a space
2024-05-26 01:07:00 -04:00
- Sometimes it will not connect to IRC even from reconnections, and you have to reboot and try again.
2024-05-26 01:11:00 -04:00
- Screen timeout can occur during an IRC reconnection and blck keyboard input
2024-05-25 21:03:05 -04:00
2024-05-23 18:42:03 -04:00
# Contributors
Join us in **#comms** on **[irc.supernets.org](irc://irc.supernets.org)** if you want to get your hands dirty.
___
###### Mirrors for this repository: [acid.vegas](https://git.acid.vegas/acid-drop) • [SuperNETs](https://git.supernets.org/acidvegas/acid-drop) • [GitHub](https://github.com/acidvegas/acid-drop) • [GitLab](https://gitlab.com/acidvegas/acid-drop) • [Codeberg](https://codeberg.org/acidvegas/acid-drop)