1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-09-10 16:53:10 +02:00

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

This commit is contained in:
Sarijen 2025-08-03 21:21:34 +02:00 committed by GitHub
parent 58cc6d832b
commit bbb1d0908c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 116 additions and 0 deletions

View file

@ -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 \?`

View file

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

View file

@ -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
pages.cs/common/i3.md Normal file
View file

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

View file

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