diff --git a/src/components/DeviceSetup.svelte b/src/components/DeviceSetup.svelte new file mode 100644 index 0000000..40bfe02 --- /dev/null +++ b/src/components/DeviceSetup.svelte @@ -0,0 +1,103 @@ + + +
+ + + +

Searching

+
+ {#if !loadFoundDevices} +

Searching for devices in network ...

+ {:else} +

Found devices:

+ + {#each foundDevicesObj as item} + + + + + + + + {item.title} + + {/each} + + {/if} + + + +
+ + +

Selected

+
+ +

{foundDevicesObj[selectedDevice - 1].title}

+

Stats of device

+
+ + +

Finish

+
+ +

{foundDevicesObj[selectedDevice - 1].title}

+

Click on 'Add device' to finish the setup

+
+
+
\ No newline at end of file