Update repo

This commit is contained in:
2026-08-30 23:04:35 -07:00
parent 749dab5721
commit ce65a0f59a
14950 changed files with 4408250 additions and 1 deletions
@@ -0,0 +1,19 @@
exports = {
getExtraInputOptions : getExtraInputOptions
};
function getExtraInputOptions()
{
var deviceName = system.deviceData.deviceId;
if (["F28003x", "F28002x", "F28004x", "F2838x", "F280013x", "F280015x","F28P65x","F28P55x"].includes(deviceName))
{
return [
{name: "0xFFFE", displayName : "LOGIC HIGH ('1' selected input)"},
{name: "0xFFFF", displayName : "LOGIC LOW ('0' selected input)"}
];
}
else
{
return [];
}
}