This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import time | |
import pyautogui | |
do_break = False | |
while True: | |
if do_break: | |
break | |
start_time = time.time() | |
while True: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.PHONY: all export run clean dist-clean get_sdk | |
# `make run` will start chirpw | |
# `make run python` will start the python interpreter inside the flatpak | |
# `make run bash` will start bash shell inside the flatpak | |
args = $(filter-out $@,$(MAKECMDGOALS)) | |
CMD ?= $(if $(args),$(args),chirpw) | |
all: | |
flatpak-builder --force-clean build-dir --repo repo/ com.danplanet.chirp.yml | tee build.txt |
NewerOlder