├── src ├── bluetooth │ ├── bluetooth.c │ └── bluetooth.h ├── watchdog │ ├── watchdog.h │ └── watchdog.c ├── notifications │ ├── notifications.h │ └── notifications.c ├── display │ ├── display.h │ └── display.c ├── graphics │ ├── graphics.h │ └── graphics.c └── main.c ├── AndroidApp ├── app │ ├── .gitignore │ ├── src │ │ ├── main │ │ │ ├── res │ │ │ │ ├── values │ │ │ │ │ ├── strings.xml │ │ │ │ │ ├── themes.xml │ │ │ │ │ └── colors.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── xml │ │ │ │ │ ├── backup_rules.xml │ │ │ │ │ └── data_extraction_rules.xml │ │ │ │ └── drawable │ │ │ │ │ ├── ic_launcher_foreground.xml │ │ │ │ │ └── ic_launcher_background.xml │ │ │ ├── java │ │ │ │ └── net │ │ │ │ │ └── yehudae │ │ │ │ │ └── esp32s3notificationsreceiver │ │ │ │ │ ├── ui │ │ │ │ │ └── theme │ │ │ │ │ │ ├── Color.kt │ │ │ │ │ │ ├── Type.kt │ │ │ │ │ │ └── Theme.kt │ │ │ │ │ ├── NotificationData.kt │ │ │ │ │ ├── NotificationSettings.kt │ │ │ │ │ ├── NotificationWorker.kt │ │ │ │ │ ├── NotificationListener.kt │ │ │ │ │ ├── DeviceDiscoveryScreen.kt │ │ │ │ │ ├── BLEService.kt │ │ │ │ │ └── SettingsScreen.kt │ │ │ └── AndroidManifest.xml │ │ └── test │ │ │ └── java │ │ │ └── net │ │ │ └── yehudae │ │ │ └── esp32s3notificationsreceiver │ │ │ └── ExampleUnitTest.kt │ ├── proguard-rules.pro │ └── build.gradle.kts ├── .idea │ ├── .name │ ├── .gitignore │ ├── codeStyles │ │ ├── codeStyleConfig.xml │ │ └── Project.xml │ ├── compiler.xml │ ├── vcs.xml │ ├── AndroidProjectSystem.xml │ ├── migrations.xml │ ├── deploymentTargetSelector.xml │ ├── misc.xml │ ├── gradle.xml │ └── runConfigurations.xml ├── gradle │ ├── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ └── libs.versions.toml ├── build.gradle.kts ├── .gitignore ├── settings.gradle.kts ├── gradle.properties ├── gradlew.bat └── gradlew ├── README.md ├── boards └── esp32.overlay ├── CMakeLists.txt └── prj.conf /src/bluetooth/bluetooth.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/bluetooth/bluetooth.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AndroidApp/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /AndroidApp/.idea/.name: -------------------------------------------------------------------------------- 1 | ESP32S3 Notifications Receiver -------------------------------------------------------------------------------- /AndroidApp/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ESP32S3-Notifications-Receiver 2 | ESP Notification receiver with BLE. Working on ESP32-S3-Touch-LCD-1.28 with Zephyr RTOS. 3 | -------------------------------------------------------------------------------- /AndroidApp/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | ESP32S3 Notifications Receiver 3 | 4 | -------------------------------------------------------------------------------- /AndroidApp/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YehudaEi/ESP32S3-Notifications-Receiver/master/AndroidApp/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /AndroidApp/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YehudaEi/ESP32S3-Notifications-Receiver/master/AndroidApp/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /AndroidApp/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YehudaEi/ESP32S3-Notifications-Receiver/master/AndroidApp/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /AndroidApp/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YehudaEi/ESP32S3-Notifications-Receiver/master/AndroidApp/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /AndroidApp/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YehudaEi/ESP32S3-Notifications-Receiver/master/AndroidApp/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /AndroidApp/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YehudaEi/ESP32S3-Notifications-Receiver/master/AndroidApp/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /AndroidApp/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YehudaEi/ESP32S3-Notifications-Receiver/master/AndroidApp/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /AndroidApp/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YehudaEi/ESP32S3-Notifications-Receiver/master/AndroidApp/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /AndroidApp/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YehudaEi/ESP32S3-Notifications-Receiver/master/AndroidApp/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /AndroidApp/.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /AndroidApp/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YehudaEi/ESP32S3-Notifications-Receiver/master/AndroidApp/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /AndroidApp/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YehudaEi/ESP32S3-Notifications-Receiver/master/AndroidApp/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /AndroidApp/.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /AndroidApp/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /AndroidApp/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |