diff --git a/img/logo.png b/img/logo.png new file mode 100644 index 0000000..3f72752 Binary files /dev/null and b/img/logo.png differ diff --git a/index.html b/index.html index 9c704b1..46a332d 100644 --- a/index.html +++ b/index.html @@ -2,7 +2,7 @@ - FTMS Rower | Concept + FTMS Video Rower | Demo @@ -12,56 +12,65 @@ -

FTMS Rower | Concept

-

Connect rower

+

FTMS Video Rower | Demo

+

-

Training stats

-
-
-
Pace
-
0:00
-
0:00
-
+
+

Usage information

+

Connect your rower via bluetooth using the button above. Once connected, it will show your live training stats and the training video here.

+

If you found a bug, or want to contribute to this open source project, visit us at https://git.kmpr.at/FTMS-Rower +

+
+
+
+
Pace
+
0:00
+
0:00
+
-
-
Stroke rate
-
0
-
0.0
-
+
+
Stroke rate
+
0
+
0.0
+
-
-
Power
-
0
-
0.0
-
+
+
Power
+
0
+
0.0
+
-
-
Distance
-
m
-
0
-
-
+
+
Distance
+
m
+
0
+
+
-

Rowing video

- - + +
+ - \ No newline at end of file diff --git a/js/ftms-rower.js b/js/ftms-rower.js index 9b40542..04fb8ec 100644 --- a/js/ftms-rower.js +++ b/js/ftms-rower.js @@ -26,6 +26,8 @@ function connect() { .then(characteristic => { characteristic.startNotifications().then(_ => { console.log('> Notifications started'); + document.querySelector(".setupinfo").style.display="none"; + document.querySelector(".training").style.display="block"; }); return characteristic; })