Development of IoT-Based Hybrid Autonomous Networked Robots
Abstract
:1. Introduction
2. Related Works in ANR
3. Research Challenges, Problem Statement, and Research Contributions
3.1. Open Areas in ANR Research
- Task decomposition and management.
- Effective deployment and coverage by the robot team.
- Integration of advanced SLAM techniques to enhance robot mapping, localization, and path planning in static and dynamic environments.
- For WSNs, the following open areas have been identified:
- Effective real-time sensor data processing and decision-making techniques.
- Data loss due to network overload and interference.
- Effective architectures for MRS/WSN integration and cooperation.
- Scalable task distribution and dynamic management to handle large operational environments.
- Incorporation of IoT-based technologies for further data processing and analytics.
- Development interfaces supporting the system simulation, hardware-in-loop (HIL) simulation, and implementation.
- Seamless integration of edge computing frameworks to reduce latency in data processing and analytics.
- Enhanced interoperability between IoT nodes and cloud platforms to enable cross-platform deployment.
3.2. Problem Statement, Expected Contributions, and System Design Operational Flow of the Selected Application
- Distributed WSNs. Each consists of static IoT-based sensor nodes (SSNs) and an onboard SSN (O-SSN) attached to each mobile robot. These WSNs can detect events and collect, analyze, and communicate data.
- The MRS comprises multiple robots. Each robot is integrated with one O-SSN, and each with its O_SSN is classified as an MRSN, similar to each G-MRSN. Both MRSNs and G_MRSNs are capable of conducting navigation and coordination tasks. All O_SSNs communicate their data to an IoT base station, forming another WSN.
- The WSNs are a two-tier network consisting of a ZigBee (2.4 GHz) protocol network supporting communication between each SSN in the WSN of a zone to the O-SSN of that zone and a wireless serial (sub-1 GHz) protocol network supporting the communication of all O-SSNs on mobile robots to the base station (BS) through its IoT base station gateway (IoT-BSG).
- An IoT base station (BS) comprising an IoT base station gateway (IoT-BSG) for sensor node data aggregation, integration of low-power wide-area network (LPWAN) protocols for extended coverage, and graphic user interfaces (GUIs) for sensor node data to visualize robot navigation and integrate local data storage and analytics. In addition, the base station can extend storage and analytics capabilities through the IoT/cloud, supported by the Wi-Fi communication protocol, to help integrate different cloud platform services.
- The development of an IoT-based hybrid ANR system architecture. This architecture consists of the following:
- Flexible modular designs for seamless scalability and interoperability.
- The physical development and implementation of new ANR systems with their associated features and requirements.
- The software development environment (SDE) facilitates simulation-based new ANR system development, simulation, and testing. This environment also supports the integration and testing of HIL. In addition, it facilitates GUIs for monitoring the activities of any physically implemented ANR systems.
- Concurrent integration between the developed and physically implemented ANR systems with the same system developed using the SDE part of the architecture to facilitate concurrent monitoring, testing, validation, and effective deployment.
- Integrating the developed ANR system architecture with cloud technologies through IoT/cloud to extend data storage and analytics.
- b.
- The developed IoT-based hybrid ANR system architecture was used to demonstrate the development of the physical and simulation levels for surveillance and intruder detection applications in a large operational environment, integrating MRS, WSNs, IoT, and cloud technologies.
- The operational environment is divided into zones. Each zone contains multiple SSNs that form an WSN within the zone space. These SSNs are distributed to ensure proper coverage. Additionally, zone boundaries are dynamically configurable based on operational needs, enabling flexibility in resource allocation. Each zone is assigned one MRSN for navigation and event response.
- One or more G-MRSNs are assigned to navigate areas within the operational environment that are not covered by any of the zones’ spaces. G-MRSNs leverage adaptive algorithms for path planning to ensure efficient navigation in unstructured environments.
- The sensor nodes in each zone space contain non-imaging fire and intruder event detection sensors. The zone SSNs detect events and communicate the data to the O-SSN of the zone-assigned MRSN. The O-SSN relays the detected events to the BS via the IoT-BSG. For enhanced reliability, redundant communication protocols are implemented to prevent data loss during transmission. Additionally, the O-SSN of each G-MRSN detects and communicates its data to the BS via the IoT-BSG.
- The mobile robots assigned to the zones can coordinate, plan, and navigate paths to the known SSN locations when emergency alerts are issued by any of the SSNs of the relevant zone. To improve response times, mobile robots utilize real-time decision-making models for task prioritization during emergencies. When there is no such emergency, the robot regularly navigates a defined assigned path within/around its zones and spaces.
- The BS features the development of the core interfaces for the ANR system simulation, HIL simulation, and physical ANR development/implementation. This includes the integration of BS GUIs and IoT/cloud platforms. The BS also incorporates modular interface designs for seamless expansion to support future upgrades and additional sensors.
4. IoT-Based Hybrid ANR System Architecture Development
- Adaptive Multi-Tier Wireless Sensor Network (WSN) Integration—Unlike traditional single-tier WSN architectures, this system incorporates a two-tier WSN structure, where static sensor nodes (SSNs) handle local event detection, and mobile sensor nodes (O-SSNs) extend coverage dynamically. This approach reduces latency and communication overhead, ensuring more efficient real-time response.
- Decentralized Multi-Robot Coordination Framework—Instead of a centralized task allocation model, our system employs a hybrid negotiation-based approach, combining the Contract Net Protocol (CNP) with event-driven task prioritization. This enhances scalability in multi-zone deployments, ensuring efficient coordination without overwhelming a single control node.
- Hybrid Simulation and Hardware-in-the-Loop (HIL) Validation—Traditional IoT-based robotic systems are often validated either in simulation or real-world experiments. This system uniquely integrates a Hybrid Development Framework, where SDE-based simulation is used for pre-deployment optimization, and HIL testing ensures practical feasibility in real-world conditions.
- Cloud-Integrated Analytics for Real-Time Data Processing—Conventional IoT-based systems often rely on onboard or local edge computing. Our system enhances real-time monitoring by incorporating a cloud-based analytics layer, where event data are visualized and processed remotely, ensuring improved scalability and remote access.
4.1. Design Considerations Based on Identified Challenges
4.2. Sensor Node Architecture
4.2.1. Sensor Node Structure
4.2.2. Sensor Node Event Classification System
- If temperature and humidity are critical, THEN an event alert is critical.
- If CO and smoke concentrations are critical, THEN an event alert is critical.
- 3.
- If the temperature OR humidity is critical, THEN the event alert is high.
- 4.
- If the temperature and humidity are high, THEN the event alert is high.
- 5.
- If CO or smoke concentration is critical, THEN the event alert is high.
- 6.
- If CO and smoke concentrations are high, THEN the event alert is high.
- 7.
- The event alert is standard if temperature, humidity, CO, and smoke concentrations are normal.
4.2.3. Task Allocation and Path Planning Methods
4.3. Mobile Robots Architecture
4.3.1. Mobile Robot Structure
4.3.2. Mobile Robots’ Coordination Algorithm
4.3.3. Mobile Robot Navigation Algorithm
Algorithm 1: A* path planning |
1: Input: Occupancy Grid Map with n nodes 2: f(n), g(n) and h(n); O(n)–open list; C(n)–closed list 3: Output: Least costly path to goal location 4: While O(n) = 5: select best n from O(n) | f(n_best) ≤ f(n), n O(n) 6: C(n) ← n_best 7: if n_best = goal(n), exit 8: expand n_best: x Star(n_best), that are not in C(n) 9: if x O(n) then 10: add x → O(n) 11: else if g(n_best) + h(n_best) < g(x) then 12: n_best ← x 13: end if 14: return to the least costly path |
4.4. IoT Base Station (BS) Operational Architecture
- The Sensor Node SM Development using the PCD-SE
4.4.1. The IoT Base Station Gateway (IoT-BSG)
4.4.2. The BS GUIs
- The sensor node data (SND) GUI, which aggregates and visualizes data and detected events from the sensor nodes, and then uploads these data to one of the cloud platforms
- The MRS GUI visualizes and tracks the robots’ navigation paths and locations.
4.4.3. The IoT/Cloud Platforms
- The Microsoft® (MS) cloud platform consists of SQL data to store the sensor node data and a web application to visualize the stored data. The MS cloud platform receives sensor node data from the SND GUI.
- The ThingSpeak® cloud online platform features visualization channels that display up to eight data fields. A data channel was created for each sensor node. The cloud platform also facilitates data analytics through its integration with Matlab® toolboxes (2022a).
5. SDE-Based System Simulations
5.1. The SDE
- The sensor node SM development using the Proteus Circuit Design SE (PCD-SE) and Arduino IDE.
- The mobile robots SM and navigation environment (NE) development using the LabVIEW® Robotics Environment Simulator (LRES) and MRS GUI.
- The BS sensor data aggregation and visualization will be performed by integrating IoT-BSG, SND GUIs, and cloud platforms.
- The HIL module-based testing.
5.1.1. Mobile Robot SM Development Using the LRES/MRS GUI
5.1.2. The Network Emulator
5.1.3. The HIL Support and Integration
5.2. Simulation Result
5.2.1. PCD-SE Simulation Results
5.2.2. LRES/MRS GUI Simulation Results
5.2.3. BS SND GUI Visualizations
5.3. Multi-Robot Task Allocation and Coverage Strategies
6. IoT-Based Hybrid ANR System Implementation
6.1. Hardware Sensor Nodes and Mobile Robots
6.2. Test Environment Layout
6.3. Implementation Results
6.3.1. Sensor Node Detection Results
6.3.2. Mobile Robot Navigation Results
6.3.3. ThingSpeak Data Analytics
Dewpoint
Equilibrium Moisture Content (%EMC)
Preservation Index
6.4. Scalability Considerations and Future Enhancements
- Multi-Tier Wireless Sensor Networks (WSNs): A two-tier WSN—minimizes centralized communication dependencies, reducing the risk of bottlenecks as the number of sensor nodes increases.
- Decentralized Task Allocation: Contract Net Protocol (CNP)—enables dynamic task assignment across multiple robots, distributing workloads effectively in multi-zone environments.
- Cloud-Based Processing: The IoT Base Station (BS) with cloud analytics—offloads computational demands from local devices, enabling real-time monitoring and scalable data processing.
- Network performance in large-scale deployments, including communication delays and congestion effects.
- Task allocation efficiency as zones increase, assessing the impact on robot coordination.
- Latency optimization strategies, such as adaptive routing and edge-based task delegation, to maintain real-time responsiveness in large networks.
6.5. Wireless Communication Performance
6.6. System Stability Considerations
6.7. Cybersecurity Considerations
- Authentication and Access Control: The system will incorporate mutual authentication mechanisms using hashed authentication keys (HMACs) and Public Key Infrastructure (PKI) to prevent unauthorized access to sensor and robot networks.
- Data Integrity Verification: To ensure the authenticity of transmitted data, Message Authentication Codes (MACs) and cryptographic hashing (SHA-256) will be used to detect potential tampering.
- Network Security and Intrusion Detection: Future implementations will integrate firewalls, anomaly detection, and intrusion detection systems (IDSs) to monitor and mitigate potential cyber threats.
- Edge-Based Security Mechanisms: Lightweight security models at the edge layer will enhance protection against denial-of-service (DoS) attacks and spoofing attempts targeting sensor nodes.
7. Conclusions
7.1. Concluded Achievements
- Reliable IoT-based modules were developed as nodes for wireless sensor networks (WSNs), consisting of static sensor nodes (SSNs) for each zone and Onboard Static Sensor Nodes (O-SSNs) for mobile robots. These nodes successfully detected and classified events using a fuzzy logic decision-making system and communicated the results to the base station (BS) through a two-tier network.
- Multi-robot system (MRS) capabilities were validated, with robots categorized into Mobile Robot Sensor Nodes (MRSNs) and Global MRSNs (G-MRSNs). Both groups exhibited effective coordination, planning, and navigation in dynamic environments.
- IoT base station (BS) functionalities included GUIs for real-time visualization of sensor data and robot navigation and cloud integration for advanced data storage and analytics.
- The software development environment (SDE) proved flexible in enabling system simulations, hardware-in-the-loop (HIL) testing, and real-world implementations, providing a robust algorithm development and validation platform.
- Cloud analytics supported real-time decision-making by processing zone data, offering actionable insights and long-term analytics.
- Dynamic path planning and localization algorithms were successfully implemented, demonstrating robustness in dynamic environments.
7.2. Future Enhancements
- Enhanced sensing capabilities by equipping robots with additional sensors, such as cameras, to capture richer and more detailed event data, improving detection accuracy and reliability within relevant zones.
- Autonomous action triggers based on cloud analytics outputs, enabling real-time responses at the zone level to enhance system adaptability and responsiveness.
- Targeted HIL testing by expanding HIL simulation capabilities to validate individual hardware components comprehensively, ensuring system robustness before deployment.
- Advanced learning models by integrating machine learning techniques, such as reinforcement learning, to improve robot coordination, adaptive decision-making, and path optimization in complex, unstructured environments.
- Swarm coordination algorithms to enable decentralized, large-scale collaboration among robots, making the system suitable for tasks like disaster response, environmental monitoring, and resource mapping.
Author Contributions
Funding
Institutional Review Board Statement
Data Availability Statement
Conflicts of Interest
Abbreviations
Acronym | Definition |
ANR | Autonomous Networked Robot |
MRS | Multi-Robot System |
WSN | Wireless Sensor Network |
IoT | Internet of Things |
HIL | Hardware-in-the-Loop |
SDE | Simulation Development Environment |
SSN | Static Sensor Node |
O-SSN | Onboard Static Sensor Node |
MRSN | Mobile Robot Sensor Node |
G-MRSN | Global Mobile Robot Sensor Node |
BS | Base Station |
IoT-BSG | IoT Base Station Gateway |
CNP | Contract Net Protocol |
GUI | Graphical User Interface |
LRES | LabVIEW Robotics Environment Simulator |
PCD-SE | Proteus Circuit Design Simulation Environment |
NE | Navigation Environment |
LPWAN | Low-Power Wide-Area Network |
RFID | Radio-Frequency Identification |
AI | Artificial Intelligence |
AMCL | Adaptive Monte Carlo Localization |
SLAM | Simultaneous Localization and Mapping |
PSO | Particle Swarm Optimization |
HMI | Human–Machine Interface |
UAV | Unmanned Aerial Vehicle |
UGV | Unmanned Ground Vehicle |
SQL | Structured Query Language |
ROS | Robot Operating System |
NN | Neural Network |
EMC | Equilibrium Moisture Content |
PI | Preservation Index |
DRL | Deep Reinforcement Learning |
LLM | Large Language Model |
SGSR-Net | Structure Semantics Guided LiDAR Super-Resolution Network |
References
- Parker, L.E.; Rus, D.; Sukhatme, G.S. Multiple Mobile Robot Systems. In Springer Handbook of Robotics; Siciliano, B., Khatib, O., Eds.; Springer: Cham, Switzerland, 2016; pp. 1109–1134. [Google Scholar]
- Weiss, M.D.; Peak, J.; Schwengler, T. A Statistical Radio Range Model for a Robot MANET in a Subterranean Mine. IEEE Trans. Veh. Technol. 2008, 57, 2658–2666. [Google Scholar] [CrossRef]
- Hsieh, M.A.; Cowley, A.; Keller, J.F.; Chaimowicz, L.; Grocholsky, B.; Kumar, V.; Taylor, C.J.; Endo, Y.; Arkin, R.C.; Jung, B.; et al. Adaptive Teams of Autonomous Aerial and Ground Robots for Situational Awareness. J. Field Robot. 2007, 24, 991–1014. [Google Scholar] [CrossRef]
- Chen, M.; Ma, Y.; Ullah, S.; Cai, W.; Song, E. ROCHAS: Robotics and Cloud-assisted Healthcare System for Empty Nester. In Proceedings of the 8th International Conference on Body Area Networks ICST, Boston, MA, USA, 30 September–2 October 2013; pp. 217–220. [Google Scholar]
- Qadori, H.Q.; Zukarnain, Z.A.; Hanapi, Z.M.; Subramaniam, S. FuMAM: Fuzzy-Based Mobile Agent Migration Approach for Data Gathering in Wireless Sensor Networks. IEEE Access 2018, 6, 15643–15652. [Google Scholar] [CrossRef]
- Waibel, M.; Beetz, M.; Civera, J.; d’Andrea, R.; Elfring, J.; Galvez-Lopez, D.; Häussermann, K.; Janssen, R.; Montiel, J.M.; Perzylo, A.; et al. RoboEarth. IEEE Robot. Autom. Mag. 2011, 18, 69–82. [Google Scholar] [CrossRef]
- Kamei, K.; Sato, M.; Nishio, S.; Hagita, N. Cloud networked robotics. IEEE Netw. 2012, 26, 28–34. [Google Scholar]
- Banjanović-Mehmedović, L.; Husaković, A.; Ribić, A.G.; Prljaca, N.; Karabegović, I. Advancements in robotic intelligence: The role of computer vision, DRL, transformers, and LLMs. In Artificial Intelligence in Industry 4.0:The Future that Comes True; Academy of Sciences and Arts of Bosnia and Herzegovina: Sarajevo, Bosnia and Herzegovina, 2024. [Google Scholar] [CrossRef]
- Hu, K.; Zhan, L.; Zou, L.; Han, Y.; Bi, T.; Muntean, G.-M. CoSAR: Multi-Robot Collaborative Semantic Mapping over Wireless Networks. In Proceedings of the 2023 IEEE International Symposium on Broadband Multimedia Systems and Broadcasting (BMSB), Beijing, China, 14–16 June 2023; pp. 1–6. [Google Scholar] [CrossRef]
- Lee, T.; Kwon, J.; Wensing, P.M.; Park, F.C. Robot Model Identification and Learning: A Modern Perspective. Annu. Rev. Control. Robot. Auton. Syst. 2024, 7, 311–334. [Google Scholar] [CrossRef]
- Chovet, L.; Garcia, G.; Bera, A.; Richard, A.; Yoshida, K.; Olivares-Mendez, M. Performance Comparison of ROS2 Middlewares for Multi-robot Mesh Networks in Planetary Exploration. arXiv 2024. [Google Scholar] [CrossRef]
- Chukwuemeka, C.I.; Habib, M. Development of Autonomous Networked Robots (ANR) for Surveillance: Conceptual Design and Requirements. In Proceedings of the IECON 2018—44th Annual Conference of the IEEE Industrial Electronics Society, Washington, DC, USA, 21–23 October 2018; pp. 3757–3763. [Google Scholar]
- Chukwuemeka, C.I.; Habib, M.K. Design of a Two-Tier WSN-based IoT Surveillance System with Cloud Integration. In Proceedings of the 2019 20th International Conference on Research and Education in Mechatronics (REM), Wels, Austria, 23–24 May 2019. [Google Scholar]
- Chukwuemeka, C.I.; Habib, M.K. Integrated Development of Collaborative Mobile Robots and WSNs Supported by Cloud Service. In Proceedings of the 2020 6th International Conference on Mechatronics and Robotics Engineering (ICMRE), Barcelona, Spain, 12–15 February 2020; pp. 26–31. [Google Scholar]
- Nakib, S.; Jawhar, I.; Sindian, S.; Wu, J. Networking of multi-robot systems: Issues and requirements. Int. J. Sens. Netw. 2023, 43, 88–98. [Google Scholar] [CrossRef]
- Wichmann, A.; Okkalioglu, B.D.; Korkmaz, T. The Integration of Mobile (Tele) Robotics and Wireless Sensor Networks: A Survey. Comput. Commun. 2014, 51, 21–35. [Google Scholar]
- Huang, H.; Gong, T.; Zhang, R.; Yang, L.-L.; Zhang, J.; Xiao, F. Intrusion Detection Based on k-Coverage in Mobile Sensor Networks with Empowered Intruders. IEEE Trans. Veh. Technol. 2018, 67, 12109–12123. [Google Scholar] [CrossRef]
- Nguyen, M.T.; La, H.M.; Teague, K.A. Collaborative and Compressed Mobile Sensing for Data Collection in Distributed Robotic Networks. IEEE Trans. Control Netw. Syst. 2018, 5, 1729–1740. [Google Scholar] [CrossRef]
- Jawhar, I.; Mohamed, N.; Al-Jaroodi, J.; Zhang, S. An Architecture for Using Autonomous Underwater Vehicles in Wireless Sensor Networks for Underwater Pipeline Monitoring. IEEE Trans. Ind. Inf. 2019, 15, 1329–1340. [Google Scholar] [CrossRef]
- Chen, C.; Jin, A.; Wang, Z.; Zheng, Y.; Yang, B.; Zhou, J.; Xu, Y.; Tu, Z. SGSR-Net: Structure Semantics Guided LiDAR Super-Resolution Network for Indoor LiDAR SLAM. IEEE Trans. Multimed. 2024, 26, 1842–1854. [Google Scholar] [CrossRef]
- Liang, W.; Zheng, M.; Zhang, J.; Shi, H.; Yu, H.; Yang, Y.; Liu, S.; Yang, W.; Zhao, X. WIA-FA and Its Applications to Digital Factory: A Wireless Network Solution for Factory Automation. Proc. IEEE 2019, 107, 1053–1073. [Google Scholar] [CrossRef]
- Luong, T.; Barros, G.; Boshoff, M.; Moldovan, C.; Schuster, D.; Gruhn, V.; Kuhlenkötter, B. Investigating the 5G Handover in Autonomous Mobile Robotic Applications. In Proceedings of the 2023 3rd International Conference on Robotics 2023, Automation and Artificial Intelligence (RAAI), Singapore, 14–16 December 2023; pp. 200–205. [Google Scholar] [CrossRef]
- Baeg, S.H.; Park, J.H.; Koh, J.; Park, K.W.; Baeg, M.H. RoboMaidHome: A Sensor Network-based Smart Home Environment for Service Robots. In Proceedings of the RO-MAN 2007-The 16th IEEE International Symposium on Robot and HIC, Jeju, Republic of Korea, 26–29 August 2007; pp. 182–187. [Google Scholar]
- Muratore, L.; Tsagarakis, N. XBot2D: Towards a robotics hybrid cloud architecture for field robotics. Front. Robot. AI 2023, 10, 1168694. [Google Scholar] [CrossRef] [PubMed]
- Hung, P.D.; Vinh, T.Q.; Ngo, T.D. Distributed coverage control for networked multi-robot systems in any environments. In Proceedings of the 2016 IEEE/ASME International Conference on Advanced Intelligent Mechatronics (AIM), Banff, AB, Canada, 12–15 July 2016; pp. 1067–1072. [Google Scholar]
- Wu, W.-Y.; Liu, Y.-C. Autonomous Guided Robotic Systems in Regulating Indoor Environmental Quality. In Proceedings of the 2018 IEEE/ASME International Conference on Advanced Intelligent Mechatronics (AIM), Auckland, New Zealand, 9–12 July 2018; pp. 188–193. [Google Scholar]
- Lin, M.-T.; Liu, Y.-C. Effective Control for Wireless Sensor and Mobile Actuator Network in Regulation of Environmental Density Function. In Proceedings of the 2018 IEEE/ASME International Conference on Advanced Intelligent Mechatronics (AIM), Auckland, New Zealand, 9–12 July 2018; pp. 1190–1195. [Google Scholar]
- Wang, J.-W.; Guo, Y.; Fahad, M.; Bingham, B. Dynamic Plume Tracking by Cooperative Robots. IEEE/ASME Trans. Mechatron. 2019, 24, 609–620. [Google Scholar] [CrossRef]
- Hsu, K.C.; Hu, H.; Fisac, J. The Safety Filter: A Unified View of Safety-Critical Control in Autonomous Systems. Annu. Rev. Control. Robot. Auton. Syst. 2023, 7, 47–72. [Google Scholar] [CrossRef]
- Ciucu-Durnoi, A.-N.; Delcea, C.; Stănescu, A.; Teodorescu, C.; Vargas, V.M. Beyond Industry 4.0: Tracing the Path to Industry 5.0. Sustainability 2024, 16, 5251. [Google Scholar] [CrossRef]
- Lan, G.; Hao, Q. End-to-end planning of autonomous driving in industry and academia. arxiv 2023. [Google Scholar] [CrossRef]
- Kashino, Z.; Nejat, G.; Benhabib, B. A Hybrid Strategy for Target Search Using Static and Mobile Sensors. IEEE Trans. Cybern. 2020, 50, 856–868. [Google Scholar] [CrossRef]
- Banjanovic-Mehmedovic, L.; Zukic, M.; Mehmedovic, F. Alarm detection and monitoring in an industrial environment using hybrid wireless sensor network. SN Appl. Sci. 2019, 1, 263. [Google Scholar] [CrossRef]
- Ahmed, S.A.; Popov, V.L.; Topalov, A.V.; Shakev, N.G. Environmental monitoring using a robotized wireless sensor network. AI Soc. 2018, 33, 207–214. [Google Scholar] [CrossRef]
- Subramaniam, A.; Prajapati, D.H.; Alremeithi, K.; Sealy, W. Enhancing Autonomous Robotics Through Cloud Computing. In Proceedings of the 2024 IEEE International Conference on Industry 4.0, Artificial Intelligence, and Communications Technology (IAICT), Bali, Indonesia, 4–6 July 2024; pp. 259–265. [Google Scholar] [CrossRef]
- Valecce, G.; Micoli, G.; Boccadoro, P.; Petitti, A.; Colella, R.; Milella, A.; Grieco, L.A. Robotic-aided IoT: Automated deployment of a 6TiSCH network using a UGV. IET Wirel. Sens. Syst. 2019, 9, 438–446. [Google Scholar] [CrossRef]
- Datta, S.; Baul, A.; Sarker, G.C.; Sadhu, P.K.; Hodges, D.R. A Comprehensive Review of the Application of Machine Learning in Fabrication and Implementation of Photovoltaic Systems. IEEE Access 2023, 11, 77750–77778. [Google Scholar] [CrossRef]
- Anis, K.; Sahar, T.; Imen, C. Indoor Surveillance Application using Wireless Robots and Sensor Networks: Coordination and Path Planning. In Mobile Ad Hoc Robots and Wireless Robotic Systems: Design and Implementation; Santos, R.A., Lengerke, O., Edwards-Block, A., Eds.; IGI Global: Hershey, PA, USA, 2013. [Google Scholar]
- Pascual, O.; Brunete, A.; Abderrahim, M. Integration of low-cost supervisory mobile robots in domestic Wireless Sensor Networks. In Proceedings of the 2014 International Conference on Robotics and Emerging Allied Technologies in Engineering (iCREATE), Islamabad, Pakistan, 22–24 April 2014; pp. 259–264. [Google Scholar]
- Scilimati, V.; Petitti, A.; Boccadoro, P.; Colella, R.; Di Paola, D.; Milella, A.; Grieco, L.A. Industrial Internet of things at work: A case study analysis in robotic-aided environmental monitoring. IET Wirel. Sens. Syst. 2017, 7, 155–162. [Google Scholar] [CrossRef]
- Zhang, Q.; Bai, J.; Chang, X. Pioneering Testing and Assessment Framework For AI-Powered SAR ATR Systems. In Proceedings of the 2024 IEEE 7th International Conference on Big Data and Artificial Intelligence (BDAI), Beijing, China, 5–7 July 2024; pp. 230–234. [Google Scholar] [CrossRef]
- Bertiz, C.A.S.; Lozano, J.J.F.; Gomez-Ruiz, J.A.; García-Cerezo, A. Integration of a Mobile Node into a Hybrid Wireless Sensor Network for Urban Environments. Sensors 2019, 19, 215. [Google Scholar] [CrossRef] [PubMed]
- Karray, F.; Jmal, M.W.; Abid, M.; BenSaleh, M.S.; Obeid, A.M. A review on wireless sensor node architectures. In Proceedings of the 2014 9th International Symposium on Reconfigurable and Communication-Centric Systems-On-Chip (ReCoSoC), Montpellier, France, 26–28 May 2014; pp. 1–8. [Google Scholar]
- Xu, T. Recent advances in Rapidly-exploring Random Tree: A review. Heliyon 2024, 10, e32451. [Google Scholar] [CrossRef]
- Smith, R.G. The Contract Net Protocol: High-Level Communication and Control in a Distributed Problem Solver. IEEE Trans. Comput. 1980, 29, 1104–1113. [Google Scholar] [CrossRef]
- Hart, P.E.; Nilsson, N.J.; Raphael, B. A Formal Basis for the Heuristic Determination of Minimum Cost Paths. IEEE Trans. Syst. Sci. Cybern. 1968, 4, 100–107. [Google Scholar] [CrossRef]
- Karaman, S.; Frazzoli, E. Sampling-based algorithms for optimal motion planning. Int. J. Robot. Res. 2011, 30, 846–894. [Google Scholar] [CrossRef]
- Browne, A.F.; Conrad, J.M. A Versatile Approach for Teaching Autonomous Robot Control to Multi-Disciplinary Undergraduate and Graduate Students. IEEE Access 2018, 6, 25060–25065. [Google Scholar] [CrossRef]
- Kelemenová, T.; Kelemen, M.; Miková, L.; Maxim, V.; Prada, E.; Lipták, T.; Menda, F. Model-Based Design and HIL Simulations. Am. J. Mech. Eng. 2013, 1, 276–281. [Google Scholar]
- Sarhadi, P.; Yousefpour, S. State of the art: Hardware in the loop modeling and simulation with its applications in design, development, and implementation of system and control software. Int. J. Dyn. Control 2015, 3, 470–479. [Google Scholar] [CrossRef]
- Nishimura, D.W. Understanding Preservation Metrics; Image Permanence Institute (IPI); Image Permanence Institute Preservation Metrics; Image Permanence Institute-Rochester Institute of Technology (IPI-RIT): Rochester, NY, USA, 2011. [Google Scholar]
- Sonntag, D.L.P. Important new values of the physical constants of 1986, vapor pressure formulations based on the ITS-90, and psychrometer formulae. Z. Meteorol. 1990, 70, 340–344. [Google Scholar]
- Simpson, W.T. Equilibrium Moisture Content of Wood in Outdoor Locations in the United States and Worldwide; U.S. Department of Agriculture, Forest Service, Forest Products Laboratory: Madison, WI, USA, 1998. [CrossRef]
- Padfield, T. The Preservation Index and the Time Weighted Preservation Index, Conservation Physics. 2004. Available online: http://www.conservationphysics.org/twpi/twpi_01.html (accessed on 3 April 2025).
- Strlič, M.; Kolar, J. Ageing and Stabilisation of Paper; National and University Library: Ljubljana, Slovenia, 2005. [Google Scholar]
- Zhang, W.; Wang, S.; Guo, H. Influence of Relative Humidity on the Mechanical Properties of Palm Leaf Manuscripts: Short-Term Effects and Long-Term Aging. Molecules 2024, 29, 5644. [Google Scholar] [CrossRef]
- Popescu, C.-A.; Georgescu, V.-C.; Popescu, E.-M. Experimental Research Regarding the Use of ZigBee Technology in Industrial Logistics Applications. In Proceedings of the 2021 12th International Symposium on Advanced Topics in Electrical Engineering (ATEE), Bucharest, Romania, 25–27 March 2021; pp. 1–7. [Google Scholar] [CrossRef]
- Palattella, M.R.; Dohler, M.; Grieco, A.; Rizzo, G.; Torsner, J.; Engle, T.; Ladid, L. Internet of Things in the 5G Era: Enablers, Architecture, and Business Models. IEEE J. Sel. Areas Commun. 2016, 34, 510–527. [Google Scholar] [CrossRef]
- Ulema, M. Wireless sensor networks: Architectures, protocols, and management. In Proceedings of the 2004 IEEE/IFIP Network Operations and Management Symposium (IEEE Cat. No.04CH37507), Seoul, Republic of Korea, 19–23 April 2004; Volume 1, p. 931. [Google Scholar] [CrossRef]
Attribute/Metric | MSNs [17] | CCMS [18] | ALSN [19] | AI-Driven Robotics [8] | IoT-Aided ANR [23] | Cloud Robotics [24] | 5G for AMRs [22] |
---|---|---|---|---|---|---|---|
Key Application | Intrusion detection | Data collection and mapping | Underwater monitoring | Perception and decision-making | Urban surveillance | Distributed field robotics | Industrial automation |
Network Architecture | Mobile sensor network | Collaborative sensing | Linear sensor network | Modular and data-driven | IoT-integrated | Hybrid cloud | 5G-based communication |
Energy Efficiency | Moderate | High | High | Moderate | High | Improved through offloading | High |
Data Communication | Simulation only | Experimental validation | Simulated and tested | AI-enhanced | Real-time detection | Real-time | Seamless |
Scalability | Moderate | High | Moderate | High | High | High | High |
Validation Type | Simulation | Simulation and Experiment | Simulation | AI-enhanced simulations | Experimental | Simulation | Experimental |
Attribute/Metric | Probabilistic Models [29] | LiDAR SLAM [20] | Digital Twin for Swarms [30] | 5G Networks [31] |
---|---|---|---|---|
Key Application | Safety-critical control | Indoor navigation | Swarm coordination and real-time monitoring | Industrial automation |
Technology Type | Unified Safety Filter Framework | Structure-Semantics-Guided LiDAR | Digital twin models | 5G-based communication |
Latency Impact | Moderate | Low-latency | Real-time | Seamless |
Fault Tolerance | High | High | High | Moderate |
Collaboration Framework | Decentralized | Centralized | Decentralized | Centralized |
Energy Efficiency | Moderate | High | High | High |
Validation Type | Simulation | Simulation and Experiment | Simulation and Deployment | Experimental |
Scalability | Moderate | High | High | High |
Environmental Adaptability | Urban and Suburban | Indoor | Mixed Urban–Field | Industrial Environments |
Real-World Applications | Autonomous Vehicles | Indoor mapping | Robotics swarms for disaster response | IoT-enabled factories |
Fuzzy Rules Output | Flame Sensor | Motion Sensor | Event Classification |
---|---|---|---|
Critical | High | High | Critical Alert |
Critical | High | Low | Critical Alert |
High | Low | High | High Alert |
Low | Low | Low | Normal Alert |
% EMC Predictions per Zone | ||||
---|---|---|---|---|
Zones | %EMC | Status/Color Code | Metal Corrosion Risk | Average Dewpoint |
Zone 1 | 7.8168 | OK | Limited risk of corrosion | 3.6162 |
Zone 2 | 8.3270 | OK | Limited risk of corrosion | 3.4151 |
PI Predictions per Zone | ||||
Zones | PI (years) | Status/Color Code | Organic Degradation Risk | Average Dewpoint |
Zone1 | 28.7899 | RISK | Accelerated rate of organic decay | 3.6162 |
Zone 2 | 26.6957 | RISK | Accelerated rate of organic decay | 3.4151 |
Disclaimer/Publisher’s Note: The statements, opinions and data contained in all publications are solely those of the individual author(s) and contributor(s) and not of MDPI and/or the editor(s). MDPI and/or the editor(s) disclaim responsibility for any injury to people or property resulting from any ideas, methods, instructions or products referred to in the content. |
© 2025 by the authors. Licensee MDPI, Basel, Switzerland. This article is an open access article distributed under the terms and conditions of the Creative Commons Attribution (CC BY) license (https://creativecommons.org/licenses/by/4.0/).
Share and Cite
Habib, M.K.; Chukwuemeka, C.I. Development of IoT-Based Hybrid Autonomous Networked Robots. Technologies 2025, 13, 168. https://doi.org/10.3390/technologies13050168
Habib MK, Chukwuemeka CI. Development of IoT-Based Hybrid Autonomous Networked Robots. Technologies. 2025; 13(5):168. https://doi.org/10.3390/technologies13050168
Chicago/Turabian StyleHabib, Maki K., and Chimsom I. Chukwuemeka. 2025. "Development of IoT-Based Hybrid Autonomous Networked Robots" Technologies 13, no. 5: 168. https://doi.org/10.3390/technologies13050168
APA StyleHabib, M. K., & Chukwuemeka, C. I. (2025). Development of IoT-Based Hybrid Autonomous Networked Robots. Technologies, 13(5), 168. https://doi.org/10.3390/technologies13050168