From 4c5f23ff896b85ba6af17aefaee1f7cbb0833d88 Mon Sep 17 00:00:00 2001 From: Roman Haefeli Date: Wed, 12 Feb 2025 10:21:40 +0100 Subject: [PATCH] adhere to Arduino IDE standards for sketch names (#65) The IDE wants them to be named like their containing folder. Otherwise it proposes to create a new folder and to move the sketch into it, which again causes troubles because the header files are not automatically moved. Giving the sketch name the proper name avoids a lot of troubles for Arduino IDE users (at least for version 2.3.4) I missed this due to bad practice on my part, and this problem is found with all versions of Arduino IDE that I know of. --- PSNee_V8.5/PSNee_V8.5/{PSNee_V8.ino => PSNee_V8.5.ino} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename PSNee_V8.5/PSNee_V8.5/{PSNee_V8.ino => PSNee_V8.5.ino} (100%) diff --git a/PSNee_V8.5/PSNee_V8.5/PSNee_V8.ino b/PSNee_V8.5/PSNee_V8.5/PSNee_V8.5.ino similarity index 100% rename from PSNee_V8.5/PSNee_V8.5/PSNee_V8.ino rename to PSNee_V8.5/PSNee_V8.5/PSNee_V8.5.ino