update config.json from autoconfig'd board

This commit is contained in:
brentru 2025-04-14 14:07:41 -04:00
parent 6bce301f25
commit c64dfdc9c3

View file

@ -1,25 +1,36 @@
{ {
"exportedFromDevice": { "exportedFromDevice": {
"referenceVoltage": 3.3, "sd_cs_pin": 23,
"totalGPIOPins": 18, "referenceVoltage": 0,
"totalAnalogPins": 4, "totalGPIOPins": 0,
"sd_cs_pin": 23, "totalAnalogPins": 0,
"statusLEDBrightness": 0.5 "statusLEDBrightness": 0.3
}, },
"components": [ "components": [
{ {
"name": "BME280 Sensor", "name": "bme280",
"componentAPI": "i2c", "componentAPI": "i2c",
"i2cDeviceName": "bme280", "i2cDeviceName": "bme280",
"period": 15, "period": 30,
"i2cDeviceAddress": "0x77", "autoConfig": "true",
"i2cDeviceSensorTypes": [ "i2cDeviceAddress": "0x77",
{"type": "relative-humidity"}, "i2cDeviceSensorTypes": [
{"type": "ambient-temp"}, {
{"type": "ambient-temp-fahrenheit"}, "type": "ambient-temp"
{"type": "pressure"}, },
{"type": "altitude"} {
] "type": "ambient-temp-fahrenheit"
} },
{
"type": "relative-humidity"
},
{
"type": "pressure"
},
{
"type": "altitude"
}
]
}
] ]
} }