Een eerste upload van de Homey programmeer leeromgeving

This commit is contained in:
2024-03-22 07:04:11 +01:00
commit 8f0a5e8db7
14 changed files with 4229 additions and 0 deletions

16
app.js Normal file
View File

@@ -0,0 +1,16 @@
'use strict';
const Homey = require('homey');
class MyApp extends Homey.App {
/**
* onInit is called when the app is initialized.
*/
async onInit() {
this.log('MyApp has been initialized');
}
}
module.exports = MyApp;