Skip to content

avrdude, picotool, esptool.py, i3, cmatrix: add Czech translation #17340

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 3, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions pages.cs/common/avrdude.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# avrdude

> Program ovladače pro programování Atmel AVR mikrořadičů.
> Více informací: <https://www.nongnu.org/avrdude/user-manual/avrdude_3.html#Option-Descriptions>.
- P[r]ečíst flash ROM AVR mikrořadiče s konkrétním ID součástky:

`avrdude -p {{cislo_soucastky}} -c {{id_programatora}} -U flash:r:{{soubor.hex}}:i`

- Zapsat do flash ROM AVR mikrořadiče:

`avrdude -p {{cislo_soucastky}} -c {{programator}} -U flash:w:{{file.hex}}`

- Vypsat dostupné AVR zařízení:

`avrdude -p \?`

- Vypsat dostupné AVR programátory:

`avrdude -c \?`
20 changes: 20 additions & 0 deletions pages.cs/common/cmatrix.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# cmatrix

> Zobrazuje v terminálu obrazovku podobnou Matrixu.
> Více informací: <https://github.com/abishekvashok/cmatrix>.
- Povolit [a]synchroní posouvání:

`cmatrix -a`

- Změnit barvu textu (výchozí je zelená):

`cmatrix -C {{red}}`

- Povolit duhový režim:

`cmatrix -r`

- Použít zpoždění akt[u]alizace 100 centisekund (1 sekunda):

`cmatrix -u 100`
12 changes: 12 additions & 0 deletions pages.cs/common/esptool.py.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# esptool.py

> Bootloader nástroj pro Espressif čipy (např. ESP8266).
> Více informací: <https://docs.espressif.com/projects/esptool/en/latest/esp32/>.
- Flashnout firmware soubor do ESP čipu s uvedeným portem a přenosovou rychlostí:

`sudo esptool.py --port {{port}} --baud {{prenosova_rychlost}} write_flash 0x0 {{cesta/k/firmwaru.bin}}`

- Smazat flash ESP čipu:

`sudo esptool.py --port {{port}} --baud {{prenosova_rychlost}} erase_flash`
32 changes: 32 additions & 0 deletions pages.cs/common/i3.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# i3

> Dlaždicový správce oken pro X11.
> Více informací: <https://i3wm.org/docs/userguide.html>.
- Spustit `i3` (Už existující správce oken nesmí být otevřený při spuštění tohoto příkazu):

`i3`

- Otevřít nové terminálové okno:

`<Super Enter>`

- Přesunout aktivní okno do plochy:

`<Super Shift {{cislo}}>`

- Přesunout se do plochy:

`<Super {{cislo}}>`

- Rozdělit další okno horizontálně:

`<Super h>`

- Rozdělit další okno vertikálně:

`<Super v>`

- Otevřít spouštěč aplikací:

`<Super d>`
32 changes: 32 additions & 0 deletions pages.cs/common/picotool.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# picotool

> Spravuje desky Raspberry Pi Pico.
> Více informací: <https://github.com/raspberrypi/picotool>.
- Zobrazit informace o aktuálně načteném programu na Picu:

`picotool info`

- Načíst binárku do Pica:

`picotool load {{cesta/k/binarce}}`

- Převést soubor ELF nebo BIN na UF2:

`picotool uf2 convert {{cesta/k/elf_nebo_bin}} {{cesta/k/vystupu}}`

- Restartovat Pico:

`picotool reboot`

- Vypsat všechny známe registry:

`picotool otp list`

- Zobrazit verzi:

`picotool version`

- Zobrazit nápovědu:

`picotool help`