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
copilot-swe-agent[bot] 2026-03-11 17:03:51 +00:00
parent d711fe49b1
commit 4de28c25a2
13 changed files with 12 additions and 12 deletions

View File

@ -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/

View File

@ -46,19 +46,19 @@ Then open **http://localhost:3080**.
## Screenshots
![Raspberry Pi Pico ADC simulation with Serial Monitor](doc/img1.png)
![Raspberry Pi Pico ADC simulation with Serial Monitor](docs/img1.png)
Raspberry Pi Pico simulation — ADC read test with two potentiometers, Serial Monitor showing live output, and compilation console at the bottom.
![ILI9341 TFT display simulation on Arduino Uno](doc/img2.png)
![ILI9341 TFT display simulation on Arduino Uno](docs/img2.png)
Arduino Uno driving an ILI9341 240×320 TFT display via SPI — rendering a real-time graphics demo using Adafruit_GFX + Adafruit_ILI9341.
![Library Manager with full library list](doc/img3.png)
![Library Manager with full library list](docs/img3.png)
Library Manager loads the full Arduino library index on open — browse and install libraries without typing first.
![Component Picker with 48 components](doc/img4.png)
![Component Picker with 48 components](docs/img4.png)
Component Picker showing 48 available components with visual previews, search, and category filters.

View File

@ -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 |

View File

Before

Width:  |  Height:  |  Size: 146 KiB

After

Width:  |  Height:  |  Size: 146 KiB

View File

Before

Width:  |  Height:  |  Size: 136 KiB

After

Width:  |  Height:  |  Size: 136 KiB

View File

Before

Width:  |  Height:  |  Size: 186 KiB

After

Width:  |  Height:  |  Size: 186 KiB

View File

Before

Width:  |  Height:  |  Size: 153 KiB

After

Width:  |  Height:  |  Size: 153 KiB

View File

@ -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)

View File

@ -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
}