Skip to content
Snippets Groups Projects
Select Git revision
  • 6930dfbbce931345ae6d7a82dfd450a3478ccd25
  • main default protected
  • tuxcoder_dome
  • tuxcoder_fix_captouch
  • crates-reorga
  • wifi
  • test-badgenet
7 results

Cargo.lock

Blame
  • Forked from flow3r / flow3-rs
    Source project has a limited visibility.
    version-image.py 1.40 KiB
    #!/usr/bin/env python3
    import argparse
    import os
    from PIL import Image
    
    
    def main() -> None:
        parser = argparse.ArgumentParser(
            description="""\
    Update the epicardium version-splash.  NOTE: You need to adjust
    epicardium/main.c if you want to actually see your version splash!!
    """
        )
    
        parser.add_argument("image", help="Path to version image")
        parser.add_argument("header", help="Path to version header")
    
        args = parser.parse_args()
    
        im = Image.open(args.image)
        assert im.size[0] == 160, "Image must be 160 pixels wide"
        assert im.size[1] == 80, "Image must be 80 pixels high)"
    
        vsplash = args.header
    
        with open(vsplash, "w") as f:
            tmp = """\
    #pragma once
    #include <stdint.h>
    
    /* clang-format off */
    const uint8_t version_splash[] = {
    """
            f.write(tmp)
    
            for x in range(im.size[1]):
                for y in range(im.size[0]):
                    px = im.getpixel((y, x))
    
                    px565 = ((px[0] >> 3) << 11) | ((px[1] >> 2) << 5) | (px[2] >> 3)
                    byte_high = (px565 & 0xFF00) >> 8
                    byte_low = px565 & 0xFF
    
                    if y % 4 == 0:
                        f.write("\t")
    
                    f.write("0x{:02x}, 0x{:02x},".format(byte_low, byte_high))
    
                    if y % 4 == 3:
                        f.write("\n")
                    else:
                        f.write(" ")
    
            f.write("};\n")
    
    
    if __name__ == "__main__":
        main()