Jump into concepts and practice - no test required
or
Recommended
Test this pattern10 questions across easy, medium, and hard to know if this pattern is strong
CBOR for Constrained Devices
📖 Scenario: You are working with small IoT devices that have limited memory and processing power. These devices need to send sensor data efficiently over the network. Using a compact data format like CBOR (Concise Binary Object Representation) helps reduce the size of the data sent.In this project, you will create a simple sensor data dictionary, configure a threshold value, encode the data to CBOR format, and then display the encoded result.
🎯 Goal: Build a small program that creates sensor data, sets a threshold, encodes the data using CBOR, and prints the encoded bytes. This simulates how constrained devices prepare data for efficient transmission.
📋 What You'll Learn
Create a dictionary called sensor_data with exact keys and values
Add a variable called threshold with a specific numeric value
Use the cbor2 library to encode the dictionary
Print the encoded CBOR bytes as output
💡 Why This Matters
🌍 Real World
IoT devices often have limited memory and bandwidth. Using CBOR helps send data efficiently, saving power and network usage.
💼 Career
Understanding CBOR encoding is useful for roles in IoT development, embedded systems, and network programming where data efficiency is critical.
Progress0 / 4 steps
1
Create sensor data dictionary
Create a dictionary called sensor_data with these exact entries: 'temperature': 22.5, 'humidity': 60, 'device_id': 'sensor_01'
IOT Protocols
Hint
Use curly braces {} to create a dictionary with the exact keys and values.
2
Add threshold configuration
Add a variable called threshold and set it to the numeric value 25
IOT Protocols
Hint
Just create a variable named threshold and assign it the value 25.
3
Encode sensor data to CBOR
Import the cbor2 library and encode the sensor_data dictionary into a variable called encoded_data using cbor2.dumps(sensor_data)
IOT Protocols
Hint
Use import cbor2 at the top, then encode with cbor2.dumps().
4
Print the encoded CBOR data
Print the variable encoded_data to display the CBOR encoded bytes
IOT Protocols
Hint
Use print(encoded_data) to show the encoded bytes.
Practice
(1/5)
1. What is the main advantage of using CBOR on constrained devices?
easy
A. It uses a compact binary format to save space and power
B. It requires a lot of memory to encode data
C. It only works with large servers
D. It converts data into plain text for readability
Solution
Step 1: Understand CBOR format purpose
CBOR is designed to be a compact binary format, which means it uses less space than text formats.
Step 2: Relate to constrained devices needs
Small devices have limited memory and power, so saving space and power is crucial.
Final Answer:
It uses a compact binary format to save space and power -> Option A
Quick Check:
Compact binary = saves space and power [OK]
Hint: CBOR is compact binary, perfect for small devices [OK]
Common Mistakes:
Thinking CBOR uses more memory
Assuming CBOR is text-based
Believing CBOR only works on big servers
2. Which of the following is the correct way to represent an integer value 10 in CBOR hex notation?
easy
A. 0x0F
B. 0x1A
C. 0x18 0A
D. 0x0A
Solution
Step 1: Recall CBOR integer encoding
Small integers 0-23 are encoded directly in the initial byte with major type 0.
Step 2: Check hex for integer 10
Integer 10 fits in 0-23 range, so encoded as 0x0A (major type 0 + value 10).
Final Answer:
0x0A -> Option D
Quick Check:
Small int 10 = 0x0A [OK]
Hint: Small ints 0-23 encoded as single byte 0x00 to 0x17 [OK]
Common Mistakes:
Using 0x1A which is for 32-bit integers
Adding extra bytes unnecessarily
Confusing hex values for different types
3. Given the CBOR byte sequence 0x83 0x01 0x02 0x03, what is the decoded data?
medium
A. [1, 2, 3]
B. {\"1\": 2, \"3\": 4}
C. [0x83, 0x01, 0x02, 0x03]
D. Error: invalid CBOR
Solution
Step 1: Interpret initial byte 0x83
0x83 means array of length 3 (major type 4 + 3).
Step 2: Decode following bytes
Next three bytes 0x01, 0x02, 0x03 are integers 1, 2, 3 respectively.
Final Answer:
[1, 2, 3] -> Option A
Quick Check:
0x83 = array(3), then 1,2,3 [OK]
Hint: 0x80+N means array of length N [OK]
Common Mistakes:
Confusing array with map
Reading bytes as hex literals
Assuming syntax error without checking
4. You try to decode the CBOR data 0xA2 0x01 0x02 0x03 but get an error. What is the likely cause?
medium
A. 0x03 is not a valid CBOR byte
B. Integer keys must be strings in CBOR maps
C. Map length byte 0xA2 says 2 pairs but only 1 pair provided
D. CBOR does not support maps
Solution
Step 1: Analyze map length byte 0xA2
0xA2 means a map with 2 key-value pairs expected.
Step 2: Count provided pairs
Only bytes 0x01 and 0x02 provide one pair; 0x03 is extra byte, so incomplete data.
Final Answer:
Map length byte 0xA2 says 2 pairs but only 1 pair provided -> Option C
Quick Check:
Map length mismatch = error [OK]
Hint: Map length byte must match actual pairs [OK]
Common Mistakes:
Thinking keys must be strings
Assuming 0x03 is invalid byte
Believing CBOR lacks map support
5. You want to encode a sensor reading with temperature 22 and humidity 55 as a CBOR map. Which byte sequence correctly encodes this data?