├── .github └── FUNDING.yml ├── .gitignore ├── Cellular └── T-SIMCAM │ ├── 01_T-SIMCAM_ImageUploader │ ├── 01_T-SIMCAM_ImageUploader.ino │ └── config.h │ └── demo │ └── T_SIMCAM.jpg ├── E-Paper_Projects └── 01_Emoji2MiniE-Paper │ ├── ESP32_Pico_GxEPD2_BLE │ ├── ESP32_Pico_GxEPD2_BLE.ino │ ├── GxEPD2_display_selection_new_style.h │ └── GxEPD2_selection_check.h │ └── FlutterApp_epaper_emoji_ble │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── analysis_options.yaml │ ├── assets │ └── images │ │ └── iot_image.png │ ├── lib │ ├── const │ │ ├── custom_colors.dart │ │ ├── custom_styles.dart │ │ └── emoji_data.dart │ ├── main.dart │ ├── route │ │ ├── router.dart │ │ └── routing_constants.dart │ ├── screens │ │ ├── ble_list_screen.dart │ │ ├── emji_converter_screen.dart │ │ ├── emoji_screen.dart │ │ ├── splash_screen.dart │ │ └── undefined_screen.dart │ ├── util │ │ └── bitmap24.dart │ └── widgets │ │ └── ble_widget.dart │ ├── pubspec.lock │ └── pubspec.yaml ├── ESP32-LoRa ├── Chat_APP_SX1262 │ ├── Chat_APP_SX1262.ino │ ├── boards.h │ └── utilities.h ├── LoRa_GPS_Data_Viewer │ ├── Demo_SX1262_Receiver │ │ ├── Demo_SX1262_Receiver.ino │ │ ├── boards.h │ │ └── utilities.h │ └── Demo_SX1262_Transmit │ │ ├── Demo_SX1262_Transmit.ino │ │ ├── boards.h │ │ └── utilities.h └── misc │ └── Chat_APP_SX1262.jpg ├── ESP32CAM_Projects ├── ESP32_CAM_AICamera_Labelling │ ├── ESP32_CAM_ARDUINO │ │ ├── ESP32_CAM_ARDUINO.ino │ │ └── camera_pins.h │ ├── VisionAPITest │ │ ├── package-lock.json │ │ ├── resources │ │ │ └── car.jpeg │ │ └── test.js │ └── VisionServer │ │ ├── package-lock.json │ │ └── server.js ├── ESP32_CAM_DOORBELL │ └── Rev.1 │ │ ├── ESP32CAM_INMP441_ARDUINO │ │ ├── ESP32CAM_INMP441_ARDUINO.ino │ │ ├── camera_pins.h │ │ ├── slm.h │ │ └── sos-iir-filter.h │ │ └── NodejsServer │ │ └── server.js ├── ESP32_CAM_Dashcam_FLUTTER │ ├── ESP32_CAM_WEBSOCKET_SERVER │ │ ├── ESP32_CAM_WEBSOCKET_SERVER.ino │ │ ├── app_httpd.cpp │ │ ├── camera_index.h │ │ └── camera_pins.h │ ├── flutter_dashcam_clone_app │ │ ├── .gitignore │ │ ├── .metadata │ │ ├── README.md │ │ ├── android │ │ │ ├── .gitignore │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ ├── debug │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── java │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── thatproject │ │ │ │ │ │ │ └── flutter_dashcam_clone_app │ │ │ │ │ │ │ └── MainActivity.java │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ └── values │ │ │ │ │ │ └── styles.xml │ │ │ │ │ └── profile │ │ │ │ │ └── AndroidManifest.xml │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ └── gradle-wrapper.properties │ │ │ └── settings.gradle │ │ ├── images │ │ │ └── dashcam_white.png │ │ ├── ios │ │ │ ├── .gitignore │ │ │ ├── Flutter │ │ │ │ ├── AppFrameworkInfo.plist │ │ │ │ ├── Debug.xcconfig │ │ │ │ └── Release.xcconfig │ │ │ ├── Podfile │ │ │ ├── Podfile.lock │ │ │ ├── Runner-Bridging-Header.h │ │ │ ├── Runner.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── Runner.xcscheme │ │ │ ├── Runner.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── Runner │ │ │ │ ├── AppDelegate.h │ │ │ │ ├── AppDelegate.m │ │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ │ └── LaunchImage.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── LaunchImage.png │ │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ │ └── README.md │ │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ │ ├── File.swift │ │ │ │ ├── Info.plist │ │ │ │ ├── Runner.entitlements │ │ │ │ └── main.m │ │ ├── lib │ │ │ ├── blinkingTimer.dart │ │ │ ├── main.dart │ │ │ └── videoUtil.dart │ │ ├── pubspec.lock │ │ ├── pubspec.yaml │ │ └── test │ │ │ └── widget_test.dart │ └── flutter_dashcam_clone_app_ping_version │ │ ├── .gitignore │ │ ├── .metadata │ │ ├── README.md │ │ ├── android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── thatproject │ │ │ │ │ │ └── flutter_dashcam_clone_app │ │ │ │ │ │ └── MainActivity.java │ │ │ │ └── res │ │ │ │ │ ├── drawable │ │ │ │ │ └── launch_background.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ └── values │ │ │ │ │ └── styles.xml │ │ │ │ └── profile │ │ │ │ └── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ └── settings.gradle │ │ ├── images │ │ └── dashcam_white.png │ │ ├── ios │ │ ├── .gitignore │ │ ├── Flutter │ │ │ ├── AppFrameworkInfo.plist │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Podfile │ │ ├── Runner-Bridging-Header.h │ │ ├── Runner.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Runner.xcscheme │ │ ├── Runner.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── Runner │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ └── LaunchImage.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchImage.png │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ └── README.md │ │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ │ ├── File.swift │ │ │ ├── Info.plist │ │ │ ├── Runner.entitlements │ │ │ └── main.m │ │ ├── lib │ │ ├── blinkingTimer.dart │ │ ├── main.dart │ │ └── videoUtil.dart │ │ └── pubspec.yaml ├── ESP32_CAM_GoogleCloudServer │ ├── CameraWeb │ │ ├── CameraWeb.ino │ │ ├── app_httpd.cpp │ │ ├── camera_index.h │ │ └── camera_pins.h │ └── NodeServer │ │ ├── client.html │ │ ├── package-lock.json │ │ └── server.js ├── ESP32_CAM_LocalServer │ ├── CameraWeb │ │ ├── CameraWeb.ino │ │ ├── app_httpd.cpp │ │ ├── camera_index.h │ │ └── camera_pins.h │ └── NodeServer │ │ ├── client.html │ │ ├── package-lock.json │ │ └── server.js ├── ESP32_CAM_MULTICAM │ ├── Part.10-Multiple_CAM_Dashboard_with_HTTPS_WSS │ │ ├── CameraWeb │ │ │ ├── CameraWeb.ino │ │ │ └── camera_pins.h │ │ └── NodeServer_v3 │ │ │ ├── .gitignore │ │ │ ├── client.html │ │ │ ├── favicon.ico │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── server.js │ │ │ └── styles.css │ ├── Part.8-Multiple_CAM_Dashboard │ │ ├── CameraWeb │ │ │ ├── CameraWeb.ino │ │ │ └── camera_pins.h │ │ └── NodeServer │ │ │ ├── .gitignore │ │ │ ├── client.html │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── server.js │ │ │ └── styles.css │ └── Part.9-Multiple_CAM_Dashboard_with_new_features │ │ └── NodeServer_v2 │ │ ├── .gitignore │ │ ├── client.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── server.js │ │ └── styles.css ├── ESP32_CAM_TOY_CAMERA │ ├── PART1 │ │ └── MyToyCamera_LiveImageOnDisplay │ │ │ └── MyToyCamera_LiveImageOnDisplay.ino │ └── PART2 │ │ ├── LVGL_TEST │ │ └── LVGL_TEST.ino │ │ ├── MyToyCamera_LVGL_Setup │ │ └── MyToyCamera_LVGL_Setup.ino │ │ └── Touch_Controller_Demo │ │ └── Touch_Controller_Demo.ino ├── ESP32_CAM_UDP │ ├── ESP32CAM_UDP_CLIENT │ │ └── ESP32CAM_UDP_CLIENT.ino │ └── ESP32_UDP_SERVER_LovyanGFX │ │ └── ESP32_UDP_SERVER_LovyanGFX.ino ├── ESP32_CAM_WIFI_CONNECT │ ├── ESP32_CAM_WEBSOCKET_CLIENT │ │ ├── ESP32_CAM_WEBSOCKET_CLIENT.ino │ │ ├── app_httpd.cpp │ │ ├── camera_index.h │ │ └── camera_pins.h │ ├── ESP32_WEBSOCKET_SERVER_WITH_TFT_JPEG_V1 │ │ └── ESP32_WEBSOCKET_SERVER_WITH_TFT_JPEG_V1.ino │ ├── ESP32_WEBSOCKET_SERVER_WITH_TFT_JPEG_V2 │ │ └── ESP32_WEBSOCKET_SERVER_WITH_TFT_JPEG_V2.ino │ └── ESP32_WEBSOCKET_SERVER_WITH_TFT_JPEG_V3 │ │ └── ESP32_WEBSOCKET_SERVER_WITH_TFT_JPEG_V3.ino ├── ESP32_CAM_Xiaomi_Clone_FLUTTER │ ├── flutter_xiaomi_clone_app │ │ ├── .gitignore │ │ ├── .metadata │ │ ├── README.md │ │ ├── android │ │ │ ├── .gitignore │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ ├── debug │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── java │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── thatproject │ │ │ │ │ │ │ └── flutter_xiaomi_clone_app │ │ │ │ │ │ │ └── MainActivity.java │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ └── values │ │ │ │ │ │ └── styles.xml │ │ │ │ │ └── profile │ │ │ │ │ └── AndroidManifest.xml │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ └── gradle-wrapper.properties │ │ │ └── settings.gradle │ │ ├── ios │ │ │ ├── .gitignore │ │ │ ├── Flutter │ │ │ │ ├── AppFrameworkInfo.plist │ │ │ │ ├── Debug.xcconfig │ │ │ │ └── Release.xcconfig │ │ │ ├── Podfile │ │ │ ├── Podfile.lock │ │ │ ├── Runner.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── Runner.xcscheme │ │ │ ├── Runner.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── Runner │ │ │ │ ├── AppDelegate.h │ │ │ │ ├── AppDelegate.m │ │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ │ └── LaunchImage.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── LaunchImage.png │ │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ │ └── README.md │ │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ │ ├── File.swift │ │ │ │ ├── Info.plist │ │ │ │ ├── Runner-Bridging-Header.h │ │ │ │ └── main.m │ │ ├── lib │ │ │ └── main.dart │ │ ├── pubspec.lock │ │ ├── pubspec.yaml │ │ └── test │ │ │ └── widget_test.dart │ └── flutter_xiaomi_clone_app_ffmpeg │ │ ├── .flutter-plugins-dependencies │ │ ├── .gitignore │ │ ├── .metadata │ │ ├── README.md │ │ ├── android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── thatproject │ │ │ │ │ │ └── flutter_xiaomi_clone_app │ │ │ │ │ │ └── MainActivity.java │ │ │ │ └── res │ │ │ │ │ ├── drawable │ │ │ │ │ └── launch_background.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ └── values │ │ │ │ │ └── styles.xml │ │ │ │ └── profile │ │ │ │ └── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ └── settings.gradle │ │ ├── ios │ │ ├── .gitignore │ │ ├── Flutter │ │ │ ├── AppFrameworkInfo.plist │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Podfile │ │ ├── Podfile.lock │ │ ├── Runner.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Runner.xcscheme │ │ ├── Runner.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── Runner │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ └── LaunchImage.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchImage.png │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ └── README.md │ │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ │ ├── File.swift │ │ │ ├── Info.plist │ │ │ ├── Runner-Bridging-Header.h │ │ │ └── main.m │ │ ├── lib │ │ ├── blinkingTimer.dart │ │ ├── main.dart │ │ └── videoUtil.dart │ │ ├── pubspec.lock │ │ ├── pubspec.yaml │ │ └── test │ │ └── widget_test.dart ├── TicTacCamera │ └── TicTacCamera.ino └── WIRED_ESP32_CAM_with_FlutterApp │ ├── Part.1_BaudRateTest │ └── Part.1_BaudRateTest.ino │ └── Part.2_FlutterAppForSerialCam │ ├── ESP32CAM_USBSerial │ ├── ESP32CAM_USBSerial.ino │ └── camera_pins2.h │ └── esp32cam_wired_comm │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── thatproject │ │ │ │ │ └── esp32cam_wired_comm │ │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ │ ├── drawable-v21 │ │ │ │ └── launch_background.xml │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-night │ │ │ │ └── styles.xml │ │ │ │ ├── values │ │ │ │ └── styles.xml │ │ │ │ └── xml │ │ │ │ └── device_filter.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle │ ├── lib │ ├── controller │ │ └── serial_controller.dart │ └── main.dart │ └── pubspec.yaml ├── ESP32_BT_CLASSIC ├── ESP32CAM_BT_SERIAL │ ├── ESP32CAM_BT_SERIAL_ARDUINO_IDE │ │ ├── ESP32CAM_BT_SERIAL_ARDUINO_IDE.ino │ │ └── camera_pins.h │ └── android_esp32cam_bt_app │ │ ├── .gitignore │ │ ├── .metadata │ │ ├── README.md │ │ ├── android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── thatproject │ │ │ │ │ │ └── androidesp32cambtapp │ │ │ │ │ │ └── MainActivity.java │ │ │ │ └── res │ │ │ │ │ ├── drawable │ │ │ │ │ └── launch_background.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ └── values │ │ │ │ │ └── styles.xml │ │ │ │ └── profile │ │ │ │ └── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ └── settings.gradle │ │ ├── ios │ │ ├── .gitignore │ │ ├── Flutter │ │ │ ├── AppFrameworkInfo.plist │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Podfile │ │ ├── Runner.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Runner.xcscheme │ │ ├── Runner.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── Runner │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ └── LaunchImage.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchImage.png │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ └── README.md │ │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ └── main.m │ │ ├── lib │ │ ├── BluetoothDeviceListEntry.dart │ │ ├── detailpage.dart │ │ └── main.dart │ │ ├── pubspec.lock │ │ ├── pubspec.yaml │ │ └── web │ │ ├── favicon.png │ │ ├── icons │ │ ├── Icon-192.png │ │ └── Icon-512.png │ │ ├── index.html │ │ └── manifest.json ├── ESP32_BLUETOOTH_SERIAL_DEMO │ ├── ESP32_BLUETOOTH_SERIAL_ARDUINO_IDE │ │ └── ESP32_BLUETOOTH_SERIAL_ARDUINO_IDE.ino │ └── android_bluetooth_serial_app │ │ ├── .flutter-plugins-dependencies │ │ ├── .gitignore │ │ ├── .metadata │ │ ├── README.md │ │ ├── android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── thatproject │ │ │ │ │ │ └── androidbluetoothserialapp │ │ │ │ │ │ └── MainActivity.java │ │ │ │ └── res │ │ │ │ │ ├── drawable │ │ │ │ │ └── launch_background.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ └── values │ │ │ │ │ └── styles.xml │ │ │ │ └── profile │ │ │ │ └── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ └── settings.gradle │ │ ├── ios │ │ ├── .gitignore │ │ ├── Flutter │ │ │ ├── AppFrameworkInfo.plist │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Podfile │ │ ├── Runner.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Runner.xcscheme │ │ ├── Runner.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── Runner │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ └── LaunchImage.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchImage.png │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ └── README.md │ │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ └── main.m │ │ ├── lib │ │ ├── BluetoothDeviceListEntry.dart │ │ ├── ChatPage.dart │ │ ├── DiscoveryPage.dart │ │ ├── MainPage.dart │ │ └── main.dart │ │ ├── pubspec.lock │ │ ├── pubspec.yaml │ │ └── web │ │ ├── favicon.png │ │ ├── icons │ │ ├── Icon-192.png │ │ └── Icon-512.png │ │ ├── index.html │ │ └── manifest.json ├── ESP32_INMP441_BT_SERIAL │ ├── ESP32_INMP441_BT_SERIAL_ARDUINO_IDE │ │ └── ESP32_INMP441_BT_SERIAL_ARDUINO_IDE.ino │ └── android_esp32_bt_recording_app │ │ ├── .gitignore │ │ ├── .metadata │ │ ├── README.md │ │ ├── android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── thatproject │ │ │ │ │ │ └── androidesp32btrecordingapp │ │ │ │ │ │ └── MainActivity.java │ │ │ │ └── res │ │ │ │ │ ├── drawable │ │ │ │ │ └── launch_background.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ └── values │ │ │ │ │ └── styles.xml │ │ │ │ └── profile │ │ │ │ └── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ └── settings.gradle │ │ ├── ios │ │ ├── .gitignore │ │ ├── Flutter │ │ │ ├── AppFrameworkInfo.plist │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Podfile │ │ ├── Runner.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Runner.xcscheme │ │ ├── Runner.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── Runner │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ └── LaunchImage.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchImage.png │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ └── README.md │ │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ └── main.m │ │ ├── lib │ │ ├── BluetoothDeviceListEntry.dart │ │ ├── detailpage.dart │ │ ├── file_entity_list_tile.dart │ │ ├── main.dart │ │ └── wav_header.dart │ │ ├── pubspec.lock │ │ ├── pubspec.yaml │ │ └── web │ │ ├── favicon.png │ │ ├── icons │ │ ├── Icon-192.png │ │ └── Icon-512.png │ │ ├── index.html │ │ └── manifest.json └── ESP32_SSD1351_QR_BT_SERIAL │ ├── ESP32_SSD1351_QR_CODE_BT_SERIAL_ARDUINO_IDE │ └── ESP32_SSD1351_QR_CODE_BT_SERIAL_ARDUINO_IDE.ino │ └── qr_code_showing_esp32_bt_app │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── thatproject │ │ │ │ │ └── qrcodeshowingesp32btapp │ │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle │ ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Podfile │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── Runner │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── main.m │ ├── lib │ ├── BluetoothDeviceListEntry.dart │ ├── detailpage.dart │ └── main.dart │ ├── pubspec.lock │ ├── pubspec.yaml │ └── web │ ├── favicon.png │ ├── icons │ ├── Icon-192.png │ └── Icon-512.png │ ├── index.html │ └── manifest.json ├── ESP32_Flutter_JoyPad ├── ESP32_BLE_Server_simple │ └── ESP32_BLE_Server_simple.ino └── flutter_app_joypad_ble │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── flutter_app_joypad_ble │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable-v21 │ │ │ │ └── launch_background.xml │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-night │ │ │ │ └── styles.xml │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle │ ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Podfile │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h │ ├── lib │ └── main.dart │ ├── pubspec.lock │ └── pubspec.yaml ├── ESP32_LVGL ├── ChatApp_LVGL7 │ ├── Step_1_UI │ │ └── Step_1_UI.ino │ └── Step_2_ESP-NOW │ │ └── Step_2_ESP-NOW.ino ├── DynamicWIFIConnector_LVGL7 │ └── DynamicWIFIConnector_LVGL7.ino ├── ESP-IDF_Camera_Timer_For_Smartphone_LVGL7 │ ├── Part.2 │ │ └── camera_timer_ble_hid │ │ │ ├── .gitignore │ │ │ ├── .vscode │ │ │ ├── c_cpp_properties.json │ │ │ └── settings.json │ │ │ ├── CMakelists.txt │ │ │ ├── Makefile │ │ │ ├── main │ │ │ ├── CMakelists.txt │ │ │ ├── component.mk │ │ │ └── main.c │ │ │ ├── sdkconfig │ │ │ └── sdkconfig.old │ └── Part.3 │ │ └── camera_timer_ble_hid │ │ ├── .gitignore │ │ ├── CMakelists.txt │ │ ├── Makefile │ │ ├── main │ │ ├── CMakelists.txt │ │ ├── component.mk │ │ ├── esp_hidd_prf_api.c │ │ ├── esp_hidd_prf_api.h │ │ ├── hid_dev.c │ │ ├── hid_dev.h │ │ ├── hid_device_le_prf.c │ │ ├── hidd_le_prf_int.h │ │ └── main.c │ │ ├── sdkconfig │ │ └── sdkconfig.old ├── LVGL8 │ ├── 0_ILI9488_LovyanGFX │ │ └── 0_ILI9488_LovyanGFX.ino │ ├── 1_LILYPI_ST7796_LovyanGFX │ │ └── 1_LILYPI_ST7796_LovyanGFX.ino │ ├── 2_LILYPI_StackOverflow_BLE │ │ ├── 2_LILYPI_StackOverflow_BLE.ino │ │ ├── BLECont.cpp │ │ ├── BLECont.h │ │ ├── MyShortcut.cpp │ │ ├── MyShortcut.h │ │ └── header_img.c │ ├── 3_BaseProject_Network_Selector │ │ ├── 3_BaseProject_Network_Selector.ino │ │ └── MyDisplaySetup.h │ ├── 4_QR_Code_Maker │ │ ├── 4_QR_Code_Maker.ino │ │ ├── MyDisplay.h │ │ └── ui_logo_img.c │ ├── 5_System_Monitor │ │ ├── ESP32ForSysMonitor │ │ │ └── ESP32ForSysMonitor.ino │ │ ├── PythonScriptForSysMonitor │ │ │ ├── RepeatedTimer.py │ │ │ ├── main.py │ │ │ └── requirements.txt │ │ └── demo │ │ │ └── demo.gif │ └── ZX2D10GE01R-V4848_Arduino │ │ ├── ZX2D10GE01R-V4848_Arduino.ino │ │ ├── button.cpp │ │ ├── button.hpp │ │ ├── mt8901.cpp │ │ └── mt8901.hpp ├── LVGL8_SquareLine │ ├── 01_Tesla_Single_Page │ │ ├── 01_Tesla_Single_Page.ino │ │ ├── ui.c │ │ ├── ui.h │ │ ├── ui_helpers.c │ │ ├── ui_helpers.h │ │ └── ui_img_tesla_model_3_png.c │ ├── 02_Tesla_Multi_Pages │ │ ├── 02_Tesla_Multi_Pages.ino │ │ ├── ui.c │ │ ├── ui.h │ │ ├── ui_helpers.c │ │ ├── ui_helpers.h │ │ ├── ui_img_tesla_model_3_png.c │ │ ├── ui_img_tesla_model_s_png.c │ │ ├── ui_img_tesla_model_x_png.c │ │ └── ui_img_tesla_model_y_png.c │ ├── 03_Let's_build_a_GPS_Speedometer │ │ ├── Assets │ │ │ └── Assets.zip │ │ ├── SC01Plus_BN880Q_GPS_App_Part1 │ │ │ └── SC01Plus_BN880Q_GPS_App_Part1.ino │ │ ├── SC01Plus_BN880Q_GPS_App_Part2 │ │ │ ├── SC01Plus_BN880Q_GPS_App_Part2.ino │ │ │ ├── ui.c │ │ │ ├── ui.h │ │ │ ├── ui_font_Display16.c │ │ │ ├── ui_font_Display24.c │ │ │ ├── ui_font_Display40.c │ │ │ ├── ui_font_Display90.c │ │ │ ├── ui_helpers.c │ │ │ ├── ui_helpers.h │ │ │ ├── ui_img_compass_png.c │ │ │ ├── ui_img_speedbg_png.c │ │ │ └── ui_img_speedfg_png.c │ │ ├── SquareLIneProject │ │ │ ├── GPS_SPEEDOMETER.sll │ │ │ ├── GPS_SPEEDOMETER.spj │ │ │ ├── assets │ │ │ │ ├── Open 24 Display St.ttf │ │ │ │ ├── SpeedFG.png │ │ │ │ ├── compass.png │ │ │ │ ├── speedBG.png │ │ │ │ ├── ui_font_Display16.bin │ │ │ │ ├── ui_font_Display16.c │ │ │ │ ├── ui_font_Display16.fcfg │ │ │ │ ├── ui_font_Display24.bin │ │ │ │ ├── ui_font_Display24.c │ │ │ │ ├── ui_font_Display24.fcfg │ │ │ │ ├── ui_font_Display40.bin │ │ │ │ ├── ui_font_Display40.c │ │ │ │ ├── ui_font_Display40.fcfg │ │ │ │ ├── ui_font_Display90.bin │ │ │ │ ├── ui_font_Display90.c │ │ │ │ └── ui_font_Display90.fcfg │ │ │ └── cache │ │ │ │ ├── thumb_1980616663SpeedFG.png │ │ │ │ └── thumb_474080251speedBG.png │ │ └── demo │ │ │ ├── part_1_demo.gif │ │ │ └── part_2_demo.gif │ ├── 04_Turntable_MP3_Player │ │ ├── SquareLineProject │ │ │ ├── Turntable.sll │ │ │ ├── Turntable.spj │ │ │ ├── assets │ │ │ │ ├── bg.png │ │ │ │ ├── hand.png │ │ │ │ ├── turntable.png │ │ │ │ └── vol_switch.png │ │ │ └── cache │ │ │ │ ├── thumb_1821644762bg.png │ │ │ │ └── thumb_1998050180turntable.png │ │ ├── Turntable_Audio_Player │ │ │ ├── Turntable_Audio_Player.ino │ │ │ ├── touch.h │ │ │ ├── ui.c │ │ │ ├── ui.h │ │ │ ├── ui_events.h │ │ │ ├── ui_helpers.c │ │ │ ├── ui_helpers.h │ │ │ ├── ui_img_bg_png.c │ │ │ ├── ui_img_hand_png.c │ │ │ ├── ui_img_turntable_png.c │ │ │ └── ui_img_vol_switch_png.c │ │ └── demo │ │ │ └── demo.gif │ └── Arduino_GigaR1_LVGL8_3D_Printer │ │ ├── Arduino_GigaR1_LVGL8_3D_Printer.ino │ │ ├── ui.c │ │ ├── ui.h │ │ ├── ui_Screen_1_Print.c │ │ ├── ui_Screen_2_Move.c │ │ ├── ui_Screen_3_Setting.c │ │ ├── ui_comp_hook.c │ │ ├── ui_events.h │ │ ├── ui_font_Small_Font.c │ │ ├── ui_helpers.c │ │ ├── ui_helpers.h │ │ ├── ui_img_3d_printer_bg_png.c │ │ ├── ui_img_arrow_down_png.c │ │ ├── ui_img_arrow_left_png.c │ │ ├── ui_img_arrow_right_png.c │ │ ├── ui_img_arrow_up_png.c │ │ ├── ui_img_btn_main_off_png.c │ │ ├── ui_img_btn_main_on_png.c │ │ ├── ui_img_btn_move_png.c │ │ ├── ui_img_btn_pad_bottom_png.c │ │ ├── ui_img_btn_pad_top_png.c │ │ ├── ui_img_btn_print_down_png.c │ │ ├── ui_img_btn_print_png.c │ │ ├── ui_img_btn_print_top_off_png.c │ │ ├── ui_img_btn_setting_png.c │ │ ├── ui_img_btn_z_botton_png.c │ │ ├── ui_img_btn_z_top_png.c │ │ ├── ui_img_icn_bed_png.c │ │ ├── ui_img_icn_head_png.c │ │ ├── ui_img_icn_pause_png.c │ │ ├── ui_img_icn_pc_png.c │ │ ├── ui_img_icn_stop_png.c │ │ ├── ui_img_icn_time_1_png.c │ │ ├── ui_img_icn_time_2_png.c │ │ ├── ui_img_icn_usb_png.c │ │ ├── ui_img_icn_wifi_png.c │ │ ├── ui_img_print_view_bg_png.c │ │ ├── ui_img_print_view_front_png.c │ │ └── ui_img_roller_bg_png.c ├── LVGL9 │ ├── LVGL9_Benchmark_TFT-eSPI_Arduino │ │ └── LVGL9_Benchmark_TFT-eSPI_Arduino.ino │ ├── LVGL9_Ep03_Layout │ │ ├── LVGL9_Ep03_Layout.ino │ │ ├── icon_key.c │ │ ├── icon_numpad.c │ │ ├── img_bg.c │ │ └── img_user.c │ ├── LVGL9_Ep04_ExtraExample │ │ ├── LVGL9_Ep04_ExtraExample.ino │ │ └── bg.c │ ├── LVGL9_Ep04_Keyboard │ │ ├── LVGL9_Ep04_Keyboard.ino │ │ ├── icon_key.c │ │ ├── icon_numpad.c │ │ ├── img_bg.c │ │ └── img_user.c │ ├── LVGL9_Ep05_Custom_Fonts │ │ ├── LVGL9_Ep05_Custom_Fonts.ino │ │ ├── Matouch7.h │ │ ├── font_mate_60_1bpp.c │ │ ├── font_mate_60_4bpp.c │ │ ├── font_mate_60_4bpp_comp.c │ │ ├── font_segment_90.c │ │ └── font_segment_90_bpp1.c │ ├── LVGL9_Ep06_Air_Sensor_UI │ │ ├── LGFX_WT32-SC01-Plus.h │ │ ├── LVGL9_Ep06_Air_Sensor_UI.ino │ │ ├── font_arial_25.c │ │ ├── font_segment_60.c │ │ ├── font_segment_90.c │ │ ├── humi_icon.c │ │ ├── pm_cursor.c │ │ ├── temp_icon.c │ │ ├── top_img.c │ │ └── tvoc_arrow.c │ └── LVGL9_Ep07_Air_Sensor_Core │ │ ├── LGFX_WT32-SC01-Plus.h │ │ ├── LVGL9_Ep07_Air_Sensor_Core.ino │ │ ├── font_arial_25.c │ │ ├── font_segment_60.c │ │ ├── font_segment_90.c │ │ ├── humi_icon.c │ │ ├── pm_cursor.c │ │ ├── temp_icon.c │ │ ├── top_img.c │ │ └── tvoc_arrow.c ├── MyShortcuts_LVGL7 │ ├── BLECont.cpp │ ├── BLECont.h │ ├── MyShortcut.cpp │ ├── MyShortcut.h │ ├── MyShortcuts_LVGL7.ino │ ├── blank_icon.c │ ├── close_icon.c │ ├── connected_icon.c │ ├── desktop_icon.c │ ├── file_icon.c │ ├── lock_icon.c │ ├── max_icon.c │ ├── min_icon.c │ ├── task_icon.c │ ├── taskswitch_icon.c │ └── unconnected_icon.c └── SimpleNoteAPP_LVGL6 │ ├── Part0 │ ├── 0_TFT_GraphicTest │ │ └── 0_TFT_GraphicTest.ino │ ├── 1_Touch_Calibration │ │ └── 1_Touch_Calibration.ino │ ├── 2_Touch_Keypad │ │ └── 2_Touch_Keypad.ino │ └── 3_lv_HelloWorld │ │ └── 3_lv_HelloWorld.ino │ ├── Part1 │ ├── 0_lv_slider │ │ └── 0_lv_slider.ino │ ├── 1_lv_theme_night │ │ └── 1_lv_theme_night.ino │ ├── 2_lv_button_test │ │ └── 2_lv_button_test.ino │ └── 3_simple_note_step1 │ │ └── 3_simple_note_step1.ino │ └── Part2 │ ├── 0_simple_note_step2 │ └── 0_simple_note_step2.ino │ ├── 1_simple_note_step3 │ └── 1_simple_note_step3.ino │ ├── 2_simple_note_step4 │ └── 2_simple_note_step4.ino │ └── 3_simple_note_step_final │ └── 3_simple_note_step_final.ino ├── ESP32_MICROPHONE ├── Broadcasting_Your_Voice │ ├── ESP32-S3_INMP441_WebSocket_Client │ │ └── ESP32-S3_INMP441_WebSocket_Client.ino │ ├── thumbnail │ │ └── project_thumbnail.jpg │ └── wsAudioServer │ │ ├── audio_client.html │ │ ├── image │ │ └── favicon.ico │ │ ├── js │ │ └── worker.js │ │ ├── package-lock.json │ │ ├── package.json │ │ └── server.js ├── ESP32_INMP441_FLUTTER_BLE_APP │ └── flutter_app_slm │ │ ├── .gitignore │ │ ├── .metadata │ │ ├── README.md │ │ ├── android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── thatproject │ │ │ │ │ │ └── flutterappslm │ │ │ │ │ │ └── MainActivity.java │ │ │ │ └── res │ │ │ │ │ ├── drawable │ │ │ │ │ └── launch_background.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ └── values │ │ │ │ │ └── styles.xml │ │ │ │ └── profile │ │ │ │ └── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ └── settings.gradle │ │ ├── fonts │ │ ├── DSEG7Modern-Bold.ttf │ │ └── DSEG7Modern-Regular.ttf │ │ ├── ios │ │ ├── .gitignore │ │ ├── Flutter │ │ │ ├── AppFrameworkInfo.plist │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Podfile │ │ ├── Podfile.lock │ │ ├── Runner.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Runner.xcscheme │ │ ├── Runner.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── Runner │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ └── LaunchImage.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchImage.png │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ └── README.md │ │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ └── main.m │ │ ├── lib │ │ ├── main.dart │ │ └── slm_view.dart │ │ ├── pubspec.lock │ │ ├── pubspec.yaml │ │ └── web │ │ ├── favicon.png │ │ ├── icons │ │ ├── Icon-192.png │ │ └── Icon-512.png │ │ ├── index.html │ │ └── manifest.json ├── ESP32_INMP441_RECORDING │ └── ESP32_INMP441_RECORDING.ino ├── ESP32_INMP441_SETUP │ └── ESP32_INMP441_SETUP.ino ├── ESP32_INMP441_SETUP_ESP-2.X │ └── ESP32_INMP441_SETUP_ESP-2.X.ino ├── ESP32_INMP441_SLM_BLE │ ├── ESP32_FREERTOS_TASK_SLM_BLE │ │ ├── ESP32_FREERTOS_TASK_SLM_BLE.ino │ │ ├── ble.h │ │ ├── slm.h │ │ └── sos-iir-filter.h │ └── ESP32_FREERTOS_TASK_TEST │ │ └── ESP32_FREERTOS_TASK_TEST.ino ├── ESP32_INMP441_SPEECH_TO_TEXT │ ├── ESP32_INMP441_RECORDING_UPLOAD_TO_SERVER │ │ └── ESP32_INMP441_RECORDING_UPLOAD_TO_SERVER.ino │ └── NodejsServer │ │ ├── resources │ │ ├── _recording.wav │ │ └── recording.wav │ │ ├── speechAPIServer.js │ │ └── speechAPItest.js └── Wiretap_INMP441_MAX98357A_via_websocket │ ├── Client_INMP441 │ └── Client_INMP441.ino │ └── Server_MAX98357A_TTGO │ ├── Free_Fonts.h │ └── Server_MAX98357A_TTGO.ino ├── ESP32_MQTT ├── 0_AWS_Mosquitto_Test │ ├── 0_AWS_Mosquitto_Test.ino │ └── secrets.h ├── 1_ESP32CAM_AWSMQTT │ ├── 1_ESP32CAM_AWSMQTT.ino │ └── secrets.h ├── 2_Flutter_MQTT_Client_App │ ├── mqtt_esp32cam_viewer_full_version │ │ ├── .gitignore │ │ ├── .metadata │ │ ├── README.md │ │ ├── lib │ │ │ └── main.dart │ │ └── pubspec.yaml │ └── mqtt_esp32cam_viewer_ui_part │ │ ├── .gitignore │ │ ├── .metadata │ │ ├── README.md │ │ ├── lib │ │ └── main.dart │ │ └── pubspec.yaml ├── 3_Python_MQTT_Client_App │ ├── main.py │ └── requirements.txt ├── Base_ESP32CAM_HomeAssistant │ ├── Base_ESP32CAM_HomeAssistant.ino │ └── camera_pins.h └── Base_ESP32_HomeAssistant │ ├── Base_ESP32_HomeAssistant.ino │ └── ha_config.h ├── ESP32_MultiTouch_FT6236 └── GetTouchEvent │ └── GetTouchEvent.ino ├── ESP32_OTA └── Simple_OTA_Solution │ ├── Python_Flask_REST_API_Server │ └── main.py │ └── Simple_OTA_Application │ ├── ButtonCont.cpp │ ├── ButtonCont.h │ ├── Display.cpp │ ├── Display.h │ ├── FileIO.cpp │ ├── FileIO.h │ ├── MyFirmware.h │ ├── Network.cpp │ ├── Network.h │ ├── SimpleOTA.cpp │ ├── SimpleOTA.h │ ├── Simple_OTA_Application.ino │ ├── Updater.cpp │ ├── Updater.h │ ├── VersionCont.cpp │ └── VersionCont.h ├── ESP32_TTGO ├── AnimationImage │ ├── AnimationImage.ino │ └── data │ │ ├── image_0.jpg │ │ ├── image_1.jpg │ │ ├── image_10.jpg │ │ ├── image_11.jpg │ │ ├── image_12.jpg │ │ ├── image_13.jpg │ │ ├── image_14.jpg │ │ ├── image_15.jpg │ │ ├── image_16.jpg │ │ ├── image_17.jpg │ │ ├── image_18.jpg │ │ ├── image_19.jpg │ │ ├── image_2.jpg │ │ ├── image_20.jpg │ │ ├── image_21.jpg │ │ ├── image_22.jpg │ │ ├── image_23.jpg │ │ ├── image_3.jpg │ │ ├── image_4.jpg │ │ ├── image_5.jpg │ │ ├── image_6.jpg │ │ ├── image_7.jpg │ │ ├── image_8.jpg │ │ └── image_9.jpg ├── BLE_Secure_Server │ ├── BLE_Secure_Server.ino │ ├── Free_Fonts.h │ └── data │ │ ├── battery_01.jpg │ │ ├── battery_02.jpg │ │ ├── battery_03.jpg │ │ ├── battery_04.jpg │ │ ├── battery_05.jpg │ │ ├── bt_blue.jpg │ │ └── bt_white.jpg ├── ESP32CAM_WiFi_Direct │ └── ESP32CAM_WiFi_Direct.ino ├── ESP32CAM_WiFi_Direct_v2_Faster │ ├── ESP32CAM_Client_RGB565 │ │ └── ESP32CAM_Client_RGB565.ino │ ├── ESP32TTGO_Server_Dual_Core_JPEG │ │ └── ESP32TTGO_Server_Dual_Core_JPEG.ino │ ├── ESP32TTGO_Server_JPEG │ │ └── ESP32TTGO_Server_JPEG.ino │ └── ESP32TTGO_Server_RGB565 │ │ └── ESP32TTGO_Server_RGB565.ino ├── GY-BNO055 │ └── TTGO_GY-BNO055_Heading │ │ └── TTGO_GY-BNO055_Heading.ino ├── INMP441_MeterBarForSoundLevel │ ├── INMP441_MeterBarForSoundLevel.ino │ └── sos-iir-filter.h ├── TTGO_Battery_Indicator │ ├── TTGO_Battery_Indicator.ino │ └── data │ │ ├── battery_01.jpg │ │ ├── battery_02.jpg │ │ ├── battery_03.jpg │ │ ├── battery_04.jpg │ │ └── battery_05.jpg ├── TTGO_T-Camera │ └── CameraWebServerForTCamera │ │ └── CameraWebServerForTCamera.ino ├── Walkie-Talkie_Project │ ├── Client │ │ ├── Client.ino │ │ ├── Const.h │ │ ├── Free_Fonts.h │ │ └── I2s_Setting.h │ ├── Server │ │ ├── Const.h │ │ ├── Free_Fonts.h │ │ ├── I2s_Setting.h │ │ └── Server.ino │ └── Server_NodeJS │ │ ├── package.json │ │ └── server.js └── my_hardware_key_demo_app │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── thatproject │ │ │ │ │ └── my_hardware_key_demo_app │ │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values │ │ │ │ └── styles.xml │ │ │ │ └── xml │ │ │ │ └── device_filter.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle │ ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Podfile │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── Runner │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── main.m │ ├── lib │ ├── controller │ │ └── serial_controller.dart │ └── main.dart │ ├── pubspec.lock │ └── pubspec.yaml ├── ESP32_UWB ├── 0_ESP32TAG │ ├── 0_ESP32TAG.ino │ ├── MyDW1000Ranging.h │ └── MyDisplaySetup.h ├── 1_My_Anchor_With_Audio │ ├── 1_My_Anchor_With_Audio.ino │ └── data │ │ ├── Connected.wav │ │ ├── Disconnected.wav │ │ ├── Over10m.wav │ │ └── Over20m.wav ├── 2_My-ESP32Tag-App │ ├── ESP32AnchorDevice_For_App │ │ └── ESP32AnchorDevice_For_App.ino │ └── ESP32TagDevice_For_App │ │ ├── ESP32TagDevice_For_App.ino │ │ ├── MyDW1000Ranging.h │ │ └── MyDisplaySetup.h ├── 3_Reyax_UWB_Project │ └── LVGL8_Anchor_Device │ │ ├── BG_Image.c │ │ ├── LGFX_WT32-SC01-Plus.h │ │ ├── LVGL8_Anchor_Device.ino │ │ ├── ui.c │ │ ├── ui.h │ │ ├── ui_Screen1.c │ │ ├── ui_events.h │ │ ├── ui_font_Bold60.c │ │ ├── ui_helpers.c │ │ └── ui_helpers.h └── 4_UWB_Trilateration │ ├── 4_UWB_Trilateration.ino │ ├── Trilateration.hpp │ └── config.h ├── ESP32_VideoPlayer └── MiniLegoTV │ ├── MiniLegoTV.ino │ ├── config.h │ ├── demo │ └── demo.gif │ ├── esp32_audio_task.h │ └── mjpeg_decode_draw_task.h ├── ESP32_dust_sensor_firestore_FLUTTER ├── DustFirestore │ ├── .firebaserc │ ├── .gitignore │ ├── firebase.json │ ├── functions │ │ ├── .gitignore │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── tslint.json │ └── public │ │ ├── 404.html │ │ └── index.html ├── Esp32_Dust_Sensor_WIFI │ └── Esp32_Dust_Sensor_WIFI.ino └── flutter_dust_firestore_app │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── thatproject │ │ │ │ │ └── flutter_dust_firestore_app │ │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle │ ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Podfile │ ├── Podfile.lock │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── Runner │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── main.m │ ├── lib │ └── main.dart │ ├── pubspec.lock │ └── pubspec.yaml ├── ESP32_vs_PortentaH7 └── Core_Speed_Test │ ├── H7_Dual_Core_Test │ └── H7_Dual_Core_Test.ino │ └── S3_Dual_Core_Test │ └── S3_Dual_Core_Test.ino ├── ESP8266_BASIC_GPS ├── ESP8266_BAISC_GPS_MODULE_FINAL │ └── ESP8266_BAISC_GPS_MODULE_FINAL.ino ├── ESP8266_BAISC_GPS_MODULE_TEST │ └── ESP8266_BAISC_GPS_MODULE_TEST.ino └── ESP8266_BASIC_GPS_ILI9488_TEST │ └── ESP8266_BASIC_GPS_ILI9488_TEST.ino ├── ESP8266_GOOGLEMAP_GPS ├── ESP8266_GOOGLEMAP_GPS_ILI9488_FINAL │ ├── ESP8266_GOOGLEMAP_GPS_ILI9488_FINAL.ino │ └── List_SPIFFS.h ├── ESP8266_GOOGLEMAP_GPS_ILI9488_TOUCHCONTROLLER │ └── ESP8266_GOOGLEMAP_GPS_ILI9488_TOUCHCONTROLLER.ino └── ESP8266_GOOGLEMAP_GPS_ILI9488_WEB_IMAGE │ ├── ESP8266_GOOGLEMAP_GPS_ILI9488_WEB_IMAGE.ino │ ├── List_SPIFFS.h │ └── Web_Fetch.h ├── ESP8266_GPS_DATA_LOG └── ESP8266_GPS_TRACKER │ └── ESP8266_GPS_TRACKER.ino ├── ESP8266_Twitter_Hash_Search ├── ESP8266_Twitter_Hash_Search.ino ├── List_SPIFFS.h ├── Web_Fetch.h └── data │ └── placeholder.jpg ├── ESPNOW └── ESPNOW_ESP8266_MASTER_ESP32_SLAVE │ ├── ESPNOW_ESP32_SLAVE_SSD1351 │ └── ESPNOW_ESP32_SLAVE_SSD1351.ino │ ├── ESPNOW_ESP8266_MASTER │ └── ESPNOW_ESP8266_MASTER.ino │ └── ESPNOW_ESP8266_MASTER_ILI9341 │ └── ESPNOW_ESP8266_MASTER_ILI9341.ino ├── ESp32_Flutter_Android_wifi_credential_update_via_USB ├── ESP32_WIFI_UPDATE │ └── ESP32_WIFI_UPDATE.ino └── flutter_update_wifi_credential │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── android │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── thatproject │ │ │ │ │ └── flutter_update_wifi_credential │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values │ │ │ │ └── styles.xml │ │ │ │ └── xml │ │ │ │ └── device_filter.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle │ ├── ios │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Podfile │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ └── contents.xcworkspacedata │ └── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h │ ├── lib │ └── main.dart │ ├── pubspec.lock │ ├── pubspec.yaml │ └── test │ └── widget_test.dart ├── Esp32_BLE_to_BLE ├── ESP32_ble_client │ └── ESP32_ble_client.ino ├── ESP32_ble_client_v2 │ └── ESP32_ble_client_v2.ino └── ESP32_ble_server │ └── ESP32_ble_server.ino ├── Esp32_Flutter_Android_usb_serial_comm ├── ESP32_USB_SERIAL │ └── ESP32_USB_SERIAL.ino └── flutter_app_esp32_usb_serial │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── android │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── thatproject │ │ │ │ │ └── flutter_app_esp32_usb_serial │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values │ │ │ │ └── styles.xml │ │ │ │ └── xml │ │ │ │ └── device_filter.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle │ ├── ios │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Podfile │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ └── contents.xcworkspacedata │ └── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h │ ├── lib │ └── main.dart │ ├── pubspec.lock │ ├── pubspec.yaml │ └── test │ └── widget_test.dart ├── Esp32_Flutter_BLE_LocalNoti ├── ESP32_ble_server │ └── ESP32_ble_server.ino └── flutter_blue_localnotify │ ├── .gitignore │ ├── .metadata │ ├── Pods │ ├── README.md │ ├── android │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── thatproject │ │ │ │ │ └── flutter_blue_localnotify │ │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ ├── app_icon.png │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle │ ├── ios │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ ├── Release.xcconfig │ │ └── flutter_export_environment.sh │ ├── Podfile │ ├── Podfile.lock │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ └── contents.xcworkspacedata │ └── Runner │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── main.m │ ├── lib │ ├── main.dart │ └── widgets.dart │ ├── pubspec.lock │ └── pubspec.yaml ├── Esp32_Flutter_firebase_DHT ├── esp32_App │ └── esp32_App.ino ├── esp32_Firebase_test │ └── esp32_Firebase_test.ino └── esp32_firebase │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── android │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── ideasnproject │ │ │ │ │ └── esp32_firebase │ │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle │ ├── ios │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Podfile │ ├── Podfile.lock │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── Runner │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── main.m │ ├── lib │ ├── CircleProgress.dart │ ├── Dashboard.dart │ └── main.dart │ ├── pubspec.lock │ └── pubspec.yaml ├── Esp32_MPU6050_MahonyARHS ├── MPU6050_Calibration_ESP32 │ └── MPU6050_Calibration_ESP32.ino ├── MahonyAHRS_ESP32 │ └── MahonyAHRS_ESP32.ino └── MahonyAHRS_ESP32_BLE │ └── MahonyAHRS_ESP32_BLE.ino ├── Esp32_MPU6050_ble_FLUTTER ├── esp32_mpu6050_ble │ ├── MPU6050_6Axis_MotionApps20.h │ └── esp32_mpu6050_ble.ino ├── esp32_mpu6050_test │ ├── MPU6050_6Axis_MotionApps20.h │ └── esp32_mpu6050_test.ino └── flutter_app_esp32_ble_mpu6050 │ ├── .gitignore │ ├── .metadata │ ├── Pods │ ├── README.md │ ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── thatproject │ │ │ │ │ └── flutter_app_esp32_ble_mpu6050 │ │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle │ ├── assets │ └── small_breadBoard.obj │ ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Podfile │ ├── Podfile.lock │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── Runner │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── main.m │ ├── lib │ ├── main.dart │ ├── mpu6050_page.dart │ └── widgets.dart │ ├── pubspec.lock │ ├── pubspec.yaml │ └── test │ └── widget_test.dart ├── Esp32_display_ssd1351_jpeg ├── display_ssd1351_jpeg │ ├── data │ │ ├── 0.jpg │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ ├── 5.jpg │ │ ├── 6.jpg │ │ ├── 7.jpg │ │ ├── 8.jpg │ │ └── 9.jpg │ └── display_ssd1351_jpeg.ino └── test │ └── test.ino ├── Esp32_dust_sensor_ble_FLUTTER ├── Esp32_dust_sensor_test │ └── Esp32_dust_sensor_test.ino └── flutter_app_esp32_dust_sensor │ ├── .gitignore │ ├── .metadata │ ├── Pods │ ├── README.md │ ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── thatproject │ │ │ │ │ └── flutter_app_esp32_dust_sensor │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle │ ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Podfile │ ├── Podfile.lock │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h │ ├── lib │ ├── main.dart │ ├── sensor_page.dart │ └── widgets.dart │ ├── pubspec.lock │ └── pubspec.yaml ├── Esp32_jpeg ├── fileTest │ └── fileTest.ino ├── final │ └── final.ino └── test │ ├── data │ ├── 00.jpg │ ├── 01.jpg │ ├── 010.jpg │ ├── 011.jpg │ ├── 012.jpg │ ├── 013.jpg │ ├── 014.jpg │ ├── 015.jpg │ ├── 016.jpg │ ├── 017.jpg │ ├── 018.jpg │ ├── 019.jpg │ ├── 02.jpg │ ├── 020.jpg │ ├── 021.jpg │ ├── 022.jpg │ ├── 023.jpg │ ├── 024.jpg │ ├── 025.jpg │ ├── 026.jpg │ ├── 027.jpg │ ├── 028.jpg │ ├── 029.jpg │ ├── 03.jpg │ ├── 030.jpg │ ├── 031.jpg │ ├── 032.jpg │ ├── 033.jpg │ ├── 034.jpg │ ├── 035.jpg │ ├── 036.jpg │ ├── 037.jpg │ ├── 038.jpg │ ├── 039.jpg │ ├── 04.jpg │ ├── 040.jpg │ ├── 041.jpg │ ├── 042.jpg │ ├── 043.jpg │ ├── 044.jpg │ ├── 045.jpg │ ├── 05.jpg │ ├── 06.jpg │ ├── 07.jpg │ ├── 08.jpg │ └── 09.jpg │ └── test.ino ├── Esp32_temperature_humidity ├── Esp32_temperature_humidity.ino └── data │ ├── humidity.jpg │ └── temperature.jpg ├── Esp32_temperature_humidity_ble_FLUTTER ├── Esp32_Ble_test │ └── Esp32_Ble_test.ino ├── Esp32_ble_app │ └── Esp32_ble_app.ino └── flutter_ble_app │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── android │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── eric │ │ │ │ │ └── flutter_ble_app │ │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle │ ├── flutter_ble-master │ ├── .gitignore │ ├── .metadata │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── android │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── settings.gradle │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ └── ai │ │ │ └── longev │ │ │ └── flutter │ │ │ └── flutter_ble │ │ │ ├── AdvertisementParser.java │ │ │ ├── FlutterBlePlugin.java │ │ │ └── ProtoMaker.java │ ├── example │ │ ├── .gitignore │ │ ├── .metadata │ │ ├── README.md │ │ ├── android │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ ├── debug │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── java │ │ │ │ │ │ └── ai │ │ │ │ │ │ │ └── longev │ │ │ │ │ │ │ └── flutter │ │ │ │ │ │ │ └── flutter_ble_example │ │ │ │ │ │ │ └── MainActivity.java │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ └── values │ │ │ │ │ │ └── styles.xml │ │ │ │ │ └── profile │ │ │ │ │ └── AndroidManifest.xml │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ └── gradle-wrapper.properties │ │ │ └── settings.gradle │ │ ├── ios │ │ │ ├── Flutter │ │ │ │ ├── AppFrameworkInfo.plist │ │ │ │ ├── Debug.xcconfig │ │ │ │ └── Release.xcconfig │ │ │ ├── Podfile │ │ │ ├── Podfile.lock │ │ │ ├── Runner.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── Runner.xcscheme │ │ │ ├── Runner.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── Runner │ │ │ │ ├── AppDelegate.h │ │ │ │ ├── AppDelegate.m │ │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ │ └── LaunchImage.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── LaunchImage.png │ │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ │ └── README.md │ │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ │ ├── Info.plist │ │ │ │ └── main.m │ │ ├── lib │ │ │ ├── main.dart │ │ │ └── widgets.dart │ │ ├── pubspec.lock │ │ ├── pubspec.yaml │ │ └── test │ │ │ └── widget_test.dart │ ├── ios │ │ ├── .gitignore │ │ ├── Assets │ │ │ └── .gitkeep │ │ ├── Classes │ │ │ ├── FlutterBlePlugin.h │ │ │ └── FlutterBlePlugin.m │ │ ├── flutter_ble.podspec │ │ └── gen │ │ │ ├── Flutterblue.pbobjc.h │ │ │ └── Flutterblue.pbobjc.m │ ├── lib │ │ ├── flutter_ble.dart │ │ ├── gen │ │ │ ├── flutterblue.pb.dart │ │ │ ├── flutterblue.pbenum.dart │ │ │ ├── flutterblue.pbjson.dart │ │ │ └── flutterblue.pbserver.dart │ │ └── src │ │ │ ├── bluetooth_characteristic.dart │ │ │ ├── bluetooth_descriptor.dart │ │ │ ├── bluetooth_device.dart │ │ │ ├── bluetooth_service.dart │ │ │ ├── constants.dart │ │ │ ├── flutter_ble.dart │ │ │ └── guid.dart │ ├── protos │ │ ├── flutterblue.proto │ │ └── regenerate.md │ ├── pubspec.lock │ ├── pubspec.yaml │ └── test │ │ └── flutter_ble_test.dart │ ├── images │ ├── humidity.png │ └── temperature.png │ ├── ios │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Podfile │ ├── Podfile.lock │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ └── contents.xcworkspacedata │ └── Runner │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── main.m │ ├── lib │ ├── main.dart │ └── widgets.dart │ ├── pubspec.lock │ └── pubspec.yaml ├── Esp32_ultrasonic_range_finder ├── Esp32_Ultrasonic_module │ └── Esp32_Ultrasonic_module.ino ├── Esp32_Ultrasonic_module_BLE │ └── Esp32_Ultrasonic_module_BLE.ino └── flutter_app │ └── esp32_ultrasonic_distance_ble │ ├── .gitignore │ ├── .metadata │ ├── Pods │ ├── README.md │ ├── android │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── ideasnproject │ │ │ │ │ └── esp32_ultrasonic_distance_ble │ │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle │ ├── ios │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Podfile │ ├── Podfile.lock │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ └── contents.xcworkspacedata │ └── Runner │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── main.m │ ├── lib │ ├── main.dart │ └── widgets.dart │ ├── pubspec.lock │ └── pubspec.yaml ├── Esp32_wifi_ssid_pw_via_ble ├── Esp32_WIFI_BLE │ └── Esp32_WIFI_BLE.ino └── flutter_wifi_setter_ble │ ├── .gitignore │ ├── .metadata │ ├── Pods │ ├── README.md │ ├── android │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── thatproject │ │ │ │ │ └── flutter_wifi_setter_ble │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle │ ├── ios │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Podfile │ ├── Podfile.lock │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ └── contents.xcworkspacedata │ └── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h │ ├── lib │ └── main.dart │ ├── pubspec.lock │ ├── pubspec.yaml │ └── test │ └── widget_test.dart ├── FIREBASE ├── Cloud_Firestore_Application │ ├── 0_ESP32TTGO_DHT11 │ │ ├── 0_ESP32TTGO_DHT11.ino │ │ ├── Display.cpp │ │ └── Display.h │ ├── 1_Network_Class │ │ ├── 1_Network_Class.ino │ │ ├── Display.cpp │ │ ├── Display.h │ │ ├── Network.cpp │ │ └── Network.h │ ├── 2_Firebase_Client │ │ ├── 2_Firebase_Client.ino │ │ ├── Display.cpp │ │ ├── Display.h │ │ ├── Network.cpp │ │ └── Network.h │ ├── 3_Display_Done │ │ ├── 3_Display_Done.ino │ │ ├── Display.cpp │ │ ├── Display.h │ │ ├── Network.cpp │ │ ├── Network.h │ │ └── data │ │ │ ├── icon_firebase_off.jpg │ │ │ ├── icon_firebase_on.jpg │ │ │ ├── icon_wifi_off.jpg │ │ │ └── icon_wifi_on.jpg │ └── 4_iot_firestore_flutter_app │ │ ├── .gitignore │ │ ├── .metadata │ │ ├── README.md │ │ ├── assets │ │ └── images │ │ │ ├── back_arrow.png │ │ │ ├── humidity_icon.png │ │ │ ├── iot_image.png │ │ │ └── temperature_icon.png │ │ ├── lib │ │ ├── auth_helper.dart │ │ ├── const │ │ │ ├── custom_colors.dart │ │ │ └── custom_styles.dart │ │ ├── main.dart │ │ ├── model │ │ │ └── sensor.dart │ │ ├── route │ │ │ ├── router.dart │ │ │ └── routing_constants.dart │ │ ├── screens │ │ │ ├── dashboard_screen.dart │ │ │ ├── signin_screen.dart │ │ │ ├── signup_screen.dart │ │ │ ├── splash_screen.dart │ │ │ └── undefined_screen.dart │ │ └── widgets │ │ │ ├── my_password_field.dart │ │ │ ├── my_sensor_card.dart │ │ │ ├── my_text_button.dart │ │ │ └── my_text_field.dart │ │ ├── pubspec.lock │ │ └── pubspec.yaml ├── STREAMING_FROM_ESP32_TO_ESP8266 │ ├── ESP32_SSD1351_DHT11 │ │ └── ESP32_SSD1351_DHT11.ino │ ├── ESP32_SSD1351_DHT11_FIREBASE │ │ └── ESP32_SSD1351_DHT11_FIREBASE.ino │ └── ESP8266_ILI9341_NTPTIME │ │ ├── ESP8266_ILI9341_NTPTIME.ino │ │ ├── NotoSansBold15.h │ │ ├── NotoSansBold36.h │ │ └── data │ │ └── bg.jpg └── STREAMING_FROM_ESP_TO_FLUTTER │ └── flutter_realtime_dht11 │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── thatproject │ │ │ │ │ └── firebase_realtimedb │ │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle │ ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Podfile │ ├── Podfile.lock │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── Runner │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── main.m │ ├── lib │ ├── dht.dart │ ├── main.dart │ └── singlepage_app.dart │ ├── pubspec.lock │ ├── pubspec.yaml │ └── web │ ├── favicon.png │ ├── icons │ ├── Icon-192.png │ └── Icon-512.png │ ├── index.html │ └── manifest.json ├── LICENSE ├── MESSAGE └── Twilio │ └── 0_ESP32TTGO_FIRESTORE_SMS │ ├── 0_ESP32TTGO_FIRESTORE_SMS.ino │ ├── Display.cpp │ ├── Display.h │ ├── Messenger.cpp │ ├── Messenger.h │ ├── Network.cpp │ ├── Network.h │ └── data │ ├── icon_firebase_off.jpg │ ├── icon_firebase_on.jpg │ ├── icon_wifi_off.jpg │ └── icon_wifi_on.jpg └── README.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: 0015 2 | -------------------------------------------------------------------------------- /Cellular/T-SIMCAM/demo/T_SIMCAM.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Cellular/T-SIMCAM/demo/T_SIMCAM.jpg -------------------------------------------------------------------------------- /E-Paper_Projects/01_Emoji2MiniE-Paper/FlutterApp_epaper_emoji_ble/README.md: -------------------------------------------------------------------------------- 1 | # Mini E-Paper | Ep1. Uploading Emoji to E-Paper from Flutter App(iOS & Android) 2 | https://youtu.be/pP9YXFNOBhY 3 | 4 | # My Channel 5 | www.that-project.com -------------------------------------------------------------------------------- /E-Paper_Projects/01_Emoji2MiniE-Paper/FlutterApp_epaper_emoji_ble/assets/images/iot_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/E-Paper_Projects/01_Emoji2MiniE-Paper/FlutterApp_epaper_emoji_ble/assets/images/iot_image.png -------------------------------------------------------------------------------- /E-Paper_Projects/01_Emoji2MiniE-Paper/FlutterApp_epaper_emoji_ble/lib/const/custom_colors.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | // Colors 4 | const kMainBG = Color(0xff191720); 5 | const kTextFieldFill = Color(0xff1E1C24); 6 | const kCardBG = Color(0xffffffff); 7 | -------------------------------------------------------------------------------- /E-Paper_Projects/01_Emoji2MiniE-Paper/FlutterApp_epaper_emoji_ble/lib/route/routing_constants.dart: -------------------------------------------------------------------------------- 1 | const String SplashScreenRoute = '/'; 2 | const String EmojiScreenRoute = '/Emoji'; 3 | const String EmojiConverterScreenRoute = '/EmojiConverter'; 4 | const String BLEScreenRoute = '/BLEList'; 5 | -------------------------------------------------------------------------------- /ESP32-LoRa/misc/Chat_APP_SX1262.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32-LoRa/misc/Chat_APP_SX1262.jpg -------------------------------------------------------------------------------- /ESP32CAM_Projects/ESP32_CAM_AICamera_Labelling/VisionAPITest/resources/car.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32CAM_Projects/ESP32_CAM_AICamera_Labelling/VisionAPITest/resources/car.jpeg -------------------------------------------------------------------------------- /ESP32CAM_Projects/ESP32_CAM_Dashcam_FLUTTER/flutter_dashcam_clone_app/android/.gitignore: -------------------------------------------------------------------------------- 1 | gradle-wrapper.jar 2 | /.gradle 3 | /captures/ 4 | /gradlew 5 | /gradlew.bat 6 | /local.properties 7 | GeneratedPluginRegistrant.java 8 | -------------------------------------------------------------------------------- /ESP32CAM_Projects/ESP32_CAM_Dashcam_FLUTTER/flutter_dashcam_clone_app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32CAM_Projects/ESP32_CAM_Dashcam_FLUTTER/flutter_dashcam_clone_app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /ESP32CAM_Projects/ESP32_CAM_Dashcam_FLUTTER/flutter_dashcam_clone_app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32CAM_Projects/ESP32_CAM_Dashcam_FLUTTER/flutter_dashcam_clone_app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /ESP32CAM_Projects/ESP32_CAM_Dashcam_FLUTTER/flutter_dashcam_clone_app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32CAM_Projects/ESP32_CAM_Dashcam_FLUTTER/flutter_dashcam_clone_app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ESP32CAM_Projects/ESP32_CAM_Dashcam_FLUTTER/flutter_dashcam_clone_app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32CAM_Projects/ESP32_CAM_Dashcam_FLUTTER/flutter_dashcam_clone_app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ESP32CAM_Projects/ESP32_CAM_Dashcam_FLUTTER/flutter_dashcam_clone_app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32CAM_Projects/ESP32_CAM_Dashcam_FLUTTER/flutter_dashcam_clone_app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ESP32CAM_Projects/ESP32_CAM_Dashcam_FLUTTER/flutter_dashcam_clone_app/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | android.enableR8=true 3 | android.useAndroidX=true 4 | android.enableJetifier=true 5 | -------------------------------------------------------------------------------- /ESP32CAM_Projects/ESP32_CAM_Dashcam_FLUTTER/flutter_dashcam_clone_app/images/dashcam_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32CAM_Projects/ESP32_CAM_Dashcam_FLUTTER/flutter_dashcam_clone_app/images/dashcam_white.png -------------------------------------------------------------------------------- /ESP32CAM_Projects/ESP32_CAM_Dashcam_FLUTTER/flutter_dashcam_clone_app/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /ESP32CAM_Projects/ESP32_CAM_Dashcam_FLUTTER/flutter_dashcam_clone_app/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /ESP32CAM_Projects/ESP32_CAM_Dashcam_FLUTTER/flutter_dashcam_clone_app/ios/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | // 2 | // Use this file to import your target's public headers that you would like to expose to Swift. 3 | // 4 | 5 | -------------------------------------------------------------------------------- /ESP32CAM_Projects/ESP32_CAM_Dashcam_FLUTTER/flutter_dashcam_clone_app/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ESP32CAM_Projects/ESP32_CAM_Dashcam_FLUTTER/flutter_dashcam_clone_app/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface AppDelegate : FlutterAppDelegate 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /ESP32CAM_Projects/ESP32_CAM_Dashcam_FLUTTER/flutter_dashcam_clone_app/ios/Runner/File.swift: -------------------------------------------------------------------------------- 1 | // 2 | // File.swift 3 | // Runner 4 | // 5 | // Created by Eric Nam on 12/12/19. 6 | // 7 | 8 | import Foundation 9 | -------------------------------------------------------------------------------- /ESP32CAM_Projects/ESP32_CAM_Dashcam_FLUTTER/flutter_dashcam_clone_app_ping_version/android/.gitignore: -------------------------------------------------------------------------------- 1 | gradle-wrapper.jar 2 | /.gradle 3 | /captures/ 4 | /gradlew 5 | /gradlew.bat 6 | /local.properties 7 | GeneratedPluginRegistrant.java 8 | -------------------------------------------------------------------------------- /ESP32CAM_Projects/ESP32_CAM_Dashcam_FLUTTER/flutter_dashcam_clone_app_ping_version/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | android.enableR8=true 3 | android.useAndroidX=true 4 | android.enableJetifier=true 5 | -------------------------------------------------------------------------------- /ESP32CAM_Projects/ESP32_CAM_Dashcam_FLUTTER/flutter_dashcam_clone_app_ping_version/images/dashcam_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32CAM_Projects/ESP32_CAM_Dashcam_FLUTTER/flutter_dashcam_clone_app_ping_version/images/dashcam_white.png -------------------------------------------------------------------------------- /ESP32CAM_Projects/ESP32_CAM_Dashcam_FLUTTER/flutter_dashcam_clone_app_ping_version/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /ESP32CAM_Projects/ESP32_CAM_Dashcam_FLUTTER/flutter_dashcam_clone_app_ping_version/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /ESP32CAM_Projects/ESP32_CAM_Dashcam_FLUTTER/flutter_dashcam_clone_app_ping_version/ios/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | // 2 | // Use this file to import your target's public headers that you would like to expose to Swift. 3 | // 4 | 5 | -------------------------------------------------------------------------------- /ESP32CAM_Projects/ESP32_CAM_Dashcam_FLUTTER/flutter_dashcam_clone_app_ping_version/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ESP32CAM_Projects/ESP32_CAM_Dashcam_FLUTTER/flutter_dashcam_clone_app_ping_version/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface AppDelegate : FlutterAppDelegate 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /ESP32CAM_Projects/ESP32_CAM_Dashcam_FLUTTER/flutter_dashcam_clone_app_ping_version/ios/Runner/File.swift: -------------------------------------------------------------------------------- 1 | // 2 | // File.swift 3 | // Runner 4 | // 5 | // Created by Eric Nam on 12/12/19. 6 | // 7 | 8 | import Foundation 9 | -------------------------------------------------------------------------------- /ESP32CAM_Projects/ESP32_CAM_MULTICAM/Part.10-Multiple_CAM_Dashboard_with_HTTPS_WSS/NodeServer_v3/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32CAM_Projects/ESP32_CAM_MULTICAM/Part.10-Multiple_CAM_Dashboard_with_HTTPS_WSS/NodeServer_v3/favicon.ico -------------------------------------------------------------------------------- /ESP32CAM_Projects/ESP32_CAM_Xiaomi_Clone_FLUTTER/flutter_xiaomi_clone_app/android/.gitignore: -------------------------------------------------------------------------------- 1 | gradle-wrapper.jar 2 | /.gradle 3 | /captures/ 4 | /gradlew 5 | /gradlew.bat 6 | /local.properties 7 | GeneratedPluginRegistrant.java 8 | -------------------------------------------------------------------------------- /ESP32CAM_Projects/ESP32_CAM_Xiaomi_Clone_FLUTTER/flutter_xiaomi_clone_app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32CAM_Projects/ESP32_CAM_Xiaomi_Clone_FLUTTER/flutter_xiaomi_clone_app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /ESP32CAM_Projects/ESP32_CAM_Xiaomi_Clone_FLUTTER/flutter_xiaomi_clone_app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32CAM_Projects/ESP32_CAM_Xiaomi_Clone_FLUTTER/flutter_xiaomi_clone_app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /ESP32CAM_Projects/ESP32_CAM_Xiaomi_Clone_FLUTTER/flutter_xiaomi_clone_app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32CAM_Projects/ESP32_CAM_Xiaomi_Clone_FLUTTER/flutter_xiaomi_clone_app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ESP32CAM_Projects/ESP32_CAM_Xiaomi_Clone_FLUTTER/flutter_xiaomi_clone_app/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | android.enableR8=true 3 | android.useAndroidX=true 4 | android.enableJetifier=true 5 | -------------------------------------------------------------------------------- /ESP32CAM_Projects/ESP32_CAM_Xiaomi_Clone_FLUTTER/flutter_xiaomi_clone_app/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /ESP32CAM_Projects/ESP32_CAM_Xiaomi_Clone_FLUTTER/flutter_xiaomi_clone_app/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /ESP32CAM_Projects/ESP32_CAM_Xiaomi_Clone_FLUTTER/flutter_xiaomi_clone_app/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ESP32CAM_Projects/ESP32_CAM_Xiaomi_Clone_FLUTTER/flutter_xiaomi_clone_app/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface AppDelegate : FlutterAppDelegate 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /ESP32CAM_Projects/ESP32_CAM_Xiaomi_Clone_FLUTTER/flutter_xiaomi_clone_app/ios/Runner/File.swift: -------------------------------------------------------------------------------- 1 | // 2 | // File.swift 3 | // Runner 4 | // 5 | // Created by Eric Nam on 11/16/19. 6 | // Copyright © 2019 The Chromium Authors. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | -------------------------------------------------------------------------------- /ESP32CAM_Projects/ESP32_CAM_Xiaomi_Clone_FLUTTER/flutter_xiaomi_clone_app/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | // 2 | // Use this file to import your target's public headers that you would like to expose to Swift. 3 | // 4 | 5 | -------------------------------------------------------------------------------- /ESP32CAM_Projects/ESP32_CAM_Xiaomi_Clone_FLUTTER/flutter_xiaomi_clone_app_ffmpeg/android/.gitignore: -------------------------------------------------------------------------------- 1 | gradle-wrapper.jar 2 | /.gradle 3 | /captures/ 4 | /gradlew 5 | /gradlew.bat 6 | /local.properties 7 | GeneratedPluginRegistrant.java 8 | -------------------------------------------------------------------------------- /ESP32CAM_Projects/ESP32_CAM_Xiaomi_Clone_FLUTTER/flutter_xiaomi_clone_app_ffmpeg/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | android.enableR8=true 3 | android.useAndroidX=true 4 | android.enableJetifier=true 5 | -------------------------------------------------------------------------------- /ESP32CAM_Projects/ESP32_CAM_Xiaomi_Clone_FLUTTER/flutter_xiaomi_clone_app_ffmpeg/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /ESP32CAM_Projects/ESP32_CAM_Xiaomi_Clone_FLUTTER/flutter_xiaomi_clone_app_ffmpeg/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /ESP32CAM_Projects/ESP32_CAM_Xiaomi_Clone_FLUTTER/flutter_xiaomi_clone_app_ffmpeg/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ESP32CAM_Projects/ESP32_CAM_Xiaomi_Clone_FLUTTER/flutter_xiaomi_clone_app_ffmpeg/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface AppDelegate : FlutterAppDelegate 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /ESP32CAM_Projects/ESP32_CAM_Xiaomi_Clone_FLUTTER/flutter_xiaomi_clone_app_ffmpeg/ios/Runner/File.swift: -------------------------------------------------------------------------------- 1 | // 2 | // File.swift 3 | // Runner 4 | // 5 | // Created by Eric Nam on 11/16/19. 6 | // Copyright © 2019 The Chromium Authors. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | -------------------------------------------------------------------------------- /ESP32CAM_Projects/ESP32_CAM_Xiaomi_Clone_FLUTTER/flutter_xiaomi_clone_app_ffmpeg/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | // 2 | // Use this file to import your target's public headers that you would like to expose to Swift. 3 | // 4 | 5 | -------------------------------------------------------------------------------- /ESP32CAM_Projects/WIRED_ESP32_CAM_with_FlutterApp/Part.2_FlutterAppForSerialCam/esp32cam_wired_comm/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | android.useAndroidX=true 3 | android.enableJetifier=true 4 | -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32CAM_BT_SERIAL/android_esp32cam_bt_app/android/.gitignore: -------------------------------------------------------------------------------- 1 | gradle-wrapper.jar 2 | /.gradle 3 | /captures/ 4 | /gradlew 5 | /gradlew.bat 6 | /local.properties 7 | GeneratedPluginRegistrant.java 8 | -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32CAM_BT_SERIAL/android_esp32cam_bt_app/android/app/src/main/java/com/thatproject/androidesp32cambtapp/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.thatproject.androidesp32cambtapp; 2 | 3 | import io.flutter.embedding.android.FlutterActivity; 4 | 5 | public class MainActivity extends FlutterActivity { 6 | } 7 | -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32CAM_BT_SERIAL/android_esp32cam_bt_app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_BT_CLASSIC/ESP32CAM_BT_SERIAL/android_esp32cam_bt_app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32CAM_BT_SERIAL/android_esp32cam_bt_app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_BT_CLASSIC/ESP32CAM_BT_SERIAL/android_esp32cam_bt_app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32CAM_BT_SERIAL/android_esp32cam_bt_app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_BT_CLASSIC/ESP32CAM_BT_SERIAL/android_esp32cam_bt_app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32CAM_BT_SERIAL/android_esp32cam_bt_app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_BT_CLASSIC/ESP32CAM_BT_SERIAL/android_esp32cam_bt_app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32CAM_BT_SERIAL/android_esp32cam_bt_app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_BT_CLASSIC/ESP32CAM_BT_SERIAL/android_esp32cam_bt_app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32CAM_BT_SERIAL/android_esp32cam_bt_app/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | android.enableR8=true 3 | android.useAndroidX=true 4 | android.enableJetifier=true 5 | -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32CAM_BT_SERIAL/android_esp32cam_bt_app/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32CAM_BT_SERIAL/android_esp32cam_bt_app/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32CAM_BT_SERIAL/android_esp32cam_bt_app/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32CAM_BT_SERIAL/android_esp32cam_bt_app/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32CAM_BT_SERIAL/android_esp32cam_bt_app/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface AppDelegate : FlutterAppDelegate 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32CAM_BT_SERIAL/android_esp32cam_bt_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_BT_CLASSIC/ESP32CAM_BT_SERIAL/android_esp32cam_bt_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32CAM_BT_SERIAL/android_esp32cam_bt_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_BT_CLASSIC/ESP32CAM_BT_SERIAL/android_esp32cam_bt_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32CAM_BT_SERIAL/android_esp32cam_bt_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_BT_CLASSIC/ESP32CAM_BT_SERIAL/android_esp32cam_bt_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32CAM_BT_SERIAL/android_esp32cam_bt_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_BT_CLASSIC/ESP32CAM_BT_SERIAL/android_esp32cam_bt_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32CAM_BT_SERIAL/android_esp32cam_bt_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_BT_CLASSIC/ESP32CAM_BT_SERIAL/android_esp32cam_bt_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32CAM_BT_SERIAL/android_esp32cam_bt_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_BT_CLASSIC/ESP32CAM_BT_SERIAL/android_esp32cam_bt_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32CAM_BT_SERIAL/android_esp32cam_bt_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_BT_CLASSIC/ESP32CAM_BT_SERIAL/android_esp32cam_bt_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32CAM_BT_SERIAL/android_esp32cam_bt_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_BT_CLASSIC/ESP32CAM_BT_SERIAL/android_esp32cam_bt_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32CAM_BT_SERIAL/android_esp32cam_bt_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_BT_CLASSIC/ESP32CAM_BT_SERIAL/android_esp32cam_bt_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32CAM_BT_SERIAL/android_esp32cam_bt_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_BT_CLASSIC/ESP32CAM_BT_SERIAL/android_esp32cam_bt_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32CAM_BT_SERIAL/android_esp32cam_bt_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_BT_CLASSIC/ESP32CAM_BT_SERIAL/android_esp32cam_bt_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32CAM_BT_SERIAL/android_esp32cam_bt_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_BT_CLASSIC/ESP32CAM_BT_SERIAL/android_esp32cam_bt_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32CAM_BT_SERIAL/android_esp32cam_bt_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_BT_CLASSIC/ESP32CAM_BT_SERIAL/android_esp32cam_bt_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32CAM_BT_SERIAL/android_esp32cam_bt_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_BT_CLASSIC/ESP32CAM_BT_SERIAL/android_esp32cam_bt_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32CAM_BT_SERIAL/android_esp32cam_bt_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_BT_CLASSIC/ESP32CAM_BT_SERIAL/android_esp32cam_bt_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32CAM_BT_SERIAL/android_esp32cam_bt_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_BT_CLASSIC/ESP32CAM_BT_SERIAL/android_esp32cam_bt_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32CAM_BT_SERIAL/android_esp32cam_bt_app/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_BT_CLASSIC/ESP32CAM_BT_SERIAL/android_esp32cam_bt_app/web/favicon.png -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32CAM_BT_SERIAL/android_esp32cam_bt_app/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_BT_CLASSIC/ESP32CAM_BT_SERIAL/android_esp32cam_bt_app/web/icons/Icon-192.png -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32CAM_BT_SERIAL/android_esp32cam_bt_app/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_BT_CLASSIC/ESP32CAM_BT_SERIAL/android_esp32cam_bt_app/web/icons/Icon-512.png -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32_BLUETOOTH_SERIAL_DEMO/android_bluetooth_serial_app/android/.gitignore: -------------------------------------------------------------------------------- 1 | gradle-wrapper.jar 2 | /.gradle 3 | /captures/ 4 | /gradlew 5 | /gradlew.bat 6 | /local.properties 7 | GeneratedPluginRegistrant.java 8 | -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32_BLUETOOTH_SERIAL_DEMO/android_bluetooth_serial_app/android/app/src/main/java/com/thatproject/androidbluetoothserialapp/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.thatproject.androidbluetoothserialapp; 2 | 3 | import io.flutter.embedding.android.FlutterActivity; 4 | 5 | public class MainActivity extends FlutterActivity { 6 | } 7 | -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32_BLUETOOTH_SERIAL_DEMO/android_bluetooth_serial_app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_BT_CLASSIC/ESP32_BLUETOOTH_SERIAL_DEMO/android_bluetooth_serial_app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32_BLUETOOTH_SERIAL_DEMO/android_bluetooth_serial_app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_BT_CLASSIC/ESP32_BLUETOOTH_SERIAL_DEMO/android_bluetooth_serial_app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32_BLUETOOTH_SERIAL_DEMO/android_bluetooth_serial_app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_BT_CLASSIC/ESP32_BLUETOOTH_SERIAL_DEMO/android_bluetooth_serial_app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32_BLUETOOTH_SERIAL_DEMO/android_bluetooth_serial_app/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | android.enableR8=true 3 | android.useAndroidX=true 4 | android.enableJetifier=true 5 | -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32_BLUETOOTH_SERIAL_DEMO/android_bluetooth_serial_app/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32_BLUETOOTH_SERIAL_DEMO/android_bluetooth_serial_app/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32_BLUETOOTH_SERIAL_DEMO/android_bluetooth_serial_app/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32_BLUETOOTH_SERIAL_DEMO/android_bluetooth_serial_app/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32_BLUETOOTH_SERIAL_DEMO/android_bluetooth_serial_app/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface AppDelegate : FlutterAppDelegate 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32_BLUETOOTH_SERIAL_DEMO/android_bluetooth_serial_app/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_BT_CLASSIC/ESP32_BLUETOOTH_SERIAL_DEMO/android_bluetooth_serial_app/web/favicon.png -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32_BLUETOOTH_SERIAL_DEMO/android_bluetooth_serial_app/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_BT_CLASSIC/ESP32_BLUETOOTH_SERIAL_DEMO/android_bluetooth_serial_app/web/icons/Icon-192.png -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32_BLUETOOTH_SERIAL_DEMO/android_bluetooth_serial_app/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_BT_CLASSIC/ESP32_BLUETOOTH_SERIAL_DEMO/android_bluetooth_serial_app/web/icons/Icon-512.png -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32_INMP441_BT_SERIAL/android_esp32_bt_recording_app/android/app/src/main/java/com/thatproject/androidesp32btrecordingapp/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.thatproject.androidesp32btrecordingapp; 2 | 3 | import io.flutter.embedding.android.FlutterActivity; 4 | 5 | public class MainActivity extends FlutterActivity { 6 | } 7 | -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32_INMP441_BT_SERIAL/android_esp32_bt_recording_app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_BT_CLASSIC/ESP32_INMP441_BT_SERIAL/android_esp32_bt_recording_app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32_INMP441_BT_SERIAL/android_esp32_bt_recording_app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_BT_CLASSIC/ESP32_INMP441_BT_SERIAL/android_esp32_bt_recording_app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32_INMP441_BT_SERIAL/android_esp32_bt_recording_app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_BT_CLASSIC/ESP32_INMP441_BT_SERIAL/android_esp32_bt_recording_app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32_INMP441_BT_SERIAL/android_esp32_bt_recording_app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_BT_CLASSIC/ESP32_INMP441_BT_SERIAL/android_esp32_bt_recording_app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32_INMP441_BT_SERIAL/android_esp32_bt_recording_app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_BT_CLASSIC/ESP32_INMP441_BT_SERIAL/android_esp32_bt_recording_app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32_INMP441_BT_SERIAL/android_esp32_bt_recording_app/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | android.enableR8=true 3 | android.useAndroidX=true 4 | android.enableJetifier=true 5 | -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32_INMP441_BT_SERIAL/android_esp32_bt_recording_app/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32_INMP441_BT_SERIAL/android_esp32_bt_recording_app/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32_INMP441_BT_SERIAL/android_esp32_bt_recording_app/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32_INMP441_BT_SERIAL/android_esp32_bt_recording_app/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32_INMP441_BT_SERIAL/android_esp32_bt_recording_app/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface AppDelegate : FlutterAppDelegate 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32_INMP441_BT_SERIAL/android_esp32_bt_recording_app/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_BT_CLASSIC/ESP32_INMP441_BT_SERIAL/android_esp32_bt_recording_app/web/favicon.png -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32_INMP441_BT_SERIAL/android_esp32_bt_recording_app/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_BT_CLASSIC/ESP32_INMP441_BT_SERIAL/android_esp32_bt_recording_app/web/icons/Icon-192.png -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32_INMP441_BT_SERIAL/android_esp32_bt_recording_app/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_BT_CLASSIC/ESP32_INMP441_BT_SERIAL/android_esp32_bt_recording_app/web/icons/Icon-512.png -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32_SSD1351_QR_BT_SERIAL/qr_code_showing_esp32_bt_app/android/app/src/main/java/com/thatproject/qrcodeshowingesp32btapp/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.thatproject.qrcodeshowingesp32btapp; 2 | 3 | import io.flutter.embedding.android.FlutterActivity; 4 | 5 | public class MainActivity extends FlutterActivity { 6 | } 7 | -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32_SSD1351_QR_BT_SERIAL/qr_code_showing_esp32_bt_app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_BT_CLASSIC/ESP32_SSD1351_QR_BT_SERIAL/qr_code_showing_esp32_bt_app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32_SSD1351_QR_BT_SERIAL/qr_code_showing_esp32_bt_app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_BT_CLASSIC/ESP32_SSD1351_QR_BT_SERIAL/qr_code_showing_esp32_bt_app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32_SSD1351_QR_BT_SERIAL/qr_code_showing_esp32_bt_app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_BT_CLASSIC/ESP32_SSD1351_QR_BT_SERIAL/qr_code_showing_esp32_bt_app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32_SSD1351_QR_BT_SERIAL/qr_code_showing_esp32_bt_app/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | android.enableR8=true 3 | android.useAndroidX=true 4 | android.enableJetifier=true 5 | -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32_SSD1351_QR_BT_SERIAL/qr_code_showing_esp32_bt_app/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32_SSD1351_QR_BT_SERIAL/qr_code_showing_esp32_bt_app/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32_SSD1351_QR_BT_SERIAL/qr_code_showing_esp32_bt_app/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32_SSD1351_QR_BT_SERIAL/qr_code_showing_esp32_bt_app/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32_SSD1351_QR_BT_SERIAL/qr_code_showing_esp32_bt_app/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface AppDelegate : FlutterAppDelegate 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32_SSD1351_QR_BT_SERIAL/qr_code_showing_esp32_bt_app/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_BT_CLASSIC/ESP32_SSD1351_QR_BT_SERIAL/qr_code_showing_esp32_bt_app/web/favicon.png -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32_SSD1351_QR_BT_SERIAL/qr_code_showing_esp32_bt_app/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_BT_CLASSIC/ESP32_SSD1351_QR_BT_SERIAL/qr_code_showing_esp32_bt_app/web/icons/Icon-192.png -------------------------------------------------------------------------------- /ESP32_BT_CLASSIC/ESP32_SSD1351_QR_BT_SERIAL/qr_code_showing_esp32_bt_app/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_BT_CLASSIC/ESP32_SSD1351_QR_BT_SERIAL/qr_code_showing_esp32_bt_app/web/icons/Icon-512.png -------------------------------------------------------------------------------- /ESP32_Flutter_JoyPad/flutter_app_joypad_ble/android/app/src/main/kotlin/com/example/flutter_app_joypad_ble/MainActivity.kt: -------------------------------------------------------------------------------- 1 | package com.example.flutter_app_joypad_ble 2 | 3 | import io.flutter.embedding.android.FlutterActivity 4 | 5 | class MainActivity: FlutterActivity() { 6 | } 7 | -------------------------------------------------------------------------------- /ESP32_Flutter_JoyPad/flutter_app_joypad_ble/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_Flutter_JoyPad/flutter_app_joypad_ble/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /ESP32_Flutter_JoyPad/flutter_app_joypad_ble/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_Flutter_JoyPad/flutter_app_joypad_ble/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /ESP32_Flutter_JoyPad/flutter_app_joypad_ble/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_Flutter_JoyPad/flutter_app_joypad_ble/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ESP32_Flutter_JoyPad/flutter_app_joypad_ble/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_Flutter_JoyPad/flutter_app_joypad_ble/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ESP32_Flutter_JoyPad/flutter_app_joypad_ble/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_Flutter_JoyPad/flutter_app_joypad_ble/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ESP32_Flutter_JoyPad/flutter_app_joypad_ble/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | android.useAndroidX=true 3 | android.enableJetifier=true 4 | -------------------------------------------------------------------------------- /ESP32_Flutter_JoyPad/flutter_app_joypad_ble/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /ESP32_Flutter_JoyPad/flutter_app_joypad_ble/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /ESP32_Flutter_JoyPad/flutter_app_joypad_ble/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ESP32_Flutter_JoyPad/flutter_app_joypad_ble/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ESP32_Flutter_JoyPad/flutter_app_joypad_ble/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_Flutter_JoyPad/flutter_app_joypad_ble/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /ESP32_Flutter_JoyPad/flutter_app_joypad_ble/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_Flutter_JoyPad/flutter_app_joypad_ble/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /ESP32_Flutter_JoyPad/flutter_app_joypad_ble/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_Flutter_JoyPad/flutter_app_joypad_ble/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /ESP32_Flutter_JoyPad/flutter_app_joypad_ble/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_Flutter_JoyPad/flutter_app_joypad_ble/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /ESP32_Flutter_JoyPad/flutter_app_joypad_ble/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_Flutter_JoyPad/flutter_app_joypad_ble/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /ESP32_Flutter_JoyPad/flutter_app_joypad_ble/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_Flutter_JoyPad/flutter_app_joypad_ble/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /ESP32_Flutter_JoyPad/flutter_app_joypad_ble/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_Flutter_JoyPad/flutter_app_joypad_ble/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /ESP32_Flutter_JoyPad/flutter_app_joypad_ble/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_Flutter_JoyPad/flutter_app_joypad_ble/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /ESP32_Flutter_JoyPad/flutter_app_joypad_ble/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_Flutter_JoyPad/flutter_app_joypad_ble/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /ESP32_Flutter_JoyPad/flutter_app_joypad_ble/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_Flutter_JoyPad/flutter_app_joypad_ble/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /ESP32_Flutter_JoyPad/flutter_app_joypad_ble/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_Flutter_JoyPad/flutter_app_joypad_ble/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /ESP32_Flutter_JoyPad/flutter_app_joypad_ble/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_Flutter_JoyPad/flutter_app_joypad_ble/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /ESP32_Flutter_JoyPad/flutter_app_joypad_ble/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_Flutter_JoyPad/flutter_app_joypad_ble/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /ESP32_Flutter_JoyPad/flutter_app_joypad_ble/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_Flutter_JoyPad/flutter_app_joypad_ble/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /ESP32_Flutter_JoyPad/flutter_app_joypad_ble/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_Flutter_JoyPad/flutter_app_joypad_ble/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ESP32_Flutter_JoyPad/flutter_app_joypad_ble/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_Flutter_JoyPad/flutter_app_joypad_ble/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ESP32_Flutter_JoyPad/flutter_app_joypad_ble/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_Flutter_JoyPad/flutter_app_joypad_ble/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ESP32_Flutter_JoyPad/flutter_app_joypad_ble/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_Flutter_JoyPad/flutter_app_joypad_ble/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ESP32_Flutter_JoyPad/flutter_app_joypad_ble/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /ESP32_LVGL/ESP-IDF_Camera_Timer_For_Smartphone_LVGL7/Part.2/camera_timer_ble_hid/Makefile: -------------------------------------------------------------------------------- 1 | PROJECT_NAME := camera_timer_ble_hid 2 | 3 | IDF_PATH = /Users/sil0/Workspace/01_Dev_Libraries/esp-idf 4 | 5 | include $(IDF_PATH)/make/project.mk -------------------------------------------------------------------------------- /ESP32_LVGL/ESP-IDF_Camera_Timer_For_Smartphone_LVGL7/Part.2/camera_timer_ble_hid/main/CMakelists.txt: -------------------------------------------------------------------------------- 1 | set(COMPONENT_SRCS "main.c") 2 | set(COMPONENT_ADD_INCLUDEDIRS "") 3 | 4 | register_component() -------------------------------------------------------------------------------- /ESP32_LVGL/ESP-IDF_Camera_Timer_For_Smartphone_LVGL7/Part.2/camera_timer_ble_hid/main/component.mk: -------------------------------------------------------------------------------- 1 | # 2 | # "main" pseudo-component makefile. -------------------------------------------------------------------------------- /ESP32_LVGL/ESP-IDF_Camera_Timer_For_Smartphone_LVGL7/Part.3/camera_timer_ble_hid/Makefile: -------------------------------------------------------------------------------- 1 | PROJECT_NAME := camera_timer_ble_hid 2 | 3 | IDF_PATH = /Users/sil0/Workspace/01_Dev_Libraries/esp-idf 4 | 5 | include $(IDF_PATH)/make/project.mk -------------------------------------------------------------------------------- /ESP32_LVGL/ESP-IDF_Camera_Timer_For_Smartphone_LVGL7/Part.3/camera_timer_ble_hid/main/component.mk: -------------------------------------------------------------------------------- 1 | # 2 | # "main" pseudo-component makefile. -------------------------------------------------------------------------------- /ESP32_LVGL/LVGL8/2_LILYPI_StackOverflow_BLE/MyShortcut.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | class BleKeyboard; 4 | class MyShortcut { 5 | private: 6 | BleKeyboard *bleKeyboard; 7 | int shortcutId; 8 | 9 | public: 10 | MyShortcut(BleKeyboard *bleKeyboard, int caseId); 11 | void Action(); 12 | void RelaseAllkey(); 13 | }; -------------------------------------------------------------------------------- /ESP32_LVGL/LVGL8/5_System_Monitor/PythonScriptForSysMonitor/requirements.txt: -------------------------------------------------------------------------------- 1 | psutil 2 | pyserial -------------------------------------------------------------------------------- /ESP32_LVGL/LVGL8/5_System_Monitor/demo/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_LVGL/LVGL8/5_System_Monitor/demo/demo.gif -------------------------------------------------------------------------------- /ESP32_LVGL/LVGL8/ZX2D10GE01R-V4848_Arduino/mt8901.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "stdint.h" 4 | 5 | void mt8901_init(int16_t sig_pin, int16_t dir_pin); 6 | 7 | int16_t mt8901_get_count(); 8 | -------------------------------------------------------------------------------- /ESP32_LVGL/LVGL8_SquareLine/03_Let's_build_a_GPS_Speedometer/Assets/Assets.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_LVGL/LVGL8_SquareLine/03_Let's_build_a_GPS_Speedometer/Assets/Assets.zip -------------------------------------------------------------------------------- /ESP32_LVGL/LVGL8_SquareLine/03_Let's_build_a_GPS_Speedometer/SquareLIneProject/assets/Open 24 Display St.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_LVGL/LVGL8_SquareLine/03_Let's_build_a_GPS_Speedometer/SquareLIneProject/assets/Open 24 Display St.ttf -------------------------------------------------------------------------------- /ESP32_LVGL/LVGL8_SquareLine/03_Let's_build_a_GPS_Speedometer/SquareLIneProject/assets/SpeedFG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_LVGL/LVGL8_SquareLine/03_Let's_build_a_GPS_Speedometer/SquareLIneProject/assets/SpeedFG.png -------------------------------------------------------------------------------- /ESP32_LVGL/LVGL8_SquareLine/03_Let's_build_a_GPS_Speedometer/SquareLIneProject/assets/compass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_LVGL/LVGL8_SquareLine/03_Let's_build_a_GPS_Speedometer/SquareLIneProject/assets/compass.png -------------------------------------------------------------------------------- /ESP32_LVGL/LVGL8_SquareLine/03_Let's_build_a_GPS_Speedometer/SquareLIneProject/assets/speedBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_LVGL/LVGL8_SquareLine/03_Let's_build_a_GPS_Speedometer/SquareLIneProject/assets/speedBG.png -------------------------------------------------------------------------------- /ESP32_LVGL/LVGL8_SquareLine/03_Let's_build_a_GPS_Speedometer/SquareLIneProject/assets/ui_font_Display16.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_LVGL/LVGL8_SquareLine/03_Let's_build_a_GPS_Speedometer/SquareLIneProject/assets/ui_font_Display16.bin -------------------------------------------------------------------------------- /ESP32_LVGL/LVGL8_SquareLine/03_Let's_build_a_GPS_Speedometer/SquareLIneProject/assets/ui_font_Display24.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_LVGL/LVGL8_SquareLine/03_Let's_build_a_GPS_Speedometer/SquareLIneProject/assets/ui_font_Display24.bin -------------------------------------------------------------------------------- /ESP32_LVGL/LVGL8_SquareLine/03_Let's_build_a_GPS_Speedometer/SquareLIneProject/assets/ui_font_Display40.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_LVGL/LVGL8_SquareLine/03_Let's_build_a_GPS_Speedometer/SquareLIneProject/assets/ui_font_Display40.bin -------------------------------------------------------------------------------- /ESP32_LVGL/LVGL8_SquareLine/03_Let's_build_a_GPS_Speedometer/SquareLIneProject/assets/ui_font_Display90.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_LVGL/LVGL8_SquareLine/03_Let's_build_a_GPS_Speedometer/SquareLIneProject/assets/ui_font_Display90.bin -------------------------------------------------------------------------------- /ESP32_LVGL/LVGL8_SquareLine/03_Let's_build_a_GPS_Speedometer/SquareLIneProject/cache/thumb_1980616663SpeedFG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_LVGL/LVGL8_SquareLine/03_Let's_build_a_GPS_Speedometer/SquareLIneProject/cache/thumb_1980616663SpeedFG.png -------------------------------------------------------------------------------- /ESP32_LVGL/LVGL8_SquareLine/03_Let's_build_a_GPS_Speedometer/SquareLIneProject/cache/thumb_474080251speedBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_LVGL/LVGL8_SquareLine/03_Let's_build_a_GPS_Speedometer/SquareLIneProject/cache/thumb_474080251speedBG.png -------------------------------------------------------------------------------- /ESP32_LVGL/LVGL8_SquareLine/03_Let's_build_a_GPS_Speedometer/demo/part_1_demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_LVGL/LVGL8_SquareLine/03_Let's_build_a_GPS_Speedometer/demo/part_1_demo.gif -------------------------------------------------------------------------------- /ESP32_LVGL/LVGL8_SquareLine/03_Let's_build_a_GPS_Speedometer/demo/part_2_demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_LVGL/LVGL8_SquareLine/03_Let's_build_a_GPS_Speedometer/demo/part_2_demo.gif -------------------------------------------------------------------------------- /ESP32_LVGL/LVGL8_SquareLine/04_Turntable_MP3_Player/SquareLineProject/assets/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_LVGL/LVGL8_SquareLine/04_Turntable_MP3_Player/SquareLineProject/assets/bg.png -------------------------------------------------------------------------------- /ESP32_LVGL/LVGL8_SquareLine/04_Turntable_MP3_Player/SquareLineProject/assets/hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_LVGL/LVGL8_SquareLine/04_Turntable_MP3_Player/SquareLineProject/assets/hand.png -------------------------------------------------------------------------------- /ESP32_LVGL/LVGL8_SquareLine/04_Turntable_MP3_Player/SquareLineProject/assets/turntable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_LVGL/LVGL8_SquareLine/04_Turntable_MP3_Player/SquareLineProject/assets/turntable.png -------------------------------------------------------------------------------- /ESP32_LVGL/LVGL8_SquareLine/04_Turntable_MP3_Player/SquareLineProject/assets/vol_switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_LVGL/LVGL8_SquareLine/04_Turntable_MP3_Player/SquareLineProject/assets/vol_switch.png -------------------------------------------------------------------------------- /ESP32_LVGL/LVGL8_SquareLine/04_Turntable_MP3_Player/SquareLineProject/cache/thumb_1821644762bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_LVGL/LVGL8_SquareLine/04_Turntable_MP3_Player/SquareLineProject/cache/thumb_1821644762bg.png -------------------------------------------------------------------------------- /ESP32_LVGL/LVGL8_SquareLine/04_Turntable_MP3_Player/SquareLineProject/cache/thumb_1998050180turntable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_LVGL/LVGL8_SquareLine/04_Turntable_MP3_Player/SquareLineProject/cache/thumb_1998050180turntable.png -------------------------------------------------------------------------------- /ESP32_LVGL/LVGL8_SquareLine/04_Turntable_MP3_Player/demo/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_LVGL/LVGL8_SquareLine/04_Turntable_MP3_Player/demo/demo.gif -------------------------------------------------------------------------------- /ESP32_LVGL/LVGL8_SquareLine/Arduino_GigaR1_LVGL8_3D_Printer/ui_comp_hook.c: -------------------------------------------------------------------------------- 1 | // This file was generated by SquareLine Studio 2 | // SquareLine Studio version: SquareLine Studio 1.4.0 3 | // LVGL version: 8.3.11 4 | // Project name: 3d_printer 5 | 6 | -------------------------------------------------------------------------------- /ESP32_MICROPHONE/Broadcasting_Your_Voice/thumbnail/project_thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_MICROPHONE/Broadcasting_Your_Voice/thumbnail/project_thumbnail.jpg -------------------------------------------------------------------------------- /ESP32_MICROPHONE/Broadcasting_Your_Voice/wsAudioServer/image/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_MICROPHONE/Broadcasting_Your_Voice/wsAudioServer/image/favicon.ico -------------------------------------------------------------------------------- /ESP32_MICROPHONE/ESP32_INMP441_FLUTTER_BLE_APP/flutter_app_slm/android/.gitignore: -------------------------------------------------------------------------------- 1 | gradle-wrapper.jar 2 | /.gradle 3 | /captures/ 4 | /gradlew 5 | /gradlew.bat 6 | /local.properties 7 | GeneratedPluginRegistrant.java 8 | -------------------------------------------------------------------------------- /ESP32_MICROPHONE/ESP32_INMP441_FLUTTER_BLE_APP/flutter_app_slm/android/app/src/main/java/com/thatproject/flutterappslm/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.thatproject.flutterappslm; 2 | 3 | import io.flutter.embedding.android.FlutterActivity; 4 | 5 | public class MainActivity extends FlutterActivity { 6 | } 7 | -------------------------------------------------------------------------------- /ESP32_MICROPHONE/ESP32_INMP441_FLUTTER_BLE_APP/flutter_app_slm/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_MICROPHONE/ESP32_INMP441_FLUTTER_BLE_APP/flutter_app_slm/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /ESP32_MICROPHONE/ESP32_INMP441_FLUTTER_BLE_APP/flutter_app_slm/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_MICROPHONE/ESP32_INMP441_FLUTTER_BLE_APP/flutter_app_slm/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /ESP32_MICROPHONE/ESP32_INMP441_FLUTTER_BLE_APP/flutter_app_slm/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_MICROPHONE/ESP32_INMP441_FLUTTER_BLE_APP/flutter_app_slm/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ESP32_MICROPHONE/ESP32_INMP441_FLUTTER_BLE_APP/flutter_app_slm/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_MICROPHONE/ESP32_INMP441_FLUTTER_BLE_APP/flutter_app_slm/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ESP32_MICROPHONE/ESP32_INMP441_FLUTTER_BLE_APP/flutter_app_slm/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_MICROPHONE/ESP32_INMP441_FLUTTER_BLE_APP/flutter_app_slm/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ESP32_MICROPHONE/ESP32_INMP441_FLUTTER_BLE_APP/flutter_app_slm/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | android.enableR8=true 3 | android.useAndroidX=true 4 | android.enableJetifier=true 5 | -------------------------------------------------------------------------------- /ESP32_MICROPHONE/ESP32_INMP441_FLUTTER_BLE_APP/flutter_app_slm/fonts/DSEG7Modern-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_MICROPHONE/ESP32_INMP441_FLUTTER_BLE_APP/flutter_app_slm/fonts/DSEG7Modern-Bold.ttf -------------------------------------------------------------------------------- /ESP32_MICROPHONE/ESP32_INMP441_FLUTTER_BLE_APP/flutter_app_slm/fonts/DSEG7Modern-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_MICROPHONE/ESP32_INMP441_FLUTTER_BLE_APP/flutter_app_slm/fonts/DSEG7Modern-Regular.ttf -------------------------------------------------------------------------------- /ESP32_MICROPHONE/ESP32_INMP441_FLUTTER_BLE_APP/flutter_app_slm/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /ESP32_MICROPHONE/ESP32_INMP441_FLUTTER_BLE_APP/flutter_app_slm/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /ESP32_MICROPHONE/ESP32_INMP441_FLUTTER_BLE_APP/flutter_app_slm/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ESP32_MICROPHONE/ESP32_INMP441_FLUTTER_BLE_APP/flutter_app_slm/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface AppDelegate : FlutterAppDelegate 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /ESP32_MICROPHONE/ESP32_INMP441_FLUTTER_BLE_APP/flutter_app_slm/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_MICROPHONE/ESP32_INMP441_FLUTTER_BLE_APP/flutter_app_slm/web/favicon.png -------------------------------------------------------------------------------- /ESP32_MICROPHONE/ESP32_INMP441_FLUTTER_BLE_APP/flutter_app_slm/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_MICROPHONE/ESP32_INMP441_FLUTTER_BLE_APP/flutter_app_slm/web/icons/Icon-192.png -------------------------------------------------------------------------------- /ESP32_MICROPHONE/ESP32_INMP441_FLUTTER_BLE_APP/flutter_app_slm/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_MICROPHONE/ESP32_INMP441_FLUTTER_BLE_APP/flutter_app_slm/web/icons/Icon-512.png -------------------------------------------------------------------------------- /ESP32_MICROPHONE/ESP32_INMP441_SPEECH_TO_TEXT/NodejsServer/resources/_recording.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_MICROPHONE/ESP32_INMP441_SPEECH_TO_TEXT/NodejsServer/resources/_recording.wav -------------------------------------------------------------------------------- /ESP32_MICROPHONE/ESP32_INMP441_SPEECH_TO_TEXT/NodejsServer/resources/recording.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_MICROPHONE/ESP32_INMP441_SPEECH_TO_TEXT/NodejsServer/resources/recording.wav -------------------------------------------------------------------------------- /ESP32_MQTT/3_Python_MQTT_Client_App/requirements.txt: -------------------------------------------------------------------------------- 1 | pysimplegui 2 | AWSIoTPythonSDK 3 | Pillow -------------------------------------------------------------------------------- /ESP32_OTA/Simple_OTA_Solution/Simple_OTA_Application/Updater.h: -------------------------------------------------------------------------------- 1 | #include "FileIO.h" 2 | #include 3 | 4 | class Updater { 5 | private: 6 | void performUpdate(Stream& updateSource, size_t updateSize); 7 | 8 | public: 9 | bool updateFromFS(FileIO** fileIO); 10 | }; 11 | -------------------------------------------------------------------------------- /ESP32_TTGO/AnimationImage/data/image_0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_TTGO/AnimationImage/data/image_0.jpg -------------------------------------------------------------------------------- /ESP32_TTGO/AnimationImage/data/image_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_TTGO/AnimationImage/data/image_1.jpg -------------------------------------------------------------------------------- /ESP32_TTGO/AnimationImage/data/image_10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_TTGO/AnimationImage/data/image_10.jpg -------------------------------------------------------------------------------- /ESP32_TTGO/AnimationImage/data/image_11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_TTGO/AnimationImage/data/image_11.jpg -------------------------------------------------------------------------------- /ESP32_TTGO/AnimationImage/data/image_12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_TTGO/AnimationImage/data/image_12.jpg -------------------------------------------------------------------------------- /ESP32_TTGO/AnimationImage/data/image_13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_TTGO/AnimationImage/data/image_13.jpg -------------------------------------------------------------------------------- /ESP32_TTGO/AnimationImage/data/image_14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_TTGO/AnimationImage/data/image_14.jpg -------------------------------------------------------------------------------- /ESP32_TTGO/AnimationImage/data/image_15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_TTGO/AnimationImage/data/image_15.jpg -------------------------------------------------------------------------------- /ESP32_TTGO/AnimationImage/data/image_16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_TTGO/AnimationImage/data/image_16.jpg -------------------------------------------------------------------------------- /ESP32_TTGO/AnimationImage/data/image_17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_TTGO/AnimationImage/data/image_17.jpg -------------------------------------------------------------------------------- /ESP32_TTGO/AnimationImage/data/image_18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_TTGO/AnimationImage/data/image_18.jpg -------------------------------------------------------------------------------- /ESP32_TTGO/AnimationImage/data/image_19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_TTGO/AnimationImage/data/image_19.jpg -------------------------------------------------------------------------------- /ESP32_TTGO/AnimationImage/data/image_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_TTGO/AnimationImage/data/image_2.jpg -------------------------------------------------------------------------------- /ESP32_TTGO/AnimationImage/data/image_20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_TTGO/AnimationImage/data/image_20.jpg -------------------------------------------------------------------------------- /ESP32_TTGO/AnimationImage/data/image_21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_TTGO/AnimationImage/data/image_21.jpg -------------------------------------------------------------------------------- /ESP32_TTGO/AnimationImage/data/image_22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_TTGO/AnimationImage/data/image_22.jpg -------------------------------------------------------------------------------- /ESP32_TTGO/AnimationImage/data/image_23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_TTGO/AnimationImage/data/image_23.jpg -------------------------------------------------------------------------------- /ESP32_TTGO/AnimationImage/data/image_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_TTGO/AnimationImage/data/image_3.jpg -------------------------------------------------------------------------------- /ESP32_TTGO/AnimationImage/data/image_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_TTGO/AnimationImage/data/image_4.jpg -------------------------------------------------------------------------------- /ESP32_TTGO/AnimationImage/data/image_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_TTGO/AnimationImage/data/image_5.jpg -------------------------------------------------------------------------------- /ESP32_TTGO/AnimationImage/data/image_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_TTGO/AnimationImage/data/image_6.jpg -------------------------------------------------------------------------------- /ESP32_TTGO/AnimationImage/data/image_7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_TTGO/AnimationImage/data/image_7.jpg -------------------------------------------------------------------------------- /ESP32_TTGO/AnimationImage/data/image_8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_TTGO/AnimationImage/data/image_8.jpg -------------------------------------------------------------------------------- /ESP32_TTGO/AnimationImage/data/image_9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_TTGO/AnimationImage/data/image_9.jpg -------------------------------------------------------------------------------- /ESP32_TTGO/BLE_Secure_Server/data/battery_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_TTGO/BLE_Secure_Server/data/battery_01.jpg -------------------------------------------------------------------------------- /ESP32_TTGO/BLE_Secure_Server/data/battery_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_TTGO/BLE_Secure_Server/data/battery_02.jpg -------------------------------------------------------------------------------- /ESP32_TTGO/BLE_Secure_Server/data/battery_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_TTGO/BLE_Secure_Server/data/battery_03.jpg -------------------------------------------------------------------------------- /ESP32_TTGO/BLE_Secure_Server/data/battery_04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_TTGO/BLE_Secure_Server/data/battery_04.jpg -------------------------------------------------------------------------------- /ESP32_TTGO/BLE_Secure_Server/data/battery_05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_TTGO/BLE_Secure_Server/data/battery_05.jpg -------------------------------------------------------------------------------- /ESP32_TTGO/BLE_Secure_Server/data/bt_blue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_TTGO/BLE_Secure_Server/data/bt_blue.jpg -------------------------------------------------------------------------------- /ESP32_TTGO/BLE_Secure_Server/data/bt_white.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_TTGO/BLE_Secure_Server/data/bt_white.jpg -------------------------------------------------------------------------------- /ESP32_TTGO/TTGO_Battery_Indicator/data/battery_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_TTGO/TTGO_Battery_Indicator/data/battery_01.jpg -------------------------------------------------------------------------------- /ESP32_TTGO/TTGO_Battery_Indicator/data/battery_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_TTGO/TTGO_Battery_Indicator/data/battery_02.jpg -------------------------------------------------------------------------------- /ESP32_TTGO/TTGO_Battery_Indicator/data/battery_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_TTGO/TTGO_Battery_Indicator/data/battery_03.jpg -------------------------------------------------------------------------------- /ESP32_TTGO/TTGO_Battery_Indicator/data/battery_04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_TTGO/TTGO_Battery_Indicator/data/battery_04.jpg -------------------------------------------------------------------------------- /ESP32_TTGO/TTGO_Battery_Indicator/data/battery_05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_TTGO/TTGO_Battery_Indicator/data/battery_05.jpg -------------------------------------------------------------------------------- /ESP32_TTGO/Walkie-Talkie_Project/Server/Const.h: -------------------------------------------------------------------------------- 1 | typedef enum STATES {Idle, Listening, Speaking}; 2 | STATES states = Idle; 3 | 4 | typedef enum ROLE {Server, Client}; 5 | ROLE deviceRole = Server; 6 | 7 | const char* ssid = "ESP32-THAT-PROJECT"; 8 | const char* password = "California"; -------------------------------------------------------------------------------- /ESP32_TTGO/Walkie-Talkie_Project/Server_NodeJS/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "audio-speaker": "^1.5.1", 4 | "express": "^4.17.1", 5 | "package.json": "^2.0.1", 6 | "ws": "^7.4.4" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /ESP32_TTGO/my_hardware_key_demo_app/android/app/src/main/java/com/thatproject/my_hardware_key_demo_app/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.thatproject.my_hardware_key_demo_app; 2 | 3 | import io.flutter.embedding.android.FlutterActivity; 4 | 5 | public class MainActivity extends FlutterActivity { 6 | } 7 | -------------------------------------------------------------------------------- /ESP32_TTGO/my_hardware_key_demo_app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_TTGO/my_hardware_key_demo_app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /ESP32_TTGO/my_hardware_key_demo_app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_TTGO/my_hardware_key_demo_app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /ESP32_TTGO/my_hardware_key_demo_app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_TTGO/my_hardware_key_demo_app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ESP32_TTGO/my_hardware_key_demo_app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_TTGO/my_hardware_key_demo_app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ESP32_TTGO/my_hardware_key_demo_app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_TTGO/my_hardware_key_demo_app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ESP32_TTGO/my_hardware_key_demo_app/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | android.useAndroidX=true 3 | android.enableJetifier=true 4 | android.enableR8=true 5 | -------------------------------------------------------------------------------- /ESP32_TTGO/my_hardware_key_demo_app/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /ESP32_TTGO/my_hardware_key_demo_app/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /ESP32_TTGO/my_hardware_key_demo_app/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ESP32_TTGO/my_hardware_key_demo_app/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ESP32_TTGO/my_hardware_key_demo_app/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface AppDelegate : FlutterAppDelegate 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /ESP32_TTGO/my_hardware_key_demo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_TTGO/my_hardware_key_demo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /ESP32_TTGO/my_hardware_key_demo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_TTGO/my_hardware_key_demo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /ESP32_TTGO/my_hardware_key_demo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_TTGO/my_hardware_key_demo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /ESP32_TTGO/my_hardware_key_demo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_TTGO/my_hardware_key_demo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /ESP32_TTGO/my_hardware_key_demo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_TTGO/my_hardware_key_demo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /ESP32_TTGO/my_hardware_key_demo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_TTGO/my_hardware_key_demo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /ESP32_TTGO/my_hardware_key_demo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_TTGO/my_hardware_key_demo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /ESP32_TTGO/my_hardware_key_demo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_TTGO/my_hardware_key_demo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /ESP32_TTGO/my_hardware_key_demo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_TTGO/my_hardware_key_demo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /ESP32_TTGO/my_hardware_key_demo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_TTGO/my_hardware_key_demo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /ESP32_TTGO/my_hardware_key_demo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_TTGO/my_hardware_key_demo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /ESP32_TTGO/my_hardware_key_demo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_TTGO/my_hardware_key_demo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /ESP32_TTGO/my_hardware_key_demo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_TTGO/my_hardware_key_demo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /ESP32_TTGO/my_hardware_key_demo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_TTGO/my_hardware_key_demo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /ESP32_TTGO/my_hardware_key_demo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_TTGO/my_hardware_key_demo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ESP32_TTGO/my_hardware_key_demo_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_TTGO/my_hardware_key_demo_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ESP32_TTGO/my_hardware_key_demo_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_TTGO/my_hardware_key_demo_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ESP32_TTGO/my_hardware_key_demo_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_TTGO/my_hardware_key_demo_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ESP32_TTGO/my_hardware_key_demo_app/ios/Runner/main.m: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | #import "AppDelegate.h" 4 | 5 | int main(int argc, char* argv[]) { 6 | @autoreleasepool { 7 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /ESP32_UWB/1_My_Anchor_With_Audio/data/Connected.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_UWB/1_My_Anchor_With_Audio/data/Connected.wav -------------------------------------------------------------------------------- /ESP32_UWB/1_My_Anchor_With_Audio/data/Disconnected.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_UWB/1_My_Anchor_With_Audio/data/Disconnected.wav -------------------------------------------------------------------------------- /ESP32_UWB/1_My_Anchor_With_Audio/data/Over10m.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_UWB/1_My_Anchor_With_Audio/data/Over10m.wav -------------------------------------------------------------------------------- /ESP32_UWB/1_My_Anchor_With_Audio/data/Over20m.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_UWB/1_My_Anchor_With_Audio/data/Over20m.wav -------------------------------------------------------------------------------- /ESP32_VideoPlayer/MiniLegoTV/demo/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_VideoPlayer/MiniLegoTV/demo/demo.gif -------------------------------------------------------------------------------- /ESP32_dust_sensor_firestore_FLUTTER/DustFirestore/.firebaserc: -------------------------------------------------------------------------------- 1 | { 2 | "projects": { 3 | "default": "dust-sensor-cloud" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /ESP32_dust_sensor_firestore_FLUTTER/DustFirestore/functions/.gitignore: -------------------------------------------------------------------------------- 1 | ## Compiled JavaScript files 2 | **/*.js 3 | **/*.js.map 4 | 5 | # Typescript v1 declaration files 6 | typings/ 7 | 8 | node_modules/ -------------------------------------------------------------------------------- /ESP32_dust_sensor_firestore_FLUTTER/flutter_dust_firestore_app/android/.gitignore: -------------------------------------------------------------------------------- 1 | gradle-wrapper.jar 2 | /.gradle 3 | /captures/ 4 | /gradlew 5 | /gradlew.bat 6 | /local.properties 7 | GeneratedPluginRegistrant.java 8 | -------------------------------------------------------------------------------- /ESP32_dust_sensor_firestore_FLUTTER/flutter_dust_firestore_app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_dust_sensor_firestore_FLUTTER/flutter_dust_firestore_app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /ESP32_dust_sensor_firestore_FLUTTER/flutter_dust_firestore_app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_dust_sensor_firestore_FLUTTER/flutter_dust_firestore_app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /ESP32_dust_sensor_firestore_FLUTTER/flutter_dust_firestore_app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_dust_sensor_firestore_FLUTTER/flutter_dust_firestore_app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ESP32_dust_sensor_firestore_FLUTTER/flutter_dust_firestore_app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_dust_sensor_firestore_FLUTTER/flutter_dust_firestore_app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ESP32_dust_sensor_firestore_FLUTTER/flutter_dust_firestore_app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP32_dust_sensor_firestore_FLUTTER/flutter_dust_firestore_app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ESP32_dust_sensor_firestore_FLUTTER/flutter_dust_firestore_app/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | android.enableR8=true 3 | android.useAndroidX=true 4 | android.enableJetifier=true 5 | -------------------------------------------------------------------------------- /ESP32_dust_sensor_firestore_FLUTTER/flutter_dust_firestore_app/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /ESP32_dust_sensor_firestore_FLUTTER/flutter_dust_firestore_app/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /ESP32_dust_sensor_firestore_FLUTTER/flutter_dust_firestore_app/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ESP32_dust_sensor_firestore_FLUTTER/flutter_dust_firestore_app/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface AppDelegate : FlutterAppDelegate 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /ESP8266_Twitter_Hash_Search/data/placeholder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/ESP8266_Twitter_Hash_Search/data/placeholder.jpg -------------------------------------------------------------------------------- /ESp32_Flutter_Android_wifi_credential_update_via_USB/flutter_update_wifi_credential/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | 3 | android.useAndroidX=true 4 | android.enableJetifier=true 5 | -------------------------------------------------------------------------------- /ESp32_Flutter_Android_wifi_credential_update_via_USB/flutter_update_wifi_credential/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /ESp32_Flutter_Android_wifi_credential_update_via_USB/flutter_update_wifi_credential/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /ESp32_Flutter_Android_wifi_credential_update_via_USB/flutter_update_wifi_credential/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ESp32_Flutter_Android_wifi_credential_update_via_USB/flutter_update_wifi_credential/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ESp32_Flutter_Android_wifi_credential_update_via_USB/flutter_update_wifi_credential/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /Esp32_Flutter_Android_usb_serial_comm/flutter_app_esp32_usb_serial/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_Flutter_Android_usb_serial_comm/flutter_app_esp32_usb_serial/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Esp32_Flutter_Android_usb_serial_comm/flutter_app_esp32_usb_serial/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_Flutter_Android_usb_serial_comm/flutter_app_esp32_usb_serial/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Esp32_Flutter_Android_usb_serial_comm/flutter_app_esp32_usb_serial/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_Flutter_Android_usb_serial_comm/flutter_app_esp32_usb_serial/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Esp32_Flutter_Android_usb_serial_comm/flutter_app_esp32_usb_serial/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_Flutter_Android_usb_serial_comm/flutter_app_esp32_usb_serial/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Esp32_Flutter_Android_usb_serial_comm/flutter_app_esp32_usb_serial/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_Flutter_Android_usb_serial_comm/flutter_app_esp32_usb_serial/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Esp32_Flutter_Android_usb_serial_comm/flutter_app_esp32_usb_serial/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | 3 | android.useAndroidX=true 4 | android.enableJetifier=true 5 | -------------------------------------------------------------------------------- /Esp32_Flutter_Android_usb_serial_comm/flutter_app_esp32_usb_serial/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /Esp32_Flutter_Android_usb_serial_comm/flutter_app_esp32_usb_serial/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /Esp32_Flutter_Android_usb_serial_comm/flutter_app_esp32_usb_serial/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Esp32_Flutter_Android_usb_serial_comm/flutter_app_esp32_usb_serial/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Esp32_Flutter_Android_usb_serial_comm/flutter_app_esp32_usb_serial/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /Esp32_Flutter_BLE_LocalNoti/flutter_blue_localnotify/Pods: -------------------------------------------------------------------------------- 1 | ios/Pods -------------------------------------------------------------------------------- /Esp32_Flutter_BLE_LocalNoti/flutter_blue_localnotify/android/app/src/main/res/drawable/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_Flutter_BLE_LocalNoti/flutter_blue_localnotify/android/app/src/main/res/drawable/app_icon.png -------------------------------------------------------------------------------- /Esp32_Flutter_BLE_LocalNoti/flutter_blue_localnotify/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_Flutter_BLE_LocalNoti/flutter_blue_localnotify/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Esp32_Flutter_BLE_LocalNoti/flutter_blue_localnotify/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_Flutter_BLE_LocalNoti/flutter_blue_localnotify/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Esp32_Flutter_BLE_LocalNoti/flutter_blue_localnotify/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_Flutter_BLE_LocalNoti/flutter_blue_localnotify/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Esp32_Flutter_BLE_LocalNoti/flutter_blue_localnotify/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_Flutter_BLE_LocalNoti/flutter_blue_localnotify/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Esp32_Flutter_BLE_LocalNoti/flutter_blue_localnotify/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_Flutter_BLE_LocalNoti/flutter_blue_localnotify/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Esp32_Flutter_BLE_LocalNoti/flutter_blue_localnotify/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | 3 | android.useAndroidX=true 4 | android.enableJetifier=true 5 | -------------------------------------------------------------------------------- /Esp32_Flutter_BLE_LocalNoti/flutter_blue_localnotify/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /Esp32_Flutter_BLE_LocalNoti/flutter_blue_localnotify/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /Esp32_Flutter_BLE_LocalNoti/flutter_blue_localnotify/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Esp32_Flutter_BLE_LocalNoti/flutter_blue_localnotify/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface AppDelegate : FlutterAppDelegate 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /Esp32_Flutter_BLE_LocalNoti/flutter_blue_localnotify/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_Flutter_BLE_LocalNoti/flutter_blue_localnotify/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /Esp32_Flutter_BLE_LocalNoti/flutter_blue_localnotify/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_Flutter_BLE_LocalNoti/flutter_blue_localnotify/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /Esp32_Flutter_BLE_LocalNoti/flutter_blue_localnotify/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_Flutter_BLE_LocalNoti/flutter_blue_localnotify/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /Esp32_Flutter_BLE_LocalNoti/flutter_blue_localnotify/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_Flutter_BLE_LocalNoti/flutter_blue_localnotify/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /Esp32_Flutter_BLE_LocalNoti/flutter_blue_localnotify/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_Flutter_BLE_LocalNoti/flutter_blue_localnotify/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /Esp32_Flutter_BLE_LocalNoti/flutter_blue_localnotify/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_Flutter_BLE_LocalNoti/flutter_blue_localnotify/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /Esp32_Flutter_BLE_LocalNoti/flutter_blue_localnotify/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_Flutter_BLE_LocalNoti/flutter_blue_localnotify/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /Esp32_Flutter_BLE_LocalNoti/flutter_blue_localnotify/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_Flutter_BLE_LocalNoti/flutter_blue_localnotify/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /Esp32_Flutter_BLE_LocalNoti/flutter_blue_localnotify/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_Flutter_BLE_LocalNoti/flutter_blue_localnotify/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /Esp32_Flutter_BLE_LocalNoti/flutter_blue_localnotify/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_Flutter_BLE_LocalNoti/flutter_blue_localnotify/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /Esp32_Flutter_BLE_LocalNoti/flutter_blue_localnotify/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_Flutter_BLE_LocalNoti/flutter_blue_localnotify/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /Esp32_Flutter_BLE_LocalNoti/flutter_blue_localnotify/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_Flutter_BLE_LocalNoti/flutter_blue_localnotify/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /Esp32_Flutter_BLE_LocalNoti/flutter_blue_localnotify/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_Flutter_BLE_LocalNoti/flutter_blue_localnotify/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /Esp32_Flutter_BLE_LocalNoti/flutter_blue_localnotify/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_Flutter_BLE_LocalNoti/flutter_blue_localnotify/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /Esp32_Flutter_BLE_LocalNoti/flutter_blue_localnotify/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_Flutter_BLE_LocalNoti/flutter_blue_localnotify/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /Esp32_Flutter_BLE_LocalNoti/flutter_blue_localnotify/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_Flutter_BLE_LocalNoti/flutter_blue_localnotify/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /Esp32_Flutter_BLE_LocalNoti/flutter_blue_localnotify/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_Flutter_BLE_LocalNoti/flutter_blue_localnotify/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /Esp32_Flutter_BLE_LocalNoti/flutter_blue_localnotify/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_Flutter_BLE_LocalNoti/flutter_blue_localnotify/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /Esp32_Flutter_firebase_DHT/esp32_firebase/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_Flutter_firebase_DHT/esp32_firebase/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Esp32_Flutter_firebase_DHT/esp32_firebase/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_Flutter_firebase_DHT/esp32_firebase/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Esp32_Flutter_firebase_DHT/esp32_firebase/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_Flutter_firebase_DHT/esp32_firebase/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Esp32_Flutter_firebase_DHT/esp32_firebase/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_Flutter_firebase_DHT/esp32_firebase/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Esp32_Flutter_firebase_DHT/esp32_firebase/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_Flutter_firebase_DHT/esp32_firebase/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Esp32_Flutter_firebase_DHT/esp32_firebase/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | android.useAndroidX=true 3 | android.enableJetifier=true 4 | -------------------------------------------------------------------------------- /Esp32_Flutter_firebase_DHT/esp32_firebase/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /Esp32_Flutter_firebase_DHT/esp32_firebase/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /Esp32_Flutter_firebase_DHT/esp32_firebase/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Esp32_Flutter_firebase_DHT/esp32_firebase/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface AppDelegate : FlutterAppDelegate 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /Esp32_Flutter_firebase_DHT/esp32_firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_Flutter_firebase_DHT/esp32_firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /Esp32_Flutter_firebase_DHT/esp32_firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_Flutter_firebase_DHT/esp32_firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /Esp32_Flutter_firebase_DHT/esp32_firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_Flutter_firebase_DHT/esp32_firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /Esp32_Flutter_firebase_DHT/esp32_firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_Flutter_firebase_DHT/esp32_firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /Esp32_Flutter_firebase_DHT/esp32_firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_Flutter_firebase_DHT/esp32_firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /Esp32_Flutter_firebase_DHT/esp32_firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_Flutter_firebase_DHT/esp32_firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /Esp32_Flutter_firebase_DHT/esp32_firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_Flutter_firebase_DHT/esp32_firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /Esp32_Flutter_firebase_DHT/esp32_firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_Flutter_firebase_DHT/esp32_firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /Esp32_Flutter_firebase_DHT/esp32_firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_Flutter_firebase_DHT/esp32_firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /Esp32_Flutter_firebase_DHT/esp32_firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_Flutter_firebase_DHT/esp32_firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /Esp32_Flutter_firebase_DHT/esp32_firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_Flutter_firebase_DHT/esp32_firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /Esp32_Flutter_firebase_DHT/esp32_firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_Flutter_firebase_DHT/esp32_firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /Esp32_Flutter_firebase_DHT/esp32_firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_Flutter_firebase_DHT/esp32_firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /Esp32_Flutter_firebase_DHT/esp32_firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_Flutter_firebase_DHT/esp32_firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /Esp32_Flutter_firebase_DHT/esp32_firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_Flutter_firebase_DHT/esp32_firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /Esp32_Flutter_firebase_DHT/esp32_firebase/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_Flutter_firebase_DHT/esp32_firebase/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /Esp32_Flutter_firebase_DHT/esp32_firebase/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_Flutter_firebase_DHT/esp32_firebase/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /Esp32_Flutter_firebase_DHT/esp32_firebase/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_Flutter_firebase_DHT/esp32_firebase/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /Esp32_Flutter_firebase_DHT/esp32_firebase/ios/Runner/main.m: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | #import "AppDelegate.h" 4 | 5 | int main(int argc, char* argv[]) { 6 | @autoreleasepool { 7 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /Esp32_MPU6050_ble_FLUTTER/flutter_app_esp32_ble_mpu6050/Pods: -------------------------------------------------------------------------------- 1 | ios/Pods -------------------------------------------------------------------------------- /Esp32_MPU6050_ble_FLUTTER/flutter_app_esp32_ble_mpu6050/android/.gitignore: -------------------------------------------------------------------------------- 1 | gradle-wrapper.jar 2 | /.gradle 3 | /captures/ 4 | /gradlew 5 | /gradlew.bat 6 | /local.properties 7 | GeneratedPluginRegistrant.java 8 | -------------------------------------------------------------------------------- /Esp32_MPU6050_ble_FLUTTER/flutter_app_esp32_ble_mpu6050/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_MPU6050_ble_FLUTTER/flutter_app_esp32_ble_mpu6050/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Esp32_MPU6050_ble_FLUTTER/flutter_app_esp32_ble_mpu6050/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_MPU6050_ble_FLUTTER/flutter_app_esp32_ble_mpu6050/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Esp32_MPU6050_ble_FLUTTER/flutter_app_esp32_ble_mpu6050/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_MPU6050_ble_FLUTTER/flutter_app_esp32_ble_mpu6050/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Esp32_MPU6050_ble_FLUTTER/flutter_app_esp32_ble_mpu6050/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_MPU6050_ble_FLUTTER/flutter_app_esp32_ble_mpu6050/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Esp32_MPU6050_ble_FLUTTER/flutter_app_esp32_ble_mpu6050/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_MPU6050_ble_FLUTTER/flutter_app_esp32_ble_mpu6050/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Esp32_MPU6050_ble_FLUTTER/flutter_app_esp32_ble_mpu6050/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | android.enableR8=true 3 | android.useAndroidX=true 4 | android.enableJetifier=true 5 | -------------------------------------------------------------------------------- /Esp32_MPU6050_ble_FLUTTER/flutter_app_esp32_ble_mpu6050/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /Esp32_MPU6050_ble_FLUTTER/flutter_app_esp32_ble_mpu6050/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /Esp32_MPU6050_ble_FLUTTER/flutter_app_esp32_ble_mpu6050/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Esp32_MPU6050_ble_FLUTTER/flutter_app_esp32_ble_mpu6050/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface AppDelegate : FlutterAppDelegate 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /Esp32_MPU6050_ble_FLUTTER/flutter_app_esp32_ble_mpu6050/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_MPU6050_ble_FLUTTER/flutter_app_esp32_ble_mpu6050/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /Esp32_MPU6050_ble_FLUTTER/flutter_app_esp32_ble_mpu6050/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_MPU6050_ble_FLUTTER/flutter_app_esp32_ble_mpu6050/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /Esp32_MPU6050_ble_FLUTTER/flutter_app_esp32_ble_mpu6050/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_MPU6050_ble_FLUTTER/flutter_app_esp32_ble_mpu6050/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /Esp32_MPU6050_ble_FLUTTER/flutter_app_esp32_ble_mpu6050/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_MPU6050_ble_FLUTTER/flutter_app_esp32_ble_mpu6050/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /Esp32_MPU6050_ble_FLUTTER/flutter_app_esp32_ble_mpu6050/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_MPU6050_ble_FLUTTER/flutter_app_esp32_ble_mpu6050/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /Esp32_MPU6050_ble_FLUTTER/flutter_app_esp32_ble_mpu6050/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_MPU6050_ble_FLUTTER/flutter_app_esp32_ble_mpu6050/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /Esp32_MPU6050_ble_FLUTTER/flutter_app_esp32_ble_mpu6050/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_MPU6050_ble_FLUTTER/flutter_app_esp32_ble_mpu6050/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /Esp32_MPU6050_ble_FLUTTER/flutter_app_esp32_ble_mpu6050/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_MPU6050_ble_FLUTTER/flutter_app_esp32_ble_mpu6050/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /Esp32_MPU6050_ble_FLUTTER/flutter_app_esp32_ble_mpu6050/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_MPU6050_ble_FLUTTER/flutter_app_esp32_ble_mpu6050/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /Esp32_MPU6050_ble_FLUTTER/flutter_app_esp32_ble_mpu6050/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_MPU6050_ble_FLUTTER/flutter_app_esp32_ble_mpu6050/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /Esp32_MPU6050_ble_FLUTTER/flutter_app_esp32_ble_mpu6050/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_MPU6050_ble_FLUTTER/flutter_app_esp32_ble_mpu6050/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /Esp32_MPU6050_ble_FLUTTER/flutter_app_esp32_ble_mpu6050/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_MPU6050_ble_FLUTTER/flutter_app_esp32_ble_mpu6050/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /Esp32_MPU6050_ble_FLUTTER/flutter_app_esp32_ble_mpu6050/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_MPU6050_ble_FLUTTER/flutter_app_esp32_ble_mpu6050/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /Esp32_MPU6050_ble_FLUTTER/flutter_app_esp32_ble_mpu6050/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_MPU6050_ble_FLUTTER/flutter_app_esp32_ble_mpu6050/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /Esp32_MPU6050_ble_FLUTTER/flutter_app_esp32_ble_mpu6050/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_MPU6050_ble_FLUTTER/flutter_app_esp32_ble_mpu6050/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /Esp32_MPU6050_ble_FLUTTER/flutter_app_esp32_ble_mpu6050/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_MPU6050_ble_FLUTTER/flutter_app_esp32_ble_mpu6050/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /Esp32_display_ssd1351_jpeg/display_ssd1351_jpeg/data/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_display_ssd1351_jpeg/display_ssd1351_jpeg/data/0.jpg -------------------------------------------------------------------------------- /Esp32_display_ssd1351_jpeg/display_ssd1351_jpeg/data/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_display_ssd1351_jpeg/display_ssd1351_jpeg/data/1.jpg -------------------------------------------------------------------------------- /Esp32_display_ssd1351_jpeg/display_ssd1351_jpeg/data/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_display_ssd1351_jpeg/display_ssd1351_jpeg/data/2.jpg -------------------------------------------------------------------------------- /Esp32_display_ssd1351_jpeg/display_ssd1351_jpeg/data/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_display_ssd1351_jpeg/display_ssd1351_jpeg/data/3.jpg -------------------------------------------------------------------------------- /Esp32_display_ssd1351_jpeg/display_ssd1351_jpeg/data/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_display_ssd1351_jpeg/display_ssd1351_jpeg/data/4.jpg -------------------------------------------------------------------------------- /Esp32_display_ssd1351_jpeg/display_ssd1351_jpeg/data/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_display_ssd1351_jpeg/display_ssd1351_jpeg/data/5.jpg -------------------------------------------------------------------------------- /Esp32_display_ssd1351_jpeg/display_ssd1351_jpeg/data/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_display_ssd1351_jpeg/display_ssd1351_jpeg/data/6.jpg -------------------------------------------------------------------------------- /Esp32_display_ssd1351_jpeg/display_ssd1351_jpeg/data/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_display_ssd1351_jpeg/display_ssd1351_jpeg/data/7.jpg -------------------------------------------------------------------------------- /Esp32_display_ssd1351_jpeg/display_ssd1351_jpeg/data/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_display_ssd1351_jpeg/display_ssd1351_jpeg/data/8.jpg -------------------------------------------------------------------------------- /Esp32_display_ssd1351_jpeg/display_ssd1351_jpeg/data/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_display_ssd1351_jpeg/display_ssd1351_jpeg/data/9.jpg -------------------------------------------------------------------------------- /Esp32_dust_sensor_ble_FLUTTER/flutter_app_esp32_dust_sensor/Pods: -------------------------------------------------------------------------------- 1 | ios/Pods -------------------------------------------------------------------------------- /Esp32_dust_sensor_ble_FLUTTER/flutter_app_esp32_dust_sensor/android/.gitignore: -------------------------------------------------------------------------------- 1 | gradle-wrapper.jar 2 | /.gradle 3 | /captures/ 4 | /gradlew 5 | /gradlew.bat 6 | /local.properties 7 | GeneratedPluginRegistrant.java 8 | -------------------------------------------------------------------------------- /Esp32_dust_sensor_ble_FLUTTER/flutter_app_esp32_dust_sensor/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_dust_sensor_ble_FLUTTER/flutter_app_esp32_dust_sensor/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Esp32_dust_sensor_ble_FLUTTER/flutter_app_esp32_dust_sensor/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_dust_sensor_ble_FLUTTER/flutter_app_esp32_dust_sensor/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Esp32_dust_sensor_ble_FLUTTER/flutter_app_esp32_dust_sensor/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_dust_sensor_ble_FLUTTER/flutter_app_esp32_dust_sensor/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Esp32_dust_sensor_ble_FLUTTER/flutter_app_esp32_dust_sensor/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_dust_sensor_ble_FLUTTER/flutter_app_esp32_dust_sensor/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Esp32_dust_sensor_ble_FLUTTER/flutter_app_esp32_dust_sensor/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_dust_sensor_ble_FLUTTER/flutter_app_esp32_dust_sensor/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Esp32_dust_sensor_ble_FLUTTER/flutter_app_esp32_dust_sensor/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | android.enableR8=true 3 | android.useAndroidX=true 4 | android.enableJetifier=true 5 | -------------------------------------------------------------------------------- /Esp32_dust_sensor_ble_FLUTTER/flutter_app_esp32_dust_sensor/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /Esp32_dust_sensor_ble_FLUTTER/flutter_app_esp32_dust_sensor/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /Esp32_dust_sensor_ble_FLUTTER/flutter_app_esp32_dust_sensor/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Esp32_dust_sensor_ble_FLUTTER/flutter_app_esp32_dust_sensor/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_dust_sensor_ble_FLUTTER/flutter_app_esp32_dust_sensor/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /Esp32_dust_sensor_ble_FLUTTER/flutter_app_esp32_dust_sensor/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /Esp32_jpeg/test/data/00.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_jpeg/test/data/00.jpg -------------------------------------------------------------------------------- /Esp32_jpeg/test/data/01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_jpeg/test/data/01.jpg -------------------------------------------------------------------------------- /Esp32_jpeg/test/data/010.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_jpeg/test/data/010.jpg -------------------------------------------------------------------------------- /Esp32_jpeg/test/data/011.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_jpeg/test/data/011.jpg -------------------------------------------------------------------------------- /Esp32_jpeg/test/data/012.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_jpeg/test/data/012.jpg -------------------------------------------------------------------------------- /Esp32_jpeg/test/data/013.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_jpeg/test/data/013.jpg -------------------------------------------------------------------------------- /Esp32_jpeg/test/data/014.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_jpeg/test/data/014.jpg -------------------------------------------------------------------------------- /Esp32_jpeg/test/data/015.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_jpeg/test/data/015.jpg -------------------------------------------------------------------------------- /Esp32_jpeg/test/data/016.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_jpeg/test/data/016.jpg -------------------------------------------------------------------------------- /Esp32_jpeg/test/data/017.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_jpeg/test/data/017.jpg -------------------------------------------------------------------------------- /Esp32_jpeg/test/data/018.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_jpeg/test/data/018.jpg -------------------------------------------------------------------------------- /Esp32_jpeg/test/data/019.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_jpeg/test/data/019.jpg -------------------------------------------------------------------------------- /Esp32_jpeg/test/data/02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_jpeg/test/data/02.jpg -------------------------------------------------------------------------------- /Esp32_jpeg/test/data/020.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_jpeg/test/data/020.jpg -------------------------------------------------------------------------------- /Esp32_jpeg/test/data/021.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_jpeg/test/data/021.jpg -------------------------------------------------------------------------------- /Esp32_jpeg/test/data/022.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_jpeg/test/data/022.jpg -------------------------------------------------------------------------------- /Esp32_jpeg/test/data/023.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_jpeg/test/data/023.jpg -------------------------------------------------------------------------------- /Esp32_jpeg/test/data/024.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_jpeg/test/data/024.jpg -------------------------------------------------------------------------------- /Esp32_jpeg/test/data/025.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_jpeg/test/data/025.jpg -------------------------------------------------------------------------------- /Esp32_jpeg/test/data/026.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_jpeg/test/data/026.jpg -------------------------------------------------------------------------------- /Esp32_jpeg/test/data/027.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_jpeg/test/data/027.jpg -------------------------------------------------------------------------------- /Esp32_jpeg/test/data/028.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_jpeg/test/data/028.jpg -------------------------------------------------------------------------------- /Esp32_jpeg/test/data/029.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_jpeg/test/data/029.jpg -------------------------------------------------------------------------------- /Esp32_jpeg/test/data/03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_jpeg/test/data/03.jpg -------------------------------------------------------------------------------- /Esp32_jpeg/test/data/030.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_jpeg/test/data/030.jpg -------------------------------------------------------------------------------- /Esp32_jpeg/test/data/031.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_jpeg/test/data/031.jpg -------------------------------------------------------------------------------- /Esp32_jpeg/test/data/032.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_jpeg/test/data/032.jpg -------------------------------------------------------------------------------- /Esp32_jpeg/test/data/033.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_jpeg/test/data/033.jpg -------------------------------------------------------------------------------- /Esp32_jpeg/test/data/034.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_jpeg/test/data/034.jpg -------------------------------------------------------------------------------- /Esp32_jpeg/test/data/035.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_jpeg/test/data/035.jpg -------------------------------------------------------------------------------- /Esp32_jpeg/test/data/036.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_jpeg/test/data/036.jpg -------------------------------------------------------------------------------- /Esp32_jpeg/test/data/037.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_jpeg/test/data/037.jpg -------------------------------------------------------------------------------- /Esp32_jpeg/test/data/038.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_jpeg/test/data/038.jpg -------------------------------------------------------------------------------- /Esp32_jpeg/test/data/039.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_jpeg/test/data/039.jpg -------------------------------------------------------------------------------- /Esp32_jpeg/test/data/04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_jpeg/test/data/04.jpg -------------------------------------------------------------------------------- /Esp32_jpeg/test/data/040.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_jpeg/test/data/040.jpg -------------------------------------------------------------------------------- /Esp32_jpeg/test/data/041.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_jpeg/test/data/041.jpg -------------------------------------------------------------------------------- /Esp32_jpeg/test/data/042.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_jpeg/test/data/042.jpg -------------------------------------------------------------------------------- /Esp32_jpeg/test/data/043.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_jpeg/test/data/043.jpg -------------------------------------------------------------------------------- /Esp32_jpeg/test/data/044.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_jpeg/test/data/044.jpg -------------------------------------------------------------------------------- /Esp32_jpeg/test/data/045.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_jpeg/test/data/045.jpg -------------------------------------------------------------------------------- /Esp32_jpeg/test/data/05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_jpeg/test/data/05.jpg -------------------------------------------------------------------------------- /Esp32_jpeg/test/data/06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_jpeg/test/data/06.jpg -------------------------------------------------------------------------------- /Esp32_jpeg/test/data/07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_jpeg/test/data/07.jpg -------------------------------------------------------------------------------- /Esp32_jpeg/test/data/08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_jpeg/test/data/08.jpg -------------------------------------------------------------------------------- /Esp32_jpeg/test/data/09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_jpeg/test/data/09.jpg -------------------------------------------------------------------------------- /Esp32_temperature_humidity/data/humidity.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_temperature_humidity/data/humidity.jpg -------------------------------------------------------------------------------- /Esp32_temperature_humidity/data/temperature.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_temperature_humidity/data/temperature.jpg -------------------------------------------------------------------------------- /Esp32_temperature_humidity_ble_FLUTTER/flutter_ble_app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_temperature_humidity_ble_FLUTTER/flutter_ble_app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Esp32_temperature_humidity_ble_FLUTTER/flutter_ble_app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_temperature_humidity_ble_FLUTTER/flutter_ble_app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Esp32_temperature_humidity_ble_FLUTTER/flutter_ble_app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_temperature_humidity_ble_FLUTTER/flutter_ble_app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Esp32_temperature_humidity_ble_FLUTTER/flutter_ble_app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_temperature_humidity_ble_FLUTTER/flutter_ble_app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Esp32_temperature_humidity_ble_FLUTTER/flutter_ble_app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_temperature_humidity_ble_FLUTTER/flutter_ble_app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Esp32_temperature_humidity_ble_FLUTTER/flutter_ble_app/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | 3 | -------------------------------------------------------------------------------- /Esp32_temperature_humidity_ble_FLUTTER/flutter_ble_app/flutter_ble-master/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .dart_tool/ 3 | 4 | .packages 5 | .pub/ 6 | 7 | build/ 8 | -------------------------------------------------------------------------------- /Esp32_temperature_humidity_ble_FLUTTER/flutter_ble_app/flutter_ble-master/LICENSE: -------------------------------------------------------------------------------- 1 | TODO: Add your license here. 2 | -------------------------------------------------------------------------------- /Esp32_temperature_humidity_ble_FLUTTER/flutter_ble_app/flutter_ble-master/android/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | -------------------------------------------------------------------------------- /Esp32_temperature_humidity_ble_FLUTTER/flutter_ble_app/flutter_ble-master/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /Esp32_temperature_humidity_ble_FLUTTER/flutter_ble_app/flutter_ble-master/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'flutter_ble' 2 | -------------------------------------------------------------------------------- /Esp32_temperature_humidity_ble_FLUTTER/flutter_ble_app/flutter_ble-master/example/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | android.useAndroidX=true -------------------------------------------------------------------------------- /Esp32_temperature_humidity_ble_FLUTTER/flutter_ble_app/flutter_ble-master/example/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /Esp32_temperature_humidity_ble_FLUTTER/flutter_ble_app/flutter_ble-master/example/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /Esp32_temperature_humidity_ble_FLUTTER/flutter_ble_app/flutter_ble-master/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Esp32_temperature_humidity_ble_FLUTTER/flutter_ble_app/flutter_ble-master/example/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface AppDelegate : FlutterAppDelegate 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /Esp32_temperature_humidity_ble_FLUTTER/flutter_ble_app/flutter_ble-master/ios/Assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_temperature_humidity_ble_FLUTTER/flutter_ble_app/flutter_ble-master/ios/Assets/.gitkeep -------------------------------------------------------------------------------- /Esp32_temperature_humidity_ble_FLUTTER/flutter_ble_app/images/humidity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_temperature_humidity_ble_FLUTTER/flutter_ble_app/images/humidity.png -------------------------------------------------------------------------------- /Esp32_temperature_humidity_ble_FLUTTER/flutter_ble_app/images/temperature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_temperature_humidity_ble_FLUTTER/flutter_ble_app/images/temperature.png -------------------------------------------------------------------------------- /Esp32_temperature_humidity_ble_FLUTTER/flutter_ble_app/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /Esp32_temperature_humidity_ble_FLUTTER/flutter_ble_app/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /Esp32_temperature_humidity_ble_FLUTTER/flutter_ble_app/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Esp32_temperature_humidity_ble_FLUTTER/flutter_ble_app/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface AppDelegate : FlutterAppDelegate 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /Esp32_temperature_humidity_ble_FLUTTER/flutter_ble_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_temperature_humidity_ble_FLUTTER/flutter_ble_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /Esp32_temperature_humidity_ble_FLUTTER/flutter_ble_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_temperature_humidity_ble_FLUTTER/flutter_ble_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /Esp32_temperature_humidity_ble_FLUTTER/flutter_ble_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_temperature_humidity_ble_FLUTTER/flutter_ble_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /Esp32_temperature_humidity_ble_FLUTTER/flutter_ble_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_temperature_humidity_ble_FLUTTER/flutter_ble_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /Esp32_temperature_humidity_ble_FLUTTER/flutter_ble_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_temperature_humidity_ble_FLUTTER/flutter_ble_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /Esp32_temperature_humidity_ble_FLUTTER/flutter_ble_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_temperature_humidity_ble_FLUTTER/flutter_ble_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /Esp32_temperature_humidity_ble_FLUTTER/flutter_ble_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_temperature_humidity_ble_FLUTTER/flutter_ble_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /Esp32_temperature_humidity_ble_FLUTTER/flutter_ble_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_temperature_humidity_ble_FLUTTER/flutter_ble_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /Esp32_temperature_humidity_ble_FLUTTER/flutter_ble_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_temperature_humidity_ble_FLUTTER/flutter_ble_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /Esp32_temperature_humidity_ble_FLUTTER/flutter_ble_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_temperature_humidity_ble_FLUTTER/flutter_ble_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /Esp32_temperature_humidity_ble_FLUTTER/flutter_ble_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_temperature_humidity_ble_FLUTTER/flutter_ble_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /Esp32_temperature_humidity_ble_FLUTTER/flutter_ble_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_temperature_humidity_ble_FLUTTER/flutter_ble_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /Esp32_temperature_humidity_ble_FLUTTER/flutter_ble_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_temperature_humidity_ble_FLUTTER/flutter_ble_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /Esp32_temperature_humidity_ble_FLUTTER/flutter_ble_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_temperature_humidity_ble_FLUTTER/flutter_ble_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /Esp32_temperature_humidity_ble_FLUTTER/flutter_ble_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_temperature_humidity_ble_FLUTTER/flutter_ble_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /Esp32_temperature_humidity_ble_FLUTTER/flutter_ble_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_temperature_humidity_ble_FLUTTER/flutter_ble_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /Esp32_ultrasonic_range_finder/flutter_app/esp32_ultrasonic_distance_ble/Pods: -------------------------------------------------------------------------------- 1 | ios/Pods -------------------------------------------------------------------------------- /Esp32_ultrasonic_range_finder/flutter_app/esp32_ultrasonic_distance_ble/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_ultrasonic_range_finder/flutter_app/esp32_ultrasonic_distance_ble/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Esp32_ultrasonic_range_finder/flutter_app/esp32_ultrasonic_distance_ble/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_ultrasonic_range_finder/flutter_app/esp32_ultrasonic_distance_ble/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Esp32_ultrasonic_range_finder/flutter_app/esp32_ultrasonic_distance_ble/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_ultrasonic_range_finder/flutter_app/esp32_ultrasonic_distance_ble/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Esp32_ultrasonic_range_finder/flutter_app/esp32_ultrasonic_distance_ble/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | 3 | -------------------------------------------------------------------------------- /Esp32_ultrasonic_range_finder/flutter_app/esp32_ultrasonic_distance_ble/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /Esp32_ultrasonic_range_finder/flutter_app/esp32_ultrasonic_distance_ble/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /Esp32_ultrasonic_range_finder/flutter_app/esp32_ultrasonic_distance_ble/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Esp32_ultrasonic_range_finder/flutter_app/esp32_ultrasonic_distance_ble/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface AppDelegate : FlutterAppDelegate 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /Esp32_wifi_ssid_pw_via_ble/flutter_wifi_setter_ble/Pods: -------------------------------------------------------------------------------- 1 | ios/Pods -------------------------------------------------------------------------------- /Esp32_wifi_ssid_pw_via_ble/flutter_wifi_setter_ble/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_wifi_ssid_pw_via_ble/flutter_wifi_setter_ble/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Esp32_wifi_ssid_pw_via_ble/flutter_wifi_setter_ble/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_wifi_ssid_pw_via_ble/flutter_wifi_setter_ble/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Esp32_wifi_ssid_pw_via_ble/flutter_wifi_setter_ble/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_wifi_ssid_pw_via_ble/flutter_wifi_setter_ble/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Esp32_wifi_ssid_pw_via_ble/flutter_wifi_setter_ble/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_wifi_ssid_pw_via_ble/flutter_wifi_setter_ble/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Esp32_wifi_ssid_pw_via_ble/flutter_wifi_setter_ble/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_wifi_ssid_pw_via_ble/flutter_wifi_setter_ble/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Esp32_wifi_ssid_pw_via_ble/flutter_wifi_setter_ble/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | 3 | android.useAndroidX=true 4 | android.enableJetifier=true 5 | -------------------------------------------------------------------------------- /Esp32_wifi_ssid_pw_via_ble/flutter_wifi_setter_ble/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /Esp32_wifi_ssid_pw_via_ble/flutter_wifi_setter_ble/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /Esp32_wifi_ssid_pw_via_ble/flutter_wifi_setter_ble/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Esp32_wifi_ssid_pw_via_ble/flutter_wifi_setter_ble/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_wifi_ssid_pw_via_ble/flutter_wifi_setter_ble/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /Esp32_wifi_ssid_pw_via_ble/flutter_wifi_setter_ble/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_wifi_ssid_pw_via_ble/flutter_wifi_setter_ble/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /Esp32_wifi_ssid_pw_via_ble/flutter_wifi_setter_ble/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_wifi_ssid_pw_via_ble/flutter_wifi_setter_ble/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /Esp32_wifi_ssid_pw_via_ble/flutter_wifi_setter_ble/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_wifi_ssid_pw_via_ble/flutter_wifi_setter_ble/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /Esp32_wifi_ssid_pw_via_ble/flutter_wifi_setter_ble/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_wifi_ssid_pw_via_ble/flutter_wifi_setter_ble/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /Esp32_wifi_ssid_pw_via_ble/flutter_wifi_setter_ble/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_wifi_ssid_pw_via_ble/flutter_wifi_setter_ble/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /Esp32_wifi_ssid_pw_via_ble/flutter_wifi_setter_ble/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_wifi_ssid_pw_via_ble/flutter_wifi_setter_ble/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /Esp32_wifi_ssid_pw_via_ble/flutter_wifi_setter_ble/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_wifi_ssid_pw_via_ble/flutter_wifi_setter_ble/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /Esp32_wifi_ssid_pw_via_ble/flutter_wifi_setter_ble/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_wifi_ssid_pw_via_ble/flutter_wifi_setter_ble/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /Esp32_wifi_ssid_pw_via_ble/flutter_wifi_setter_ble/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_wifi_ssid_pw_via_ble/flutter_wifi_setter_ble/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /Esp32_wifi_ssid_pw_via_ble/flutter_wifi_setter_ble/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_wifi_ssid_pw_via_ble/flutter_wifi_setter_ble/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /Esp32_wifi_ssid_pw_via_ble/flutter_wifi_setter_ble/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_wifi_ssid_pw_via_ble/flutter_wifi_setter_ble/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /Esp32_wifi_ssid_pw_via_ble/flutter_wifi_setter_ble/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_wifi_ssid_pw_via_ble/flutter_wifi_setter_ble/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /Esp32_wifi_ssid_pw_via_ble/flutter_wifi_setter_ble/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_wifi_ssid_pw_via_ble/flutter_wifi_setter_ble/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /Esp32_wifi_ssid_pw_via_ble/flutter_wifi_setter_ble/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_wifi_ssid_pw_via_ble/flutter_wifi_setter_ble/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /Esp32_wifi_ssid_pw_via_ble/flutter_wifi_setter_ble/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_wifi_ssid_pw_via_ble/flutter_wifi_setter_ble/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /Esp32_wifi_ssid_pw_via_ble/flutter_wifi_setter_ble/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_wifi_ssid_pw_via_ble/flutter_wifi_setter_ble/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /Esp32_wifi_ssid_pw_via_ble/flutter_wifi_setter_ble/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/Esp32_wifi_ssid_pw_via_ble/flutter_wifi_setter_ble/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /Esp32_wifi_ssid_pw_via_ble/flutter_wifi_setter_ble/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /FIREBASE/Cloud_Firestore_Application/3_Display_Done/data/icon_firebase_off.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/FIREBASE/Cloud_Firestore_Application/3_Display_Done/data/icon_firebase_off.jpg -------------------------------------------------------------------------------- /FIREBASE/Cloud_Firestore_Application/3_Display_Done/data/icon_firebase_on.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/FIREBASE/Cloud_Firestore_Application/3_Display_Done/data/icon_firebase_on.jpg -------------------------------------------------------------------------------- /FIREBASE/Cloud_Firestore_Application/3_Display_Done/data/icon_wifi_off.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/FIREBASE/Cloud_Firestore_Application/3_Display_Done/data/icon_wifi_off.jpg -------------------------------------------------------------------------------- /FIREBASE/Cloud_Firestore_Application/3_Display_Done/data/icon_wifi_on.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/FIREBASE/Cloud_Firestore_Application/3_Display_Done/data/icon_wifi_on.jpg -------------------------------------------------------------------------------- /FIREBASE/Cloud_Firestore_Application/4_iot_firestore_flutter_app/README.md: -------------------------------------------------------------------------------- 1 | # IoT Firestore Flutter APP 2 | https://youtu.be/nsopdabOcug 3 | 4 | # My Channel 5 | www.that-project.com 6 | 7 | # Flutter UI Design 8 | https://github.com/tonydavidx/signin-register-page-ui-flutter -------------------------------------------------------------------------------- /FIREBASE/Cloud_Firestore_Application/4_iot_firestore_flutter_app/assets/images/back_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/FIREBASE/Cloud_Firestore_Application/4_iot_firestore_flutter_app/assets/images/back_arrow.png -------------------------------------------------------------------------------- /FIREBASE/Cloud_Firestore_Application/4_iot_firestore_flutter_app/assets/images/humidity_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/FIREBASE/Cloud_Firestore_Application/4_iot_firestore_flutter_app/assets/images/humidity_icon.png -------------------------------------------------------------------------------- /FIREBASE/Cloud_Firestore_Application/4_iot_firestore_flutter_app/assets/images/iot_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/FIREBASE/Cloud_Firestore_Application/4_iot_firestore_flutter_app/assets/images/iot_image.png -------------------------------------------------------------------------------- /FIREBASE/Cloud_Firestore_Application/4_iot_firestore_flutter_app/assets/images/temperature_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/FIREBASE/Cloud_Firestore_Application/4_iot_firestore_flutter_app/assets/images/temperature_icon.png -------------------------------------------------------------------------------- /FIREBASE/Cloud_Firestore_Application/4_iot_firestore_flutter_app/lib/const/custom_colors.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | // Colors 4 | const kMainBG = Color(0xff191720); 5 | const kTextFieldFill = Color(0xff1E1C24); 6 | const kCardBG = Color(0xffffffff); 7 | -------------------------------------------------------------------------------- /FIREBASE/Cloud_Firestore_Application/4_iot_firestore_flutter_app/lib/route/routing_constants.dart: -------------------------------------------------------------------------------- 1 | const String SplashScreenRoute = '/'; 2 | const String SignInScreenRoute = '/SignIn'; 3 | const String SignUpScreenRoute = '/SignUp'; 4 | const String DashboardScreenRoute = '/Dashboard'; 5 | -------------------------------------------------------------------------------- /FIREBASE/STREAMING_FROM_ESP32_TO_ESP8266/ESP8266_ILI9341_NTPTIME/data/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/FIREBASE/STREAMING_FROM_ESP32_TO_ESP8266/ESP8266_ILI9341_NTPTIME/data/bg.jpg -------------------------------------------------------------------------------- /FIREBASE/STREAMING_FROM_ESP_TO_FLUTTER/flutter_realtime_dht11/android/.gitignore: -------------------------------------------------------------------------------- 1 | gradle-wrapper.jar 2 | /.gradle 3 | /captures/ 4 | /gradlew 5 | /gradlew.bat 6 | /local.properties 7 | GeneratedPluginRegistrant.java 8 | -------------------------------------------------------------------------------- /FIREBASE/STREAMING_FROM_ESP_TO_FLUTTER/flutter_realtime_dht11/android/app/src/main/java/com/thatproject/firebase_realtimedb/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.thatproject.firebase_realtimedb; 2 | 3 | import io.flutter.embedding.android.FlutterActivity; 4 | 5 | public class MainActivity extends FlutterActivity { 6 | } 7 | -------------------------------------------------------------------------------- /FIREBASE/STREAMING_FROM_ESP_TO_FLUTTER/flutter_realtime_dht11/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/FIREBASE/STREAMING_FROM_ESP_TO_FLUTTER/flutter_realtime_dht11/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /FIREBASE/STREAMING_FROM_ESP_TO_FLUTTER/flutter_realtime_dht11/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/FIREBASE/STREAMING_FROM_ESP_TO_FLUTTER/flutter_realtime_dht11/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /FIREBASE/STREAMING_FROM_ESP_TO_FLUTTER/flutter_realtime_dht11/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/FIREBASE/STREAMING_FROM_ESP_TO_FLUTTER/flutter_realtime_dht11/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /FIREBASE/STREAMING_FROM_ESP_TO_FLUTTER/flutter_realtime_dht11/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/FIREBASE/STREAMING_FROM_ESP_TO_FLUTTER/flutter_realtime_dht11/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /FIREBASE/STREAMING_FROM_ESP_TO_FLUTTER/flutter_realtime_dht11/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/FIREBASE/STREAMING_FROM_ESP_TO_FLUTTER/flutter_realtime_dht11/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /FIREBASE/STREAMING_FROM_ESP_TO_FLUTTER/flutter_realtime_dht11/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | android.enableR8=true 3 | android.useAndroidX=true 4 | android.enableJetifier=true 5 | -------------------------------------------------------------------------------- /FIREBASE/STREAMING_FROM_ESP_TO_FLUTTER/flutter_realtime_dht11/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /FIREBASE/STREAMING_FROM_ESP_TO_FLUTTER/flutter_realtime_dht11/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /FIREBASE/STREAMING_FROM_ESP_TO_FLUTTER/flutter_realtime_dht11/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /FIREBASE/STREAMING_FROM_ESP_TO_FLUTTER/flutter_realtime_dht11/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface AppDelegate : FlutterAppDelegate 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /FIREBASE/STREAMING_FROM_ESP_TO_FLUTTER/flutter_realtime_dht11/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/FIREBASE/STREAMING_FROM_ESP_TO_FLUTTER/flutter_realtime_dht11/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /FIREBASE/STREAMING_FROM_ESP_TO_FLUTTER/flutter_realtime_dht11/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/FIREBASE/STREAMING_FROM_ESP_TO_FLUTTER/flutter_realtime_dht11/web/favicon.png -------------------------------------------------------------------------------- /FIREBASE/STREAMING_FROM_ESP_TO_FLUTTER/flutter_realtime_dht11/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/FIREBASE/STREAMING_FROM_ESP_TO_FLUTTER/flutter_realtime_dht11/web/icons/Icon-192.png -------------------------------------------------------------------------------- /FIREBASE/STREAMING_FROM_ESP_TO_FLUTTER/flutter_realtime_dht11/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/FIREBASE/STREAMING_FROM_ESP_TO_FLUTTER/flutter_realtime_dht11/web/icons/Icon-512.png -------------------------------------------------------------------------------- /MESSAGE/Twilio/0_ESP32TTGO_FIRESTORE_SMS/Messenger.h: -------------------------------------------------------------------------------- 1 | #ifndef Messenger_H_ 2 | #define Messenger_H_ 3 | 4 | #include "twilio.hpp" 5 | 6 | class Messenger { 7 | private: 8 | Twilio *twilio; 9 | 10 | public: 11 | Messenger(); 12 | ~Messenger(); 13 | void sendMessage(String msg); 14 | }; 15 | 16 | #endif -------------------------------------------------------------------------------- /MESSAGE/Twilio/0_ESP32TTGO_FIRESTORE_SMS/data/icon_firebase_off.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/MESSAGE/Twilio/0_ESP32TTGO_FIRESTORE_SMS/data/icon_firebase_off.jpg -------------------------------------------------------------------------------- /MESSAGE/Twilio/0_ESP32TTGO_FIRESTORE_SMS/data/icon_firebase_on.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/MESSAGE/Twilio/0_ESP32TTGO_FIRESTORE_SMS/data/icon_firebase_on.jpg -------------------------------------------------------------------------------- /MESSAGE/Twilio/0_ESP32TTGO_FIRESTORE_SMS/data/icon_wifi_off.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/MESSAGE/Twilio/0_ESP32TTGO_FIRESTORE_SMS/data/icon_wifi_off.jpg -------------------------------------------------------------------------------- /MESSAGE/Twilio/0_ESP32TTGO_FIRESTORE_SMS/data/icon_wifi_on.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/ThatProject/94ece7989916c9c025e8d2cc45c82a9afe032ad0/MESSAGE/Twilio/0_ESP32TTGO_FIRESTORE_SMS/data/icon_wifi_on.jpg --------------------------------------------------------------------------------