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