diff --git a/app/README.md b/app/README.md new file mode 100644 index 0000000..7843dce --- /dev/null +++ b/app/README.md @@ -0,0 +1,6 @@ +At the moment it's not possisble to build svelteKit to single js file or in a flatten structure +https://github.com/sveltejs/kit/issues/3882 + +This means that it cannot be stored in SPIFFS as it only support upto 32 bytes filenames include filepath + +For the time being the esp32 will serve at static html file diff --git a/data/index.html b/data/index.html new file mode 100644 index 0000000..5998145 --- /dev/null +++ b/data/index.html @@ -0,0 +1,58 @@ + + + + + + + + + + +

Spot Micro Controller

+
+ +
+ + + \ No newline at end of file diff --git a/include/index_other.h b/include/index_other.h new file mode 100644 index 0000000..e49025e --- /dev/null +++ b/include/index_other.h @@ -0,0 +1,60 @@ +const char index_simple_html[] = R"=====( + + + + + + + + + +

Spot Micro Controller

+
+ +
+ + +)====="; + +size_t index_simple_html_len = sizeof(index_simple_html)-1; \ No newline at end of file