diff options
Diffstat (limited to 'docs/es/hardware_avr.md')
-rw-r--r-- | docs/es/hardware_avr.md | 38 |
1 files changed, 20 insertions, 18 deletions
diff --git a/docs/es/hardware_avr.md b/docs/es/hardware_avr.md index f8c426381..ac6a71565 100644 --- a/docs/es/hardware_avr.md +++ b/docs/es/hardware_avr.md | |||
@@ -6,26 +6,28 @@ Si aún no lo has hecho, debes leer las [Pautas de teclados](hardware_keyboard_g | |||
6 | 6 | ||
7 | ## Añadir tu Teclado AVR a QMK | 7 | ## Añadir tu Teclado AVR a QMK |
8 | 8 | ||
9 | QMK tiene varias características para simplificar el trabajo con teclados AVR. Para la mayoría de los teclados no tienes que escribir ni una sola línea de código. Para empezar, ejecuta el archivo `util/new_keyboard.sh`: | 9 | QMK tiene varias características para simplificar el trabajo con teclados AVR. Para la mayoría de los teclados no tienes que escribir ni una sola línea de código. Para empezar, ejecuta `qmk new-keyboard`: |
10 | 10 | ||
11 | ``` | 11 | ``` |
12 | $ ./util/new_keyboard.sh | 12 | $ qmk new-keyboard |
13 | Generating a new QMK keyboard directory | 13 | Ψ Generating a new QMK keyboard directory |
14 | 14 | ||
15 | Keyboard Name: mycoolkb | 15 | Keyboard Name: mycoolkeeb |
16 | Keyboard Type [avr]: | 16 | Keyboard Type: |
17 | Your Name [John Smith]: | 17 | 1. avr |
18 | 18 | 2. ps2avrgb | |
19 | Copying base template files... done | 19 | Please enter your choice: [1] |
20 | Copying avr template files... done | 20 | Your Name: [John Smith] |
21 | Renaming keyboard files... done | 21 | Ψ Copying base template files... |
22 | Replacing %KEYBOARD% with mycoolkb... done | 22 | Ψ Copying avr template files... |
23 | Replacing %YOUR_NAME% with John Smith... done | 23 | Ψ Renaming keyboard.[ch] to mycoolkeeb.[ch]... |
24 | 24 | Ψ Replacing %YEAR% with 2021... | |
25 | Created a new keyboard called mycoolkb. | 25 | Ψ Replacing %KEYBOARD% with mycoolkeeb... |
26 | 26 | Ψ Replacing %YOUR_NAME% with John Smith... | |
27 | To start working on things, cd into keyboards/mycoolkb, | 27 | |
28 | or open the directory in your favourite text editor. | 28 | Ψ Created a new keyboard called mycoolkeeb. |
29 | Ψ To start working on things, `cd` into keyboards/mycoolkeeb, | ||
30 | Ψ or open the directory in your preferred text editor. | ||
29 | ``` | 31 | ``` |
30 | 32 | ||
31 | Esto creará todos los archivos necesarios para tu nuevo teclado, y rellenará la configuración con valores predeterminados. Ahora sólo tienes que personalizarlo para tu teclado. | 33 | Esto creará todos los archivos necesarios para tu nuevo teclado, y rellenará la configuración con valores predeterminados. Ahora sólo tienes que personalizarlo para tu teclado. |