homebridge-eveatmo
Version:
Homebridge plugin which adds a Netatmo weatherstation as HomeKit device and tries to act like Elgato Eve Room/Weather
18 lines (14 loc) • 353 B
JavaScript
;
class NoopFakeGatoHistoryService {
addEntry() {}
}
function stubFakegatoHistory() {
const modulePath = require.resolve('fakegato-history');
require.cache[modulePath] = {
id: modulePath,
filename: modulePath,
loaded: true,
exports: () => NoopFakeGatoHistoryService,
};
}
module.exports = { stubFakegatoHistory };