Get points timeseries values between two Timestamps
Optional
from?: Partial<Timestamp>Optional
to?: Partial<Timestamp>Write a value to the point
Read Value from Point
Optional
propertyIdentifier: PropertyIdentifierCheck if a point value has met a certain condition for a given time (in milliseconds)
Example:
module.exports = async ({ points }) => {
const point = points.byLabel("some-class").first();
const damperHigh = await DamperPosition.trueFor("1m",(v) => Number(v.value) > 95)
};
Write a value to the point
Optional
priority: numberOptional
options: Partial<BACnetWriteCommandOptions>Generated using TypeDoc
Interface representing a Point object