37 lines
1.2 KiB
C
37 lines
1.2 KiB
C
/**
|
|
* /defaults.h
|
|
* @version 1.0
|
|
* @desc Default defines
|
|
* @author Fándly Gergő Zoltán (fandlygergo@gmail.hu, systemtest.tk)
|
|
* @copy 2018 Fándly Gergő Zoltán
|
|
* License:
|
|
Firmware for the Profile F1 fertilizer machine.
|
|
Copyright (C) 2018 Fándly Gergő Zoltán
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
**/
|
|
|
|
#ifndef DEFAULTS_H_INCLUDED
|
|
#define DEFAULTS_H_INCLUDED
|
|
|
|
#define DEFAULT_MOTOR_COUNT 1
|
|
#define DEFAULT_LCD_BRIGHTNESS 255
|
|
|
|
#define STEPS_PER_ML 50 //TO BE ACCORDINGLY!!!
|
|
#define STEPS_PER_ROUND 20 //NEED SOME TWEAKING
|
|
|
|
#define TEMP_LOG_INTERVAL 15 //minutes
|
|
|
|
#endif // DEFAULTS_H_INCLUDED
|