happy-birthday-esp32
No description available.
File Explorer
- cake-1.png
- cake-2.png
- cake-3.png
- cake-4.png
- rainyhearts.ttf
- cake_frame_1.h
- cake_frame_2.h
- cake_frame_3.h
- cake_frame_4.h
- cake_frames.h
- rainyhearts_font.h
- png_to_rgb565.py
- ttf_to_gfx.py
- main.cpp
- .gitignore
- platformio.ini
- README.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
pio device
View Details ▼
pio device
Manage and monitor PlatformIO devices.
pio device list
List all available serial ports:
pio device list --logical
List all available logical devices:
pio device monitor
Start an interactive device monitor:
pio run
View Details ▼
pio run
Run PlatformIO project targets.
pio run --list-targets
List all available project targets:
pio run --list-targets {{[-e|--environment]}} {{environment}}
List all available project targets of a specific environment:
pio run
Run all targets:
pip install
View Details ▼
pip install
Install Python packages.
pip install {{package1 package2 ...}}
Install one or more packages:
pip install {{package1 package2 ...}} {{[-U|--upgrade]}}
Upgrade all specified packages to the latest version, installing any that are not already present:
pip install {{package}}=={{version}}
Install a specific version of a package:
pip3
View Details ▼
pip3
This command is an alias of `pip`.
tldr pip
View documentation for the original command:
python3
View Details ▼
python3
This command is an alias of `python`.
tldr python
View documentation for the original command:
lib
View Details ▼
lib
The Microsoft Library Manager for creating and managing static libraries of object files.
lib /OUT :{{path\to\library.lib}} {{path\to\file1.obj path\to\file2.obj ...}}
Create a static library from object files:
lib /LIST {{path\to\library.lib}}
List the contents of a library:
lib {{path\to\library.lib}} {{path\to\file.obj}}
Add an object file to an existing library:
