Hello,
I'm trying to crate a cloud-to-device ledger, containing some configuration data.
The JSON consists of three levels of data just as shown below:
{
"telemetry_frequency": {
"sensing_interval": 5,
"transmission_interval": 30
},
"calibration_data": {
"linear_threshold": 1.1,
"size": 0.5,
"linear_coefficients": {
"m": .1,
"b": -0.01
},
"nonlinear_coefficients": {
"w": .01,
"x": .02,
"y": .03,
"z": .04
}
}
}
When writing this JSON structure, the set instance button appears greyed out. Is there a way to set this JSON correctly?
Thanks!