Merge doc/ into docs/ — eliminate duplicate documentation folders
- Move ARCHITECTURE.md, MCP.md, SETUP_COMPLETE.md, WOKWI_LIBS.md, examples/, img1-4.png from doc/ to docs/ - Delete doc/ directory - Update README.md: doc/img*.png -> docs/img*.png - Update CLAUDE.md: doc/ARCHITECTURE.md -> docs/ARCHITECTURE.md - Update frontend/README.md: ../doc/ -> ../docs/ - Update scripts/generate-example-screenshots.md: doc/examples/ -> docs/examples/ - Update docs/SETUP_COMPLETE.md internal self-references Co-authored-by: davidmonterocrespo24 <47928504+davidmonterocrespo24@users.noreply.github.com>pull/21/head
|
|
@ -423,7 +423,7 @@ Enable verbose logging:
|
|||
## Additional Resources
|
||||
|
||||
- Main README: [README.md](README.md)
|
||||
- Architecture Details: [doc/ARCHITECTURE.md](doc/ARCHITECTURE.md)
|
||||
- Architecture Details: [docs/ARCHITECTURE.md](docs/ARCHITECTURE.md)
|
||||
- Wokwi Elements Repo: https://github.com/wokwi/wokwi-elements
|
||||
- AVR8js Repo: https://github.com/wokwi/avr8js
|
||||
- Arduino CLI Docs: https://arduino.github.io/arduino-cli/
|
||||
|
|
|
|||
|
|
@ -46,19 +46,19 @@ Then open **http://localhost:3080**.
|
|||
|
||||
## Screenshots
|
||||
|
||||

|
||||

|
||||
|
||||
Raspberry Pi Pico simulation — ADC read test with two potentiometers, Serial Monitor showing live output, and compilation console at the bottom.
|
||||
|
||||

|
||||

|
||||
|
||||
Arduino Uno driving an ILI9341 240×320 TFT display via SPI — rendering a real-time graphics demo using Adafruit_GFX + Adafruit_ILI9341.
|
||||
|
||||

|
||||

|
||||
|
||||
Library Manager loads the full Arduino library index on open — browse and install libraries without typing first.
|
||||
|
||||

|
||||

|
||||
|
||||
Component Picker showing 48 available components with visual previews, search, and category filters.
|
||||
|
||||
|
|
|
|||
|
|
@ -121,9 +121,9 @@ Repositorios oficiales de Wokwi en `wokwi-libs/`:
|
|||
| Archivo | Descripción |
|
||||
|---------|-------------|
|
||||
| `README.md` | Instrucciones de instalación y uso |
|
||||
| `doc/ARCHITECTURE.md` | Arquitectura detallada del proyecto |
|
||||
| `doc/WOKWI_LIBS.md` | Guía de integración con Wokwi |
|
||||
| `doc/SETUP_COMPLETE.md` | Este archivo — estado del proyecto |
|
||||
| `docs/ARCHITECTURE.md` | Arquitectura detallada del proyecto |
|
||||
| `docs/WOKWI_LIBS.md` | Guía de integración con Wokwi |
|
||||
| `docs/SETUP_COMPLETE.md` | Este archivo — estado del proyecto |
|
||||
| `CLAUDE.md` | Guía para asistentes IA |
|
||||
| `update-wokwi-libs.bat` | Script de actualización automática |
|
||||
|
||||
|
Before Width: | Height: | Size: 146 KiB After Width: | Height: | Size: 146 KiB |
|
Before Width: | Height: | Size: 136 KiB After Width: | Height: | Size: 136 KiB |
|
Before Width: | Height: | Size: 186 KiB After Width: | Height: | Size: 186 KiB |
|
Before Width: | Height: | Size: 153 KiB After Width: | Height: | Size: 153 KiB |
|
|
@ -209,8 +209,8 @@ See [backend documentation](../backend/README.md) for API details.
|
|||
|
||||
- [Main Project README](../README.md)
|
||||
- [Development Guide (CLAUDE.md)](../CLAUDE.md)
|
||||
- [Architecture Documentation](../doc/ARCHITECTURE.md)
|
||||
- [Wokwi Integration](../doc/WOKWI_LIBS.md)
|
||||
- [Architecture Documentation](../docs/ARCHITECTURE.md)
|
||||
- [Wokwi Integration](../docs/WOKWI_LIBS.md)
|
||||
- [Monaco Editor API](https://microsoft.github.io/monaco-editor/api/index.html)
|
||||
- [Vite Documentation](https://vitejs.dev/)
|
||||
- [Zustand Guide](https://docs.pmnd.rs/zustand/getting-started/introduction)
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@ Abre http://localhost:5173
|
|||
**Guardar la imagen:**
|
||||
1. Abre Paint o cualquier editor
|
||||
2. Pega (Ctrl + V)
|
||||
3. Guarda como PNG en `doc/examples/[nombre-ejemplo].png`
|
||||
3. Guarda como PNG en `docs/examples/[nombre-ejemplo].png`
|
||||
|
||||
### 4. Nombres de Archivo
|
||||
|
||||
|
|
@ -55,7 +55,7 @@ Una vez tengas las imágenes, edita `frontend/src/data/examples.ts`:
|
|||
description: 'Classic Arduino blink example - toggle an LED on and off',
|
||||
category: 'basics',
|
||||
difficulty: 'beginner',
|
||||
thumbnail: '/doc/examples/blink-led.png', // ← Agregar esta línea
|
||||
thumbnail: '/docs/examples/blink-led.png', // ← Agregar esta línea
|
||||
code: `...`,
|
||||
// ... resto
|
||||
}
|
||||
|
|
|
|||