From 10808f35a7943fe00c8490ac1f436cc715090054 Mon Sep 17 00:00:00 2001 From: patha Date: Thu, 8 Jun 2023 17:48:01 +0200 Subject: [PATCH] initialer commit --- Krippenteil1/.gitignore | 5 +++ Krippenteil1/.vscode/extensions.json | 10 ++++++ Krippenteil1/.vscode/settings.json | 3 ++ Krippenteil1/include/README | 39 ++++++++++++++++++++++ Krippenteil1/lib/README | 46 ++++++++++++++++++++++++++ Krippenteil1/platformio.ini | 14 ++++++++ Krippenteil1/src/main.cpp | 48 ++++++++++++++++++++++++++++ Krippenteil1/test/README | 11 +++++++ Krippenteil2/.gitignore | 5 +++ Krippenteil2/.vscode/extensions.json | 10 ++++++ Krippenteil2/include/README | 39 ++++++++++++++++++++++ Krippenteil2/lib/README | 46 ++++++++++++++++++++++++++ Krippenteil2/platformio.ini | 14 ++++++++ Krippenteil2/src/main.cpp | 28 ++++++++++++++++ Krippenteil2/test/README | 11 +++++++ README.md | 0 16 files changed, 329 insertions(+) create mode 100644 Krippenteil1/.gitignore create mode 100644 Krippenteil1/.vscode/extensions.json create mode 100644 Krippenteil1/.vscode/settings.json create mode 100644 Krippenteil1/include/README create mode 100644 Krippenteil1/lib/README create mode 100644 Krippenteil1/platformio.ini create mode 100644 Krippenteil1/src/main.cpp create mode 100644 Krippenteil1/test/README create mode 100644 Krippenteil2/.gitignore create mode 100644 Krippenteil2/.vscode/extensions.json create mode 100644 Krippenteil2/include/README create mode 100644 Krippenteil2/lib/README create mode 100644 Krippenteil2/platformio.ini create mode 100644 Krippenteil2/src/main.cpp create mode 100644 Krippenteil2/test/README create mode 100644 README.md diff --git a/Krippenteil1/.gitignore b/Krippenteil1/.gitignore new file mode 100644 index 0000000..89cc49c --- /dev/null +++ b/Krippenteil1/.gitignore @@ -0,0 +1,5 @@ +.pio +.vscode/.browse.c_cpp.db* +.vscode/c_cpp_properties.json +.vscode/launch.json +.vscode/ipch diff --git a/Krippenteil1/.vscode/extensions.json b/Krippenteil1/.vscode/extensions.json new file mode 100644 index 0000000..080e70d --- /dev/null +++ b/Krippenteil1/.vscode/extensions.json @@ -0,0 +1,10 @@ +{ + // See http://go.microsoft.com/fwlink/?LinkId=827846 + // for the documentation about the extensions.json format + "recommendations": [ + "platformio.platformio-ide" + ], + "unwantedRecommendations": [ + "ms-vscode.cpptools-extension-pack" + ] +} diff --git a/Krippenteil1/.vscode/settings.json b/Krippenteil1/.vscode/settings.json new file mode 100644 index 0000000..691a8f6 --- /dev/null +++ b/Krippenteil1/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "C_Cpp.errorSquiggles": "Disabled" +} \ No newline at end of file diff --git a/Krippenteil1/include/README b/Krippenteil1/include/README new file mode 100644 index 0000000..194dcd4 --- /dev/null +++ b/Krippenteil1/include/README @@ -0,0 +1,39 @@ + +This directory is intended for project header files. + +A header file is a file containing C declarations and macro definitions +to be shared between several project source files. You request the use of a +header file in your project source file (C, C++, etc) located in `src` folder +by including it, with the C preprocessing directive `#include'. + +```src/main.c + +#include "header.h" + +int main (void) +{ + ... +} +``` + +Including a header file produces the same results as copying the header file +into each source file that needs it. Such copying would be time-consuming +and error-prone. With a header file, the related declarations appear +in only one place. If they need to be changed, they can be changed in one +place, and programs that include the header file will automatically use the +new version when next recompiled. The header file eliminates the labor of +finding and changing all the copies as well as the risk that a failure to +find one copy will result in inconsistencies within a program. + +In C, the usual convention is to give header files names that end with `.h'. +It is most portable to use only letters, digits, dashes, and underscores in +header file names, and at most one dot. + +Read more about using header files in official GCC documentation: + +* Include Syntax +* Include Operation +* Once-Only Headers +* Computed Includes + +https://gcc.gnu.org/onlinedocs/cpp/Header-Files.html diff --git a/Krippenteil1/lib/README b/Krippenteil1/lib/README new file mode 100644 index 0000000..6debab1 --- /dev/null +++ b/Krippenteil1/lib/README @@ -0,0 +1,46 @@ + +This directory is intended for project specific (private) libraries. +PlatformIO will compile them to static libraries and link into executable file. + +The source code of each library should be placed in a an own separate directory +("lib/your_library_name/[here are source files]"). + +For example, see a structure of the following two libraries `Foo` and `Bar`: + +|--lib +| | +| |--Bar +| | |--docs +| | |--examples +| | |--src +| | |- Bar.c +| | |- Bar.h +| | |- library.json (optional, custom build options, etc) https://docs.platformio.org/page/librarymanager/config.html +| | +| |--Foo +| | |- Foo.c +| | |- Foo.h +| | +| |- README --> THIS FILE +| +|- platformio.ini +|--src + |- main.c + +and a contents of `src/main.c`: +``` +#include +#include + +int main (void) +{ + ... +} + +``` + +PlatformIO Library Dependency Finder will find automatically dependent +libraries scanning project source files. + +More information about PlatformIO Library Dependency Finder +- https://docs.platformio.org/page/librarymanager/ldf.html diff --git a/Krippenteil1/platformio.ini b/Krippenteil1/platformio.ini new file mode 100644 index 0000000..fa90087 --- /dev/null +++ b/Krippenteil1/platformio.ini @@ -0,0 +1,14 @@ +; PlatformIO Project Configuration File +; +; Build options: build flags, source filter +; Upload options: custom upload port, speed and extra flags +; Library options: dependencies, extra library storages +; Advanced options: extra scripting +; +; Please visit documentation for the other options and examples +; https://docs.platformio.org/page/projectconf.html + +[env:nano_every] +platform = atmelmegaavr +board = nano_every +framework = arduino diff --git a/Krippenteil1/src/main.cpp b/Krippenteil1/src/main.cpp new file mode 100644 index 0000000..008aa0f --- /dev/null +++ b/Krippenteil1/src/main.cpp @@ -0,0 +1,48 @@ +#include + +int PWMPin1 = 3; +int PWMPin2 = 5; +int PWMPin3 = 6; +int PWMPin4 = 9; +int PWMPin5 = 10; + +int DigiPin1 = 2; +int DigiPin2 = 4; +int DigiPin3 = 7; +int DigiPin4 = 8; +int DigiPin5 = 11; + +void setup() { + PinMode(PWMPin1, OUTPUT); + PinMode(PWMPin2, OUTPUT); + PinMode(PWMPin3, OUTPUT); + PinMode(PWMPin4, OUTPUT); + PinMode(PWMPin5, OUTPUT); + + PinMode(DigiPin1, OUTPUT); + PinMode(DigiPin2, OUTPUT); + PinMode(DigiPin3, OUTPUT); + PinMode(DigiPin4, OUTPUT); + PinMode(DigiPin5, OUTPUT); +} + +void loop() { + analogWrite(DigiPin1, 255); + analogWrite(DigiPin2, 255); + analogWrite(DigiPin3, 255); + analogWrite(DigiPin4, 255); + analogWrite(DigiPin5, 255); + // Aus irgendeinem Grund waren bei DigitalWrite die LEDs nur stark gedimmt + + + analogWrite(PWMPin1, random(140)+100); + delay(random(200)); + analogWrite(PWMPin2, random(140)+100); + delay(random(200)); + analogWrite(PWMPin3, random(140)+100); + delay(random(200)); + analogWrite(PWMPin4, random(140)+100); + delay(random(200)); + analogWrite(PWMPin5, random(140)+100); + delay(random(200)); +} diff --git a/Krippenteil1/test/README b/Krippenteil1/test/README new file mode 100644 index 0000000..9b1e87b --- /dev/null +++ b/Krippenteil1/test/README @@ -0,0 +1,11 @@ + +This directory is intended for PlatformIO Test Runner and project tests. + +Unit Testing is a software testing method by which individual units of +source code, sets of one or more MCU program modules together with associated +control data, usage procedures, and operating procedures, are tested to +determine whether they are fit for use. Unit testing finds problems early +in the development cycle. + +More information about PlatformIO Unit Testing: +- https://docs.platformio.org/en/latest/advanced/unit-testing/index.html diff --git a/Krippenteil2/.gitignore b/Krippenteil2/.gitignore new file mode 100644 index 0000000..89cc49c --- /dev/null +++ b/Krippenteil2/.gitignore @@ -0,0 +1,5 @@ +.pio +.vscode/.browse.c_cpp.db* +.vscode/c_cpp_properties.json +.vscode/launch.json +.vscode/ipch diff --git a/Krippenteil2/.vscode/extensions.json b/Krippenteil2/.vscode/extensions.json new file mode 100644 index 0000000..080e70d --- /dev/null +++ b/Krippenteil2/.vscode/extensions.json @@ -0,0 +1,10 @@ +{ + // See http://go.microsoft.com/fwlink/?LinkId=827846 + // for the documentation about the extensions.json format + "recommendations": [ + "platformio.platformio-ide" + ], + "unwantedRecommendations": [ + "ms-vscode.cpptools-extension-pack" + ] +} diff --git a/Krippenteil2/include/README b/Krippenteil2/include/README new file mode 100644 index 0000000..194dcd4 --- /dev/null +++ b/Krippenteil2/include/README @@ -0,0 +1,39 @@ + +This directory is intended for project header files. + +A header file is a file containing C declarations and macro definitions +to be shared between several project source files. You request the use of a +header file in your project source file (C, C++, etc) located in `src` folder +by including it, with the C preprocessing directive `#include'. + +```src/main.c + +#include "header.h" + +int main (void) +{ + ... +} +``` + +Including a header file produces the same results as copying the header file +into each source file that needs it. Such copying would be time-consuming +and error-prone. With a header file, the related declarations appear +in only one place. If they need to be changed, they can be changed in one +place, and programs that include the header file will automatically use the +new version when next recompiled. The header file eliminates the labor of +finding and changing all the copies as well as the risk that a failure to +find one copy will result in inconsistencies within a program. + +In C, the usual convention is to give header files names that end with `.h'. +It is most portable to use only letters, digits, dashes, and underscores in +header file names, and at most one dot. + +Read more about using header files in official GCC documentation: + +* Include Syntax +* Include Operation +* Once-Only Headers +* Computed Includes + +https://gcc.gnu.org/onlinedocs/cpp/Header-Files.html diff --git a/Krippenteil2/lib/README b/Krippenteil2/lib/README new file mode 100644 index 0000000..6debab1 --- /dev/null +++ b/Krippenteil2/lib/README @@ -0,0 +1,46 @@ + +This directory is intended for project specific (private) libraries. +PlatformIO will compile them to static libraries and link into executable file. + +The source code of each library should be placed in a an own separate directory +("lib/your_library_name/[here are source files]"). + +For example, see a structure of the following two libraries `Foo` and `Bar`: + +|--lib +| | +| |--Bar +| | |--docs +| | |--examples +| | |--src +| | |- Bar.c +| | |- Bar.h +| | |- library.json (optional, custom build options, etc) https://docs.platformio.org/page/librarymanager/config.html +| | +| |--Foo +| | |- Foo.c +| | |- Foo.h +| | +| |- README --> THIS FILE +| +|- platformio.ini +|--src + |- main.c + +and a contents of `src/main.c`: +``` +#include +#include + +int main (void) +{ + ... +} + +``` + +PlatformIO Library Dependency Finder will find automatically dependent +libraries scanning project source files. + +More information about PlatformIO Library Dependency Finder +- https://docs.platformio.org/page/librarymanager/ldf.html diff --git a/Krippenteil2/platformio.ini b/Krippenteil2/platformio.ini new file mode 100644 index 0000000..96febe7 --- /dev/null +++ b/Krippenteil2/platformio.ini @@ -0,0 +1,14 @@ +; PlatformIO Project Configuration File +; +; Build options: build flags, source filter +; Upload options: custom upload port, speed and extra flags +; Library options: dependencies, extra library storages +; Advanced options: extra scripting +; +; Please visit documentation for the other options and examples +; https://docs.platformio.org/page/projectconf.html + +[env:nanoatmega328] +platform = atmelavr +board = nanoatmega328 +framework = arduino diff --git a/Krippenteil2/src/main.cpp b/Krippenteil2/src/main.cpp new file mode 100644 index 0000000..0648915 --- /dev/null +++ b/Krippenteil2/src/main.cpp @@ -0,0 +1,28 @@ +#include + +int PWMPin1 = 3; +int PWMPin2 = 5; +int PWMPin3 = 6; +int PWMPin4 = 9; +int PWMPin5 = 10; + +int DigiPin1 = 2; +int DigiPin2 = 4; +int DigiPin3 = 7; +int DigiPin4 = 8; +int DigiPin5 = 11; + +void setup() { + pinMode(PWMPin1, OUTPUT); + pinMode(PWMPin2, OUTPUT); + pinMode(PWMPin3, OUTPUT); +} + +void loop() { + analogWrite(PWMPin1, random(140)+100); + delay(random(200)); + analogWrite(PWMPin2, random(140)+100); + delay(random(200)); + analogWrite(PWMPin3, 255); + delay(random(200)); +} diff --git a/Krippenteil2/test/README b/Krippenteil2/test/README new file mode 100644 index 0000000..9b1e87b --- /dev/null +++ b/Krippenteil2/test/README @@ -0,0 +1,11 @@ + +This directory is intended for PlatformIO Test Runner and project tests. + +Unit Testing is a software testing method by which individual units of +source code, sets of one or more MCU program modules together with associated +control data, usage procedures, and operating procedures, are tested to +determine whether they are fit for use. Unit testing finds problems early +in the development cycle. + +More information about PlatformIO Unit Testing: +- https://docs.platformio.org/en/latest/advanced/unit-testing/index.html diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29