This commit is contained in:
Torsten Ruger 2021-06-20 12:57:47 +03:00
parent cd015c8149
commit af0f794756
7 changed files with 123 additions and 0 deletions

5
fan_control/.gitignore vendored Normal file
View File

@ -0,0 +1,5 @@
.pio
.vscode/.browse.c_cpp.db*
.vscode/c_cpp_properties.json
.vscode/launch.json
.vscode/ipch

7
fan_control/.vscode/extensions.json vendored Normal file
View File

@ -0,0 +1,7 @@
{
// See http://go.microsoft.com/fwlink/?LinkId=827846
// for the documentation about the extensions.json format
"recommendations": [
"platformio.platformio-ide"
]
}

35
fan_control/README.md Normal file
View File

@ -0,0 +1,35 @@
# Testing platforio and esp
## Rationale
I notices that i have to start smaller, make test.
Also, while python was great, the library handling was (really) _bad_ .
Since PlatformIO finally allows to add code to git and share it i chose that
over plain Arduino.
And the Basic is such an unbeatable package of esp, power supply, relay and case.
Even with ce mark. So here we go...
## File structure
This whole directory is a PlatformIO project. Testing . . .
I am not sure what parts are machine specific and thus have to be left out.
## Esp
Or to be precise a SonOff Basic v1.3 is the target.
I have this wired with an UNO as a programmer according to https://www.youtube.com/watch?v=qOztsbEfg1g
This just bridges the uno and uses its usb chip to pass the programm on.
The net says a usb to TTL programmer is the "normal" way, just have not bought one.
## Code
The actual code i am trying to write will use the Basic to switch a Fan.
I will add 2 DHT22 in a case like this https://www.thingiverse.com/thing:4852992
The sketch will simply compare temeratures and switch the relay on/off

View File

@ -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

View File

@ -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:sonoff_basic]
platform = espressif8266
board = sonoff_basic
framework = arduino

12
fan_control/src/main.cpp Normal file
View File

@ -0,0 +1,12 @@
#include <Arduino.h>
void setup()
{
Serial.begin(9600);
}
void loop()
{
Serial.println("Hello world!");
delay(1000);
}

11
fan_control/test/README Normal file
View File

@ -0,0 +1,11 @@
This directory is intended for PlatformIO Unit Testing 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/page/plus/unit-testing.html