Skip to content

Commit

Permalink
Update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
vshymanskyy committed Jul 25, 2024
1 parent acc2baf commit ed47547
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
- [`WebREPL over internet 🌎`](docs/Web-REPL-Relay.md) - 🚧 *experimental*
- [`WebREPL in local network`](docs/Web-REPL-Server.md)
- [`Bluetooth LE`](docs/Bluetooth-REPL.md)
- [`P2P/WebRTC Bridge`](https://viper-ide.org/bridge.html) - 🚧 *experimental*
- [`Device Emulator`](https://viper-ide.org/?emulator=1) - 🚧 *experimental*
- [`P2P/WebRTC Bridge`](https://viper-ide.org/bridge.html)
- [`Virtual Device`](https://viper-ide.org/?vm=1)
- **File Editor**
- Syntax highlighting for `.py`, `.json`, `.inf`, `.toml`, `.pem`
- Auto expand/minify of `.json` files
Expand Down Expand Up @@ -59,8 +59,10 @@
- Espressif ESP8266, ESP32, ESP32S3, ESP32C3, ESP32C6
- Raspberry Pi Pico W (RP2040)
- Adafruit Feather STM32F405 Express
- Adafruit Feather M0 Basic Proto (ATSAMD21G18)
- WeAct Studio Blackpill v3.1 (STM32F411CE)
- PYBv1.1 (STM32F405RG)
- Seeed Wio Terminal (ATSAMD51P19)
- Seeed XIAO nRF52840 Sense
- Nordic nRF9161 DK with Zephyr port
- PJRC Teensy 4.0 (NXP MIMXRT1062)
Expand Down
2 changes: 1 addition & 1 deletion src/ViperIDE.html
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
<div><a href="https://github.com/vshymanskyy/ViperIDE/blob/main/docs/Web-REPL-Relay.md" target="_blank"> <i class="fa-solid fa-arrow-up-right-from-square fa-fw"></i> WebREPL over internet 🌎</a></div>
<div><a href="https://github.com/vshymanskyy/ViperIDE/blob/main/docs/Web-REPL-Server.md" target="_blank"> <i class="fa-solid fa-arrow-up-right-from-square fa-fw"></i> WebREPL in local network</a></div>
<div><a href="https://github.com/vshymanskyy/ViperIDE/blob/main/docs/Bluetooth-REPL.md" target="_blank"> <i class="fa-solid fa-arrow-up-right-from-square fa-fw"></i> Bluetooth REPL</a></div>
<div><a href="bridge.html" target="_blank"><i class="fa-solid fa-arrow-up-right-from-square fa-fw"></i> P2P Bridge 🚧</a></div>
<div><a href="bridge.html" target="_blank"><i class="fa-solid fa-arrow-up-right-from-square fa-fw"></i> P2P Bridge</a></div>
<div><a href="benchmark.html" target="_blank"><i class="fa-solid fa-arrow-up-right-from-square fa-fw"></i> Device Benchmark</a></div>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/app_common.css
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ button.connected {
.highlight {
background: var(--bg-color-edit);
border-radius: 3px;
padding: 1px 5px 1px 5px;
padding: 3px 5px 3px 5px;
line-height: 19px;
white-space: nowrap;
}
Expand Down
4 changes: 2 additions & 2 deletions src/bridge.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@
<body>
<h2>ViperIDE P2P Bridge</h2>

<p><span class="highlight warning">🚧 THIS IS EXPERIMENTAL, BEWARE OF BUGS 🚧</span></p>

<p>The bridge allows creating a secure, peer-to-peer connection between the device and ViperIDE <b>across the internet</b>.</p>

<ol>
Expand All @@ -43,6 +41,8 @@ <h2>ViperIDE P2P Bridge</h2>
</li>
</ol>

<p>⚠️ Keep this page open for the connection to remain active</p>

<script src="https://viper-ide.org/micropython.mjs" type="module" crossorigin="anonymous"></script>
<script src="./viper_lib.js"></script>
<script>
Expand Down

0 comments on commit ed47547

Please sign in to comment.