From 98b144f23ce771a22dce73c827be7924993cfca5 Mon Sep 17 00:00:00 2001 From: Humberto Alfonso Díaz Date: Thu, 5 Dec 2019 13:06:24 +0100 Subject: FUNCT Add wifi support --- src/js/app.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/js/app.js') diff --git a/src/js/app.js b/src/js/app.js index 458a5d4..fb7f77f 100644 --- a/src/js/app.js +++ b/src/js/app.js @@ -1,5 +1,5 @@ import * as bluetooth from './bluetooth'; -import { init as init_wifi } from './wifi'; +import * as wifi from './wifi'; import { load as load_template } from './templates'; import Mustache from 'mustache'; @@ -20,6 +20,7 @@ export function init() { Mustache.parse(template); show(); bluetooth.init(); + wifi.init(); }, function(error) { console.error('ERRROR loading main template', error); }); -- cgit 1.2.3-korg