This commit is contained in:
ZennDev1337 2023-10-11 18:05:53 +02:00
parent 4d646828cb
commit ffb6d42f10
3 changed files with 14 additions and 29 deletions

11
run.py
View file

@ -176,6 +176,17 @@ pub unsafe extern "C" fn setup() {
pub unsafe extern "C" fn loop_() {
// put your main code here, to run repeatedly:
}''')
with open(f"Project/{project_name}/config.toml", "w") as f:
data = '''Libraries = [
"Arduboy2",
#"ArduboyTones",
#"ArduboyFX",
#"ArdVoice",
#"Serial",
"EEPROM",
"Arduino",
]'''
f.writelines(data)
def generate_import_h():