Update README.md

This commit is contained in:
Vasily Davydov 2023-04-04 13:59:22 +03:00 committed by GitHub
parent 245dc43313
commit 1f2720a070
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,7 +2,7 @@
Smart Home Oil Heater is a project for Metropolia UAS course called Multidisciplinary Innovation Project.
Tasks communication:
```
Rotary: gets rotation dir --- Master --- Temp Task: gets temp
|
|
@ -10,12 +10,12 @@ Rotary: gets rotation dir --- Master --- Temp Task: gets temp
|
|
Menu Task ------------------------------------------- Heater Task
```
common struct:
```c
typedef struct {
int8_t temp_real;
} sensor_temp ;
@ -28,7 +28,7 @@ typedef struct {
typedef struct {
int8_t set_point;
} user_settings;
```
common struct communication diagram: