Adding quick web serial terminal.

This commit is contained in:
Brad Nelson
2024-08-23 15:15:41 -07:00
parent d9de300c08
commit c5ac9b0df0
4 changed files with 36 additions and 0 deletions

View File

@ -24,6 +24,7 @@ DEPLOY_ITEMS = []
DEPLOY_ITEMS += [ DEPLOY_ITEMS += [
Copy('$dst/deploy/.gcloudignore', '$src/site/.gcloudignore'), Copy('$dst/deploy/.gcloudignore', '$src/site/.gcloudignore'),
Copy('$dst/deploy/ueforth.js', '$dst/web/ueforth.js'), Copy('$dst/deploy/ueforth.js', '$dst/web/ueforth.js'),
Copy('$dst/deploy/serial.html', '$dst/web/serial.html'),
Importation('$dst/deploy/index.html', '$src/site/index.html', options=ESP_OPTIONS), Importation('$dst/deploy/index.html', '$src/site/index.html', options=ESP_OPTIONS),
Importation('$dst/deploy/linux.html', '$src/site/linux.html', options=UE_OPTIONS), Importation('$dst/deploy/linux.html', '$src/site/linux.html', options=UE_OPTIONS),
Importation('$dst/deploy/windows.html', '$src/site/windows.html', options=UE_OPTIONS), Importation('$dst/deploy/windows.html', '$src/site/windows.html', options=UE_OPTIONS),

View File

@ -37,6 +37,11 @@ handlers:
upload: (.*).html upload: (.*).html
secure: always secure: always
- url: /serial
static_files: serial.html
upload: serial.html
secure: always
- url: /(.*).js - url: /(.*).js
static_files: \1.js static_files: \1.js
upload: (.*).js upload: (.*).js

View File

@ -34,6 +34,7 @@ WEB_ITEMS = [
Copy('$dst/web/script_lite_test.html', '$src/web/script_lite_test.html'), Copy('$dst/web/script_lite_test.html', '$src/web/script_lite_test.html'),
Copy('$dst/web/script_test.html', '$src/web/script_test.html'), Copy('$dst/web/script_test.html', '$src/web/script_test.html'),
Copy('$dst/web/script_test.fs', '$src/web/script_test.fs'), Copy('$dst/web/script_test.fs', '$src/web/script_test.fs'),
Copy('$dst/web/serial.html', '$src/web/serial.html'),
] ]
if D8_AVAILABLE: if D8_AVAILABLE:

29
web/serial.html Normal file
View File

@ -0,0 +1,29 @@
<!DOCTYPE html>
<!--
Copyright 2024 Bradley D. Nelson
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<script src="ueforth.js"></script>
<script type="text/forth">
: y/n ( -- f ) key [char] y = ;
web
: go
." SERIAL TERMINAL" cr
." Pair (y/n) ? " y/n if pairserial then
serial
;
forth
go
</script>