Ender3-S1-Pro-Firmware/buildroot/share/PlatformIO/scripts/random-bin.py

10 lines
194 B
Python
Raw Permalink Normal View History

2024-01-08 09:23:06 +01:00
#
# random-bin.py
# Set a unique firmware name based on current date and time
#
Import("env")
from datetime import datetime
env['PROGNAME'] = datetime.now().strftime("firmware-%Y%m%d-%H%M%S")