tibber-api
Version:
Node.js module for connecting to Tibber API and extract data from your connected homes, including realtime data from Tibber Pulse.
28 lines (27 loc) • 753 B
TypeScript
export interface ILiveMeasurement {
timestamp: string;
power: number;
lastMeterConsumption: number;
accumulatedConsumption: number;
accumulatedProduction: number;
accumulatedConsumptionLastHour: number;
accumulatedProductionLastHour: number;
accumulatedCost: number;
accumulatedReward: number;
currency: string;
minPower: number;
averagePower: number;
maxPower: number;
powerProduction: number;
minPowerProduction: number;
maxPowerProduction: number;
lastMeterProduction: number;
powerFactor: number;
voltagePhase1: number;
voltagePhase2: number;
voltagePhase3: number;
currentL1: number;
currentL2: number;
currentL3: number;
signalStrength: number;
}