Remote IoT Device Reboot via Mobile App

NOVASOLUTIONS.TECHNOLOGY is engaged in the development, support and maintenance of iOS, Android, PWA mobile applications. We have extensive experience and expertise in publishing mobile applications in popular markets like Google Play, App Store, Amazon, AppGallery and others.
Development and support of all types of mobile applications:
Information and entertainment mobile applications
News apps, games, reference guides, online catalogs, weather apps, fitness and health apps, travel apps, educational apps, social networks and messengers, quizzes, blogs and podcasts, forums, aggregators
E-commerce mobile applications
Online stores, B2B apps, marketplaces, online exchanges, cashback services, exchanges, dropshipping platforms, loyalty programs, food and goods delivery, payment systems.
Business process management mobile applications
CRM systems, ERP systems, project management, sales team tools, financial management, production management, logistics and delivery management, HR management, data monitoring systems
Electronic services mobile applications
Classified ads platforms, online schools, online cinemas, electronic service platforms, cashback platforms, video hosting, thematic portals, online booking and scheduling platforms, online trading platforms

These are just some of the types of mobile applications we work with, and each of them may have its own specific features and functionality, tailored to the specific needs and goals of the client.

Showing 1 of 1 servicesAll 1735 services
Remote IoT Device Reboot via Mobile App
Simple
~2-3 hours
FAQ
Our competencies:
Development stages
Latest works
  • image_mobile-applications_feedme_467_0.webp
    Development of a mobile application for FEEDME
    756
  • image_mobile-applications_xoomer_471_0.webp
    Development of a mobile application for XOOMER
    624
  • image_mobile-applications_rhl_428_0.webp
    Development of a mobile application for RHL
    1052
  • image_mobile-applications_zippy_411_0.webp
    Development of a mobile application for ZIPPY
    947
  • image_mobile-applications_affhome_429_0.webp
    Development of a mobile application for Affhome
    862
  • image_mobile-applications_flavors_409_0.webp
    Development of a mobile application for the FLAVORS company
    445

Implementing Remote Device Reboot via Mobile App

Remote reboot of an IoT device is one of the first requested features when operating a distributed network of sensors or gateways. Device stopped responding, but power is on—classic scenario for industrial ESP32 gateways, Raspberry Pi, routers with OpenWRT.

Implementation: Command via MQTT or REST

If device is connected to MQTT broker—publish to control topic:

suspend fun rebootDevice(deviceId: String) {
    val topic = "devices/$deviceId/commands/reboot"
    val payload = MqttMessage(
        jsonOf("action" to "reboot", "timestamp" to System.currentTimeMillis(),
               "requestedBy" to currentUser.id).toByteArray()
    ).apply { qos = 1 }  // QoS 1 — guarantee delivery at least once

    mqttClient.publish(topic, payload)

    // Wait for device confirmation in response topic
    withTimeout(30_000) {
        deviceStateFlow.first { it.deviceId == deviceId && it.event == "rebooting" }
    }
}

QoS 1 instead of 0—device may have temporarily disconnected from broker; on reconnection, it retrieves command from retained queue.

Confirmation and Timeout

After sending reboot command, device should respond "received, rebooting", then appear online again. In app—status indicator: "sent → confirmed → offline → online". If device doesn't return within 60 seconds—notification about possible power or firmware issue.

Implementing remote device reboot with confirmation and recovery monitoring: 1–2 weeks. Cost individually quoted.