Skip to main content

gbt — Ghost Build Tool

Build and package GhostESP native SD apps from the command line.

Install

pip install ghostbt

Requires Python 3.8+ and ESP-IDF (install via gbt setup).

Quick Start

# Set up ESP-IDF (one-time)
gbt setup

# Create a new app
gbt create my_app --name "My App"

# Build and package
gbt dist ./my_app --gapp

# Flash firmware to device
gbt firmware cardputer
gbt flash firmware --board cardputer --monitor

Commands

Command Description
gbt create <id> Scaffold a new native SD app
gbt build [dir] Build app with ESP-IDF
gbt package [dir] --gapp Package as folder or .gapp archive
gbt dist [dir] --gapp Build + package in one step
gbt setup Install/configure ESP-IDF toolchain
gbt boards List available firmware board configs
gbt firmware <board> Build GhostESP firmware
gbt flash firmware Flash firmware to device
gbt flash app Instructions for loading app via SD card
gbt asset image Convert a PNG into a GhostESP .gimg asset image
gbt asset pack Build an SD-ready asset pack folder or .gtheme bundle
gbt monitor Serial monitor
gbt ports List serial ports

Asset Packs

Create a source folder with a manifest.json and PNG artwork. gbt asset pack converts source images into compact .gimg files and writes a runtime manifest for /mnt/ghostesp/themes/<pack id>/.

{
  "id": "cyberpack",
  "name": "Cyber Pack",
  "version": 1,
  "colors": {
    "accent": "0xFF00FF",
    "background": "0x0A0A0A",
    "surface": "0x1A0A1A",
    "surface_alt": "0x2A1A2A",
    "text": "0xFFFFFF",
    "text_muted": "0xAA88CC"
  },
  "icon_variants": [32, 64],
  "icon_sources": {
    "wifi": "art/icons/wifi.png",
    "bluetooth": "art/icons/bluetooth.png",
    "settings_icon": "art/icons/settings.png"
  },
  "background_sources": {
    "bg_tile": {
      "source": "art/bg_tile.png",
      "width": 64,
      "height": 64,
      "format": "rgb565"
    }
  }
}

Build it:

gbt asset pack ./cyberpack --out ./dist
gbt asset pack ./cyberpack --out ./dist --archive

Install a generated pack folder by copying it to SD as:

/mnt/ghostesp/themes/cyberpack/manifest.json
/mnt/ghostesp/themes/cyberpack/icons/...

Or install an archive by copying the .gtheme to SD as:

/mnt/ghostesp/themes/cyberpack.gtheme

Then use Settings > Appearance > Asset Pack and press left/right to cycle installed packs. Firmware scans /mnt/ghostesp/themes/ for pack folders with manifest.json and for .gtheme archives. The selected pack is saved in NVS.

When loading a .gtheme, firmware streams entries into /mnt/ghostesp/themes/active/ before loading. New .gtheme archives store raw .gimg payloads without deflate compression for safe runtime decoding. Theme SD access uses the same short mount/unmount flow as other SD operations; decoded icons and background tiles stay cached in RAM/PSRAM after each read.

PSRAM vs internal RAM

PSRAM devices: Up to 32 icons cached in PSRAM, tiled or scaled backgrounds supported. Background images smaller than the screen tile automatically; larger images scale to fill using LVGL zoom. A 128x128 background will scale up to fill any screen. Background images are always loaded into PSRAM. Any image format works; deflate-compressed payloads decode into PSRAM.

Internal-only devices: 2 icons cached in internal RAM. Background tile (≤32x32) supported — LVGL tiles the small image across the screen. Icon size capped at 32x32 RGB565A8; deflate-compressed payloads rejected. Use the indexed_4bpp format for icons and the background tile to fit in internal RAM: a 32x32 indexed icon is 576 bytes vs 3,072 bytes for RGB565A8 (~5x smaller). Icons fall back to compiled-in artwork when the cache is full. The pack still loads colors and icon mappings; only the image cache is limited.

Image formats

Format Code Size at 32x32 Notes
rgb565 1 2,048 B No alpha. Best for opaque backgrounds.
rgb565a8 2 3,072 B RGB565 + separate alpha plane. Default for icons.
indexed_4bpp 3 576 B 16-color palette, packed 4-bit pixels. Ideal for internal-RAM devices; the gbt tool quantizes the source PNG at build time.
indexed_1bpp 4 136 B Two-color palette, packed 1-bit pixels. Intended for monochrome low-RAM backgrounds.

Set the pack-wide icon format with icon_format in the source manifest, or override per-background via the format field on each background_sources entry. Indexed payloads are always stored uncompressed.

Convert one image directly:

# Default — RGB565A8, 3 KB for 32x32
gbt asset image ./wifi.png --out ./wifi_l.gimg --width 64 --height 64 --format rgb565a8

# Internal-RAM friendly — indexed 4bpp, 576 B for 32x32
gbt asset image ./wifi.png --out ./wifi_l.gimg --width 64 --height 64 --format indexed_4bpp

The generated pack folder contains manifest.json, checksums.json, and generated .gimg files. Asset packs store raw .gimg payloads by default so firmware does not run deflate decompression from small UI task stacks. Missing icons are fine; firmware falls back to built-in artwork for any icon not present in the selected pack. Full-screen background images are loaded into PSRAM only; the smaller tiled background path works on internal-RAM devices at ≤32x32.

Requirements

  • Python 3.8 or later
  • ESP-IDF (auto-installed by gbt setup if missing)
  • Git (for gbt setup)

Links

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ghostbt-0.5.6.tar.gz (422.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ghostbt-0.5.6-py3-none-any.whl (455.2 kB view details)

Uploaded Python 3

File details

Details for the file ghostbt-0.5.6.tar.gz.

File metadata

  • Download URL: ghostbt-0.5.6.tar.gz
  • Upload date:
  • Size: 422.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ghostbt-0.5.6.tar.gz
Algorithm Hash digest
SHA256 86516e119b34579508b215631bbd19bbe7544edbb011c0a51616d2d3c8b4c98f
MD5 22e00d7935cd566fe62d582df0165784
BLAKE2b-256 b2c82e9127ff9837606b19851da7c937a9682ddd7b05dfed9fdd90f5901ac2b8

See more details on using hashes here.

File details

Details for the file ghostbt-0.5.6-py3-none-any.whl.

File metadata

  • Download URL: ghostbt-0.5.6-py3-none-any.whl
  • Upload date:
  • Size: 455.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ghostbt-0.5.6-py3-none-any.whl
Algorithm Hash digest
SHA256 96a666ff2c588e087096ebc4ab07cd0be3d4b93a2e875f0bff7f76e554c3eaa4
MD5 f04c6f9f00adff20980c37d55f2e1812
BLAKE2b-256 2d8aedb3361e0f1bf3a054ebf24c58e008adf408ed70029570b47fb9ffa57a05

See more details on using hashes here.

Release history Release notifications | RSS feed

0.5.8

2 files

0.5.7

2 files

This release

0.5.6 This release

2 files

0.5.5

2 files

0.5.4

2 files

0.5.3

2 files

0.5.2

2 files

0.5.1

2 files

0.5.0

2 files

0.3.1

2 files

0.3.0

2 files

0.2.2

2 files

0.2.1

2 files

0.2.0

2 files

0.1.1

2 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page