.NET MAUI Development
Xamarin Application Development
React Native App Development
iOS Application Development
Android Application Development
Android Wear App Development
Ionic Development
Universal Windows Platform (UWP)
Kotlin Application Development
Swift Application Development
Flutter Application Development
PWA Application Development
Hire Flutter Developers
Hire Certified React Native Developers
Flutter Health Tech & Wearable App Development Company
React Native Health Tech Wearable App Development
Offshore Software Development
Custom Application Development
Front-End Development
Full Stack Development
AI & Machine Learning
Custom CRM Solutions
Flask Software Development
Electron JS Development
ChatGPT Development
.NET Application Development
.NET Nuke Development
Microsoft Dynamics CRM
Microsoft Small Business Solution
VB .NET Development
C# Development
Sharepoint Migration
Sharepoint Development
ASP.NET Core Development
ASP.NET Development
ASP.NET MVC Development
Kentico CMS
Umbraco CMS
AJAX Development
Agile Development
Microsoft Bot
Microsoft Blazor
Microsoft Azure Cognitive
.Net Maui Healthcare Wearable App
Nuki Smart Lock
Salto Smart Lock
TTlock Smart Lock
NFC App Development
Smart Locker Solutions
Hospital Smart Lock Systems
Hotel Smart Lock Systems
Smart Home & Office Locks
Smart Access for Schools & Colleges
Unloc Smart Lock Integration
Yale & August Smart Lock Integration
Populife Smart Lock Integration
Smart Lock Hardware Development
RaspBerry Pi
Firmware Software Development
ESP 32 Software Development
Embedded Development
Internet of Things
IoT Sensor Integration & Development Solutions
Azure IOT Integration
Tuya IoT App Development
Particle IoT SDK
Hire IoT & Embedded Developers
STM32 Firmware & Hardware Development
IoT Development with AI
Dairy GPS Tracking Solutions
GPS Fleet Management Software
Car Rental & Subscription Solutions
Car Buy & Sell Marketplace Development
AI-Powered Car Wash App Development
PCB Design & Fabrication
IoT AC Automation
AI–IoT Painting Solutions
IoT Wearable Hardware & App Development
HVAC Automation & AI Control Systems
Smart Home IoT Engineering
AI Embedded Systems
AI Hardware Design Service
Advanced IoT Hardware & Firmware Development
Device Driver Development Services
Microchip PIC & AVR Development
Hire IoT Architects
IoT Cloud & Infrastructure Solutions
Infineon XMC / AURIX Development Services
Matter & Thread IoT Services
IoT Wearable Device Development
Native IoT Mobile App Development (BLE & Wi-Fi)
Snapdragon IoT Firmware Development
Renesas RA/RX Firmware Services
Smart Wearable App Development
Smart IoT Meters
Smart Healthcare Wearable App Development
Health Care Monitoring System
Fitness Tracking App Development
Smart Home Automation Apps
nRF PCB Design
ESP32 PCB Design
STM32 PCB Design
Embedded Wearables Engineers
Rental Property Management System
Smart Lighting Development
Infineon Semiconductor Firmware Development Services
Custom Camera Development: Hardware, Firmware & PCB Prototyping
Adequate Infosoft is a technology company specializing in high-performance mobile application development by integrating hardware devices with modern software solutions.
We developed a BLE wearable mobile application for Native iOS and Android platforms, enabling secure device pairing, real-time health data streaming, telemetry processing, and cloud synchronization.
Our client, a hardware startup developing a custom BLE-enabled wearable, needed a reliable mobile app to connect with their device.
The client requires a mobile application that will establish a connection to the hardware, will stream live data from the various sensors contained within the hardware to a user's mobile device, and will help the client illustrate the wearable for investors and beta users during the product launch.
The challenge was not just building an app, but ensuring stable BLE communication, accurate data handling, and consistent performance across both iOS and Android platforms.
Using native technologies and incorporating years of experience working with Bluetooth Low Energy (BLE), our team built a BLE-enabled solution that connects to a real-world hardware product, continuously processes live sensor data, and provides real-time visualization of all data in a manner that is extremely reliable.
This project demonstrates our ability to design and develop complete user experiences for wearable applications, beginning with the connection of the hardware and concluding with a seamless user experience on the mobile device.
Client - Hardware Start-Up / Wearable Device Manufacturer
Device - Custom Bluetooth Low Energy (BLE) Wearable Device Prototype (currently in development, no production unit available).
Role - Cross Platform BLE Mobile Application Developer
Time - 8 Weeks
Deliverable - A production-ready, cross-platform mobile application (iOS + Android) that will interface with the live hardware, provide sensor data streaming to the mobile device, and complete all necessary real-world reliability testing.
The Client had a working hardware prototype, a BLE 5.3 Fitness & Health Wearable – built by the Hardware Team with a PCB designed, Embedded Firmware Written and Data being streamed to a Serial Terminal via USB, however, there was currently no Mobile Application built to present the product to investors or Beta Testers.
Hardware specifications (provided by client):
| Component | Specification |
|---|---|
| BLE SoC | Nordic nRF52840 (Cortex-M4, BLE 5.3) |
| Sensors | 6-axis IMU (accelerometer + gyro), optical heart rate (MAX30102), temperature (TMP117) |
| Data rate | 4 kB/s (IMU @ 100Hz = 6 bytes × 3 axes × 100 = 1.8 kB/s + HR @ 25Hz + temp) |
| Battery | 200mAh Li-Po, target 7 days between charges |
| Advertising | 100ms interval (discoverable) |
| Connection interval | 30ms (low latency for real-time feedback) |
Requested result: Developed a Mobile App that will connect to the hardware in real-time, stream all sensor data, and store/visualize the data. (i.e., iOS Before Android)
| Requirement | iOS Choice | Android Choice | Rationale |
|---|---|---|---|
| BLE Framework | CoreBluetooth (native) | BlueGatt (Jetpack Compose) | Native frameworks are the most reliable; third-party BLE libs introduced latency in testing |
| Cross-platform | Not used | Not used | Built separately for each platform to ensure maximum BLE reliability — cross-platform tools (Flutter/React Native) add BLE abstraction bugs |
| Data parsing | Swift + Codable | Kotlin + kotlinx.serialization | Firmware sends little-endian byte arrays; both platforms parse identically |
| Local storage | Core Data | Room | Store session data for offline review |
| Charting | Swift Charts (iOS 16+) | MPAndroidChart | Real-time sensor visualization |
Why not Flutter or React Native for BLE? Reasoning behind not using Flutter or React Native for Bluetooth Low Energy (BLE) development was that there were crosses-platform plugin solutions available (flutter_reactive_ble, react-native-ble-plx) that would introduce 50-150ms of latency.
| Service UUID | Characteristic | Format | Properties | Purpose |
|---|---|---|---|---|
| 180A (Device Information) | 2A29 (Manufacturer) | String | Read | Device identification |
| 2A24 (Model) | String | Read | Model number | |
| FFE0 (Custom Service) | FFE1 (IMU Data) | 20 bytes (little-endian) | Notify | Accelerometer (6 bytes) + gyro (6 bytes) + timestamp (4 bytes) + sequence (4 bytes) |
| FFE2 (Heart Rate) | 2 bytes | Notify | HR in BPM + confidence | |
| FFE3 (Temperature) | 2 bytes | Notify | °C × 100 (int16) | |
| FFE4 (Battery) | 1 byte | Read/Notify | 0-100% | |
| FFE5 (Command) | 1 byte | Write | Start/stop streaming, set IMU rate |
Critical detail discovered during implementation: The hardware team had set the IMU characteristic's CCCD (Client Characteristic Configuration Descriptor) incorrectly. Notifications were not enabling properly on iOS (CoreBluetooth requires explicit CCCD writes, which the firmware wasn't acking).
iOS BLE Connection Manager (Swift + CoreBluetooth)
Android BLE Implementation (Kotlin + Jetpack Compose)
The issue occurs every 90 seconds when the iPhone app connects to the peripheral device for about 60 - 120 seconds before dropping the connection with a CBErrorDomain error code which indicates a connection timeout occurred (7).
Root cause (identified through packet analysis): The peripheral firmware was generating too many notifications to the BLE peripheral exceeding the connection interval (100 Hz IMU data = every 10ms vs. connection interval=30ms) resulting in an overflow of notifications on the peripheral device.
Solution: Collaborated with Hardware to decrease the IMU notification from 100 Hz to 50 Hz (every 20 ms). Additionally, created a rate-limiting buffer on the app side to manage burst notifications; Result: No disconnects over a 6-hour soak testing period.
Symptom: User locks phone screen, BLE notifications from app stop after 30 sec.
Root cause: iOS and Android both restrict usage of BLE in the background. While iOS allows background access to BLE notifications, it requires the Bluetooth-Central mode (UIBackgroundModes) on and proper restoration processes to be defined.
Solution (iOS):
Solution (Android):
Symptom: Sometimes the app would pair with the device successfully, other times it would fail with "Authentication required" on one platform but not the other.
Root cause: The firmware's security settings were inconsistent — it requested bonding (pairing) only when it felt like it, depending on battery level (a bug in the power management code).
Solution: Implemented manual pairing flow on both platforms: Added user-facing instruction screen: "If prompted to pair, tap Pair/OK" — 95% of users then succeeded.
The app visualizes accelerometer three-axis data in real time. The chart scrolls to the left as new data is received.
The app displays three-axis accelerometer data in real time, scrolling left as new data arrives:
| Platform | Device Model | BLE Chipset | Results |
|---|---|---|---|
| iOS 17 | iPhone 15 Pro | Apple H2 | Full throughput, stable |
| iOS 16 | iPhone 12 | Apple H1 | Full throughput |
| iOS 15 | iPhone SE 2 | Apple W3 | Full throughput |
| Android 14 | Samsung S24 Ultra | BCM4375 | Full throughput |
| Android 13 | Google Pixel 7 | CYW55572 | Full throughput |
| Android 12 | OnePlus 9 | QCA6391 | Lower throughput (90% of iOS) |
| Android 11 | Xiaomi Mi 11 | Unknown | Intermittent connection drops |
Lessons from Android fragmentation: Qualcomm and Broadcom BLE chips perform well. Xiaomi's custom BLE stack had issues and solve this, we added a "compatibility mode" that reduces notification rate to 25Hz for problematic devices.
| Distance | Obstacles | iOS RSSI | Android RSSI | Connection Status |
|---|---|---|---|---|
| 1m | None | -45 dBm | -48 dBm | Full data rate |
| 5m | Line of sight | -65 dBm | -68 dBm | Full data rate |
| 10m | Line of sight | -78 dBm | -82 dBm | Reduced rate (auto-negotiated) |
| 15m | Office cubicles | -88 dBm | -95 dBm | ⚠️ Intermittent |
| 20m | Office cubicles | -95 dBm | -102 dBm | Disconnected |
Recommendation to client: Advertise "15m reliable range" for marketing, 10m for guaranteed performance.
| Scenario | iPhone Battery Drain (per hour) | Android Battery Drain | Device Battery Drain |
|---|---|---|---|
| App in foreground, streaming | 12% | 15% | 8% |
| App in background, streaming | 4% | 7% (foreground service) | 6% |
| App disconnected | 1% | 2% | 1% (advertising only) |
| Deliverable | Status | Proof |
|---|---|---|
| iOS App | ✅ | Live connection to client's physical prototype confirmed via video call |
| Android App | ✅ | Same confirmation |
| BLE connection manager | ✅ | Handles reconnect, pairing, background mode |
| Real-time IMU graph | ✅ | Proven at 50Hz no frame drops |
| Heart rate + temp monitor | ✅ | Verified against reference device |
| Data export (CSV) | ✅ | Session data exportable for analysis |
| Documentation | ✅ | BLE spec + connection troubleshooting guide |
"The documentation you left about the CCCD bug saved me 1 weeks. I would have blamed my firmware for another month. Now I know exactly what to fix."
— Hardware Engineer (Client's team)
The goal of this project was to create a fully functioning mobile application for both iOS and Android (BLE) that would allow users to connect to a physical, in-development, wearable device. The project was achieved by utilizing only actual code (no mockups or theoretical designs) on actively developed hardware and successfully completing on-time within the first week of development.
The following are some key metrics from the project:
A fully functional mobile application (iOS + Android) was developed which connects wirelessly via Bluetooth Low Energy (BLE) to an actual wearable device (in-development). The mobile application was developed, tested, and certified within 7 days of completing coding and works with the live hardware on 9 different devices during that week...4 iOS Devs + 5 Android Devs.
The client has now established that their app is functional enough to show to potential investors, do beta testing and eventually submit to the various App Stores. The hardware prototype is now a 'fully functional' product as opposed to an 'unattached prototype'.
Swift, CoreBluetooth, SwiftUI, Combine, Core Data, Kotlin, Jetpack Compose, BluetoothGatt, Room, MPAndroidChart
Private GitHub repo with full source code, build instructions, and a 1-hour video walkthrough connecting to their specific hardware.
Client satisfaction is our ultimate goal. Here are some kind words of our precious clients they have used to express their satisfaction with our service.
I came across Adequate Infosoft while searching for an IT company to design a virtual platform for my Telemedicine business. AI helped me to make my dream project a reality.
Frederick Hess
The price and professionalism of Adequate Infosoft's project team are the most appealing aspects of working with them. The team provides weekly progress reports and responds quickly to the concerns I have.
Kim Jespersen
My team is very satisfied with the professionalism shown by the Adequate Infosoft team during the project. We are looking forward to working with them again.
Óli Freysson
I contacted AI for an Android and iOS application and I am completely satisfied with their service.
Thomas Cheah
I am very satisfied with Adequate Infosoft. very helpful, positive, and quick communication so far. I am looking forward to further cooperation.
Great experience hiring them, understood the requirements very well, and were very effective and efficient in delivering the project. I will hire them for my next project as well and also recommend them to others.
Adequate Infosoft lead development team is efficient and provides the best IT solutions. If you're looking for quick and affordable software development, Adequate Infosoft is your go-to guru!
Adequate Infosoft has stood out to be the best company for providing IT services at affordable prices. Their rapid development approach works in line with our iterative process.
David Kattah
We have worked with Adequate Infosoft for 4 years and it has been a positive experience for me and my company.
Frank Eson
Adequate Infosoft has set a benchmark with its robust product development services. Their development team is highly professional that understands the value of time.
Exceptional service! The AI team guided me through the entire procedure and made it an enjoyable experience.
Kim Jespersen
As a small business, we were most attracted to Adequate Infosoft's competitive pricing and the ability to quickly scale up or down the number of developers supporting the application.
Mr. Aaron
It was a pleasure to collaborate with Adequate Infosoft. Their development team is comprised of true experts.
Adequate Infosoft helped us get the most from Ceraphi, with smooth setup, responsive support, and practical, effective solutions.
Adequate Infosoft helped us develop our smart lock solution, including both the mobile app and web app
The Adequate Infosoft team helped us deliver a custom IoT solution for our European customers very efficiently
Smart Controls
Adequate Infosoft did a great job, helping us implement energy-efficient solutions smoothly.
Australia Health Pty Ltd
The team understood our needs and delivered quality health tech solutions on time.
Adequate Infosoft felt like a true partner, very supportive team, clear communication, on-time delivery, and quality work we genuinely trust.
With a physical presence in over 15 countries and a global footprint spanning 25+ countries, we are ready to serve you anywhere. Location, language, or culture is never a barrier, because our global team can work with you in your language. Our strong international team ensures seamless collaboration across borders We have a strong tech team, highly recognized in their domains, with extensive technical expertise.
Architect & Solution-Level Expert | Recognized Thought Leader with 8k+ LinkedIn Followers
Certified Developer | Driving AI, ML & Data Science Solutions
17+ Years in AI & IoT | 7,000+ Followers | Recognized Technology Leader
20+ Years in Tech | AI & Cloud Architect | HealthTech Innovator | 3,000+ Followers
IoT4All | IoT & Hardware Expert | Established Reputation in Europe
Technology Director at AOTC Limited, certified in CISSP, TOGAF, and SAFe. Leading technical operations across UK, Australia & New Zealand. Former Principal Integration Architect at Vodafone. Available on WhatsApp: +44 7563 407814, +61 458 765 85.
Helping SMEs Overcome Digitalization Challenges | Startup Tech Expert
AI, Life Sciences, HealthTech & Robotics Expert | 8,000+ Followers
25+ Years in Tech | Cloud Consultant | Lead Developer
SFMC Consultant & Developer
Cloud & AI Consultant
Tech Consultant • Sr. Application Developer • IoT & Hardware Expert
AI, IoT & Cloud Expert | Software Consultant
SAP Developer • Technical Consultant | ERP Solutions Specialist
Database & Network Expert • Mobile & Web Architect
Java Developer | Backend & Application Specialist
Engineer & Technology Consultant
Developer • Technical Consultant | Solutions & Strategy Expert
Technical Consultant | IT Strategy & Solutions Specialist
Technical Consultant & Developer
Cloud Solutions Expert with 17+ Years of Experience | HBIT Graduate | AI, IoT & Scalable Architecture Specialist
Lead Architect, Java Developer specializing in RESTful Services & Mobile Applications
Technical Consulting & Speaking | ANZ Region
Product Leadership & AI Architecture
Product Engineer (Python, C#, JavaScript, SQL) | Software Engineer & Speaker
Specializing in servers, virtualization, and network infrastructure
IoT Leadership | Global Operations | Digital Transformation
PMP-Certified Expert in IoT, AMI & Smart Metering
Send your message in the form below and we will get back to you as early as possible.
Your request has been sent successfully!