Siksha Sarovar

Siksha Sarovar (sikshasarovar.com) is a free educational web application that helps students in India learn programming and prepare for academic and competitive exams. The platform offers structured coding courses (C, C++, Python, Java, HTML, CSS, PHP, Power BI, AI, Machine Learning, Data Science), complete university curriculum notes for BCA/MCA students with previous year question papers, Class 10 and Class 12 CBSE/HBSE school notes, and dedicated preparation material for SSC, UPSC, Banking, Railway and other government exams. Browsing the site is completely free and requires no account. Users may optionally sign in with Google solely to save their learning progress, quiz scores and personal preferences across devices.

Privacy Policy | Terms of Service | Contact Siksha Sarovar | About Siksha Sarovar

v4.0.9 · PWA
Siksha Sarovar logo
Siksha Sarovar
Your Learning Universe

Siksha Sarovar is a free e-learning platform for coding courses, BCA university notes and competitive exam preparation. Optional Google sign-in saves your learning progress across devices.

Initializing knowledge base…
Compiling modules 0%

1.5 Design Principles: Layers and Standardization

Lesson 5 of 31 in the free Internet of Things (IoT) notes on Siksha Sarovar, written by Rohit Jangra.

1.5.1 The Standardization Crisis and Middleware

In an ideal IoT world, a "Smart Sensor" from Vendor A must talk to a "Gateway" from Vendor B and a "Cloud" from Vendor C. This is only possible if every designer follows the same stack.

1.5.2 Key Standardization Organizations and Their Roles

  • IEEE: Defines the Physical (PHY) and Data Link (MAC) layers. (e.g., 802.15.4 for low-power radios, 802.11ah for long-range Wi-Fi).
  • IETF: Defines the Network and Transport layers. (e.g., 6LoWPAN for IPv6 compression, RPL for routing in lossy networks, CoAP for web-style interaction over UDP).
  • oneM2M: A global alliance that focuses on the Service and Application layers, ensuring that data schemas are the same across industries.
  • W3C: Working on the "Web of Things" (WoT) to allow browsers to talk to hardware using JavaScript and standard Web APIs.

1.5.3 Communication Technologies Selection Matrix (Technical Deep-Dive)

TechFrequencyMax RangeThroughputPower DrawTopology
Zigbee2.4 GHz100m250kbpsLowMesh (Self-healing)
BLE2.4 GHz10m-50m1-2MbpsUltra-LowStar (Smartphone hub)
LoRaWAN868/915 MHz15km50kbpsUltra-LowStar-of-Stars
NB-IoTLicensed Cell20km200kbpsMediumStar (Cell tower hub)
Wi-Fi 62.4/5/6 GHz50m9.6GbpsHighStar (Router hub)

1.5.4 Data Enrichment and Consolidation Theory

Designing for IoT requires minimizing the "Cost per Bit":

  1. Enrichment: Adding semantic value. Raw bits "0x19" become "Temperature: 25.0, Unit: Celsius, Status: Normal, Floor: 2". This happens at the Fog/Edge level.
  2. Consolidation: Aggregation techniques like calculating the Mean, Variance, and Outliers at the gateway rather than sending 1000 raw points to the cloud. This saves storage and processing costs.