Compare commits

..

1 commit

Author SHA1 Message Date
tyeth
de11027e5f add(qmc5883p): raw event only for now 2025-08-26 20:36:50 +01:00
7 changed files with 15 additions and 98 deletions

View file

@ -1,16 +0,0 @@
{
"displayName": "AS5600 Magnetic Angle",
"vendor": "ams",
"productURL": "https://www.adafruit.com/product/6357",
"documentationURL": "https://learn.adafruit.com/adafruit-as5600-magnetic-angle-sensor",
"description": "Magnetic angle (0-359) I2C sensor with 0.1° precision and 0.4° accuracy",
"published": true,
"i2cAddresses": [ "0x36" ],
"subcomponents": [
{
"displayName": "Angle",
"defaultPeriod": 5,
"sensorType": "raw"
}
]
}

View file

@ -1,27 +0,0 @@
{
"displayName": "MLX90632-B (Standard)",
"description": "Non-contact far-infrared temperature sensor (standard range + accuracy)",
"vendor": "Melexis",
"productURL": "https://www.digikey.com/en/products/detail/melexis-technologies-nv/MLX90632SLD-BCB-000-RE/8259656",
"documentationURL": "https://cdn-shop.adafruit.com/product-files/6403/MLX90632-Datasheet-Melexis.PDF",
"published": true,
"i2cAddresses": ["0x3A", "0x3B"],
"subcomponents": [
{
"displayName": "Ambient Temperature (°C)",
"sensorType": "ambient-temp"
},
{
"displayName": "Ambient Temperature (°F)",
"sensorType": "ambient-temp-fahrenheit"
},
{
"displayName": "Measured Object Temp (°C)",
"sensorType": "object-temp"
},
{
"displayName": "Measured Object Temp (°F)",
"sensorType": "object-temp-fahrenheit"
}
]
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 47 KiB

View file

@ -1,27 +0,0 @@
{
"displayName": "MLX90632 (Extended Mode)",
"description": "Non-contact far-infrared temperature sensor (extended range + lower accuracy)",
"vendor": "Adafruit",
"productURL": "https://www.adafruit.com/product/6403",
"documentationURL": "https://cdn-shop.adafruit.com/product-files/6403/MLX90632-Datasheet-Melexis.PDF",
"published": true,
"i2cAddresses": ["0x3A", "0x3B"],
"subcomponents": [
{
"displayName": "Ambient Temperature (°C)",
"sensorType": "ambient-temp"
},
{
"displayName": "Ambient Temperature (°F)",
"sensorType": "ambient-temp-fahrenheit"
},
{
"displayName": "Measured Object Temp (°C)",
"sensorType": "object-temp"
},
{
"displayName": "Measured Object Temp (°F)",
"sensorType": "object-temp-fahrenheit"
}
]
}

View file

@ -1,27 +0,0 @@
{
"displayName": "MLX90632",
"description": "Non-contact far-infrared temperature sensor (medical range + higher accuracy).",
"vendor": "Adafruit",
"productURL": "https://www.adafruit.com/product/6403",
"documentationURL": "https://cdn-shop.adafruit.com/product-files/6403/MLX90632-Datasheet-Melexis.PDF",
"published": true,
"i2cAddresses": ["0x3A", "0x3B"],
"subcomponents": [
{
"displayName": "Ambient Temperature (°C)",
"sensorType": "ambient-temp"
},
{
"displayName": "Ambient Temperature (°F)",
"sensorType": "ambient-temp-fahrenheit"
},
{
"displayName": "Measured Object Temp (°C)",
"sensorType": "object-temp"
},
{
"displayName": "Measured Object Temp (°F)",
"sensorType": "object-temp-fahrenheit"
}
]
}

View file

@ -0,0 +1,14 @@
{
"displayName": "QMC5883P",
"vendor": "QST Corporation",
"productURL": "https://www.adafruit.com/product/6388",
"documentationURL": "https://learn.adafruit.com/adafruit-qmc5883p-triple-axis-magnetometer",
"published": false,
"i2cAddresses": [ "0x2C" ],
"subcomponents": [
{
"displayName": "Magnetic Magnitude (gauss)",
"sensorType": "raw"
}
]
}

View file

@ -29,7 +29,7 @@
"defaultPeriod": {
"description": "What period to the form should default to for this sensor.",
"type": "number",
"minimum": 1,
"minimum": 30,
"maximum": 86400
}
}