1. Project folder(App, code and circuit diagram)- https://drive.google.com/drive/folders/1DIOnyDH0AMn6cNU-bptEGlkgNnT4GoUG 2. Final project- Features- Date and time Live location address Translation to english Message communication Audio output on earphones Rechargeable with all battery protection Auto reconnect to Bluetooth App 3. Follow circuit diagram- *Components list- Shop- https://futuristiciox.blogspot.com/p/shop.html?m=1 >ESP32 wroom >0.96 inch OLED display >3.7v lipo or 18650 lithium ion battery 600mah >to 2600mah >134n3p Charging module with 5v boost Switch 4. Upload code to ESP32- #include <Wire.h> #include <Adafruit_GFX.h> #include <Adafruit_SSD1306.h> #include "BluetoothSerial.h" #define SCREEN_WIDTH 128 #define SCREEN_HEIGHT 64 #define OLED_RESET -1 #define G_MESSAGE_TIMEOUT 30000 // 30 seconds Adafruit_SSD1306 display(SCREEN_WIDTH, SCREEN_HEIGHT, &Wire, OLED_RESET); BluetoothSerial SerialBT...