element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet & Tria Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • About Us
    About the element14 Community
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Japan
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      •  Vietnam
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Project14
  • Challenges & Projects
  • More
Project14
Show and Tell! Analog Soul, Digital Heart: A World-War II Emergency Phone
  • News
  • Member Updates
  • Competitions
  • Forum
  • Documents
  • Theme Suggestions
  • Polls
  • Members
  • More
  • Cancel
  • New
Join Project14 to participate - click to join for free!
  • Share
  • More
  • Cancel
Group Actions
  • Group RSS
  • More
  • Cancel
Engagement
  • Author Author: saturn_rings
  • Date Created: 5 Aug 2026 7:51 PM Date Created
  • Views 145 views
  • Likes 4 likes
  • Comments 2 comments
  • esp32
  • sim800l
  • raspberry pi
  • lilygo
  • adafruit
  • arduino
Related
Recommended

Analog Soul, Digital Heart: A World-War II Emergency Phone

saturn_rings
saturn_rings
5 Aug 2026
Analog Soul, Digital Heart: A World-War II Emergency Phone

The inspiration

Let's be honest, our grandparents hate smartphones. They find it hard to navigate through menus, forget where the emergency button is, and often want nothing to do with modern technology. On top of that, the world is full of electronic waste. That's where the idea came from: why not kill two birds with one stone? My bachelor's thesis professor gave me this telephone to restore; although its exact model remains unconfirmed despite historical research, engraved codes on the components indicate it was standardized by the Reichspost (RP), possibly pointing to a Siemens & Halske Ortsbatterie desk phone from 1933 that used a local battery system and a side-mounted magneto crank instead of a rotary dial. I took an old telephone from the World War II era and gave it a second chance. The main idea was to build an emergency device where seniors or vulnerable people don't have to learn anything new, they use the exact classic gesture they grew up with: picking up the receiver from the hook. This project started as my bachelor's thesis.

How it works

On the outside, the classic look was preserved, but on the inside, some microcontrollers were inserted to implement an emergency logic. There's no need to touch screens or search for contacts. When someone has an emergency, they have two super simple options: either pick up the receiver (detected instantly by a microswitch hidden in the hook mechanism) or just say "Help" (voice command).

What happens next?

The second the alarm is triggered, the LilyGO T-Call (ESP32 + SIM800L) board springs into action:

  1. It talks to nearby cell towers to grab its coordinates via the GSM network.

  2. It automatically sends a message on Telegram with a direct Google Maps link so the family knows exactly where the person is.

  3. It places a direct emergency phone call straight through the SIM card.

image

Step-by-Step implementation guide

Step 1 - hardware assembly & retrofitting: cleaning and restoring the vintage telephone chassis, painting it with a rugged hammer-tone finish, and adapting a custom microswitch onto the receiver's hook mechanism to capture physical lifting.

image

Step 2 - The processing & communication core & audio/visual feedback: inside the shell, I mounted the LilyGO T-Call board (which packs an ESP32-WROVER-B and a SIM800L module together), a 2-inch TFT ST7789 display, a voice-command subsystem (powered by a Raspberry Pi 4 and an Adafruit PyBadge), an external antenna, and a Li-Po battery. To keep track of what's happening, the display was used to indicate all the states the board goes through, from initialization and operator detection to network searching and placing the call. Additionally, to give the user instant audio feedback, I added an active buzzer. It chirps during critical moments (like confirming that an emergency alarm has been triggered) and, even better, it mimics a traditional dial/ring tone while the emergency call is active so the user knows the call is going through.

image

Step 3 - firmware & cellular positioning: writing the Arduino-based firmware using a finite-state machine logic to query tower parameters sequentially (AT+CCED, AT+CENG, AT+CREG=2) for cellular triangulation.

Step 4 - cloud & Telegram integration: executing HTTPS POST requests to the Google Geolocation API and utilizing the Telegram Bot API to dispatch formatted Markdown emergency messages.

image

What the Telegram message contains: 

  • Source field: the structure of this message stays identical whether triggered by voice or the hook-switch, only the source field changes.
  • Timestamp & Location: shows the exact date, time, and coordinates with estimated precision.
  • Google Maps Link: a valid, clickable link opening the exact pin on Google Maps.
  • GSM Tower Data: MCC & MNC: identifies the country (Romania - 226) and operator (Vodafone - 01), LAC defines the zone group of cell towers, while Cell ID is the unique identifier of the specific tower antenna used for connection, and the signal who shows the network signal strength at activation.

Step 5 - Voice command subsystem: training a custom voice-recognition model to detect the trigger word "Help", allowing the system to initiate an emergency alert hands-free alongside the physical hookswitch. The voice module was developed by another colleague. In collaboration, I developed a way to integrate it inside my project.

Interesting Challenges and Workarounds

Challenge 1 (AT command incompatibility): the primary command initially planned for data extraction (AT+CCED) was not supported by the SIM800L firmware version.

  • Workaround: developed a cascading fallback algorithm that automatically switches to AT+CENG and AT+CREG=2 to reliably extract network parameters under any condition.

Challenge 2 (rural geolocation accuracy): testing in rural areas revealed long distances between cell towers, resulting in coverage radio over 6 km and position errors around 1 km.

  • Workaround: thoroughly documented this physical limitation of Cell-ID technology and proposed upgrading to a native GPS module (like the LilyGO T-SIM7000G) for future iterations.

    Challenge 3 (voice recognition reliability): voice triggers proved inconsistent in noisy real-world environments.

    • Workaround: by testing different thresholds for the voice recognition method, a 70% accuracy has been achieved, taking into account that only an analog microphone could be installed on the Adafruit microcontroller; a better microphone would achieve better results.

    Current project status & remaining challenges

    What is working right now: the hardware restoration of the vintage telephone housing is complete, the mechanical hook switch and audio feedback (buzzer) are fully functional, and the core emergency loop, fetching cellular data and dispatching a Telegram alert with a Google Maps link, works reliably in covered areas.

    Remaining challenges & the next-gen dissertation plan: right now, the project is a solid prototype, but the journey doesn't stop here. For my dissertation project, I am currently working on scaling and expanding this architecture to make it truly smart and medical-grade. The remaining challenges and upcoming upgrades include:

    1. mmWave Radar Integration: hiding a millimeter-wave (FMCW) radar sensor inside the vintage casing to provide non-contact, automated fall detection and continuous health monitoring for seniors.
    2. TinyML Audio Analysis: implementing an on-device Machine Learning model running directly on the ESP32 using TinyML to classify distress sounds (like cries for help or breaking noises) acoustically.
    3. Hyper-Local Geolocation: tackling the rural positioning error (~1000m) by fusing raw GSM cell-tower data with nearby Wi-Fi network scanning through the Google Geolocation API, aiming to bring accuracy down under 150 meters.

    If you have any other ideas for future improvements, feel free to share them! Thank you for taking the time to read about my project, and if you want to find out more or discuss it further, feel free to drop me a message anytime! 

    image

    • Sign in to reply
    • saturn_rings
      saturn_rings 1 month ago in reply to dougw

      thank you!

      • Cancel
      • Vote Up 0 Vote Down
      • Sign in to reply
      • More
      • Cancel
    • dougw
      dougw 1 month ago

      cool project...

      • Cancel
      • Vote Up 0 Vote Down
      • Sign in to reply
      • More
      • Cancel
    element14 Community

    element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

    • Members
    • Learn
    • Technologies
    • Challenges & Projects
    • Products
    • Store
    • About Us
    • Feedback & Support
    • FAQs
    • Terms of Use
    • Privacy Policy
    • Legal and Copyright Notices
    • Sitemap
    • Cookies

    An Avnet Company © 2026 Premier Farnell Limited. All Rights Reserved.

    Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

    Follow element14

    • X
    • Facebook
    • linkedin
    • YouTube