-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSettings.h
52 lines (49 loc) · 2.07 KB
/
Settings.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/*
* Copyright (c) 2016 Jari Saukkonen
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#ifndef SETTINGS_H
#define SETTINGS_H
#define BOARD_NAME "KOMAROOF"
#define PIN_UNUSED 46
#define PIN_ONE_WIRE_BUS 52
#define PIN_BUTTON_CLOSE 50
#define PIN_BUTTON_OPEN 48
#define PIN_BUTTON_EMERGENCYSTOP 3
#define PIN_LIMITSWITCH_OPEN 18
#define PIN_LIMITSWITCH_CLOSE 19
#define PIN_ENCODER_GATE_1 20
#define PIN_ENCODER_GATE_2 21
#define PIN_BATTERY_VOLTAGE A2
#define REFERENCE_VOLTAGE 4.987
#define BATTERY_RESISTOR_DIVISOR 3.2473
#define MOTOR_CURRENT_LIMIT_MILLIAMPS 2500
#define MOTOR_CLOSING_CURRENT_LIMIT_MILLIAMPS 2500
#define MOTOR_POLARITY -1 // Change to -1 to invert movement direction
#define FULL_SPEED 300
#define CLOSING_SPEED 100
#define ENCODER_MAX_POSITION 715 // stop opening at this encoder position
#define ENCODER_MIN_POSITION 15 // start closing tightly at this encoder position
#define ENCODER_RESET_CLOSED 0
#define ENCODER_RESET_OPEN 650
#define MAX_MOVE_DURATION 120000 // two minutes
#define RAMP_DELTA 10 // amount to change roof speed per motor tick
#endif