-
Notifications
You must be signed in to change notification settings - Fork 5
/
I2CStepper.h
199 lines (178 loc) · 6.9 KB
/
I2CStepper.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
#include "HardwareSerial.h"
#ifndef __SAMOVAR_I2CSTEPPER_H_
#define __SAMOVAR_I2CSTEPPER_H_
// Настройки для шагового двигателя
#define STEPPER_I2C_MS 2
#define STEPPER_I2C_STEPS (200 * STEPPER_I2C_MS) //количество шагов, 200 x MS
//#define STEPPER_I2C_MAX_SPEED 1200
#ifndef I2CStepperStepMl
#define I2CStepperStepMl 16000 //количество шагов на мл для I2CStepper
#endif
#include <Arduino.h>
#include <Wire.h>
#include "Samovar.h"
void stopService(void);
void startService(void);
bool set_stepper_target(uint16_t spd, uint8_t direction, uint32_t target);
uint16_t get_stepper_speed(void);
float get_liquid_volume_by_step(float StepCount);
float get_liquid_rate_by_step(int StepperSpeed);
float get_speed_from_rate(float volume_per_hour);
uint8_t check_I2C_device(uint8_t address) {
if (xSemaphoreTake(xI2CSemaphore, (TickType_t)(1000 / portTICK_RATE_MS)) == pdTRUE) {
Wire.beginTransmission(address);
int r = Wire.endTransmission();
xSemaphoreGive(xI2CSemaphore);
return (r == 0) ? address : 0;
} else {
return 255;
}
}
// spd direction target transaction
//uint8_t I2CStepper_arr[2 + 1 + 5 + 1 = 9]
//spd - скорость в оборотах в минуту, direction - прямое или обратное направление, time - время включения двигателя в секундах
bool set_stepper_by_time(uint16_t spd, uint8_t direction, uint16_t time) {
if (!use_I2C_dev) {
return false;
}
return set_stepper_target(spd * STEPPER_I2C_STEPS / 60, direction, time * spd * STEPPER_I2C_STEPS / 60);
}
//Получаем объем отбора
float i2c_get_liquid_volume_by_step(int StepCount) {
if (!use_I2C_dev) {
return get_liquid_volume_by_step(StepCount);
}
return (I2CStepperStepMl > 0) ? static_cast<float>(StepCount) / I2CStepperStepMl : 0;
}
//Получаем скорость отбора
float i2c_get_liquid_rate_by_step(int StepperSpeed) {
if (!use_I2C_dev) {
return get_liquid_rate_by_step(StepperSpeed);
}
return round(i2c_get_liquid_volume_by_step(StepperSpeed) * 3.6 * 1000) / 1000.0;
}
float i2c_get_speed_from_rate(float volume_per_hour) {
if (!use_I2C_dev) {
return get_speed_from_rate(volume_per_hour);
}
float v = round(I2CStepperStepMl * volume_per_hour * 1000 / 3.6) / 1000.0;
return (v < 1) ? 1 : v;
}
float i2c_get_liquid_volume() {
if (!use_I2C_dev) {
return get_liquid_volume_by_step(get_stepper_speed());
} else {
return i2c_get_liquid_volume_by_step(get_stepper_speed());
}
}
//spd - скорость в шагах в секунду, direction - прямое или обратное направление, target - количество шагов
bool set_stepper_target(uint16_t spd, uint8_t direction, uint32_t target) {
bool result = false;
I2CStepperSpeed = spd;
if (!use_I2C_dev) {
CurrrentStepperSpeed = spd;
stopService();
if (spd > 0) {
CurrrentStepperSpeed = spd;
stepper.setMaxSpeed(spd);
stepper.setCurrent(0);
stepper.setTarget(target);
//stepper.setSpeed(spd);
startService();
} else {
stopService();
stepper.brake();
stepper.disable();
stepper.setCurrent(0);
stepper.setTarget(0);
}
return true;
} else {
if (xSemaphoreTake(xI2CSemaphore, (TickType_t)(1000 / portTICK_RATE_MS)) == pdTRUE) {
I2C2.writeByte(use_I2C_dev, 8, 1);
I2C2.writeByte(use_I2C_dev, 0, spd >> 8);
I2C2.writeByte(use_I2C_dev, 1, spd);
I2C2.writeByte(use_I2C_dev, 2, direction);
I2C2.writeByte(use_I2C_dev, 3, target >> 24);
I2C2.writeByte(use_I2C_dev, 4, target >> 16);
I2C2.writeByte(use_I2C_dev, 5, target >> 8);
I2C2.writeByte(use_I2C_dev, 6, target);
I2C2.writeByte(use_I2C_dev, 8, 0);
xSemaphoreGive(xI2CSemaphore);
result = true;
} else {
return false;
}
}
return result;
}
uint16_t get_stepper_speed(void) {
if (!use_I2C_dev) {
return CurrrentStepperSpeed;
}
if (xSemaphoreTake(xI2CSemaphore, (TickType_t)(1000 / portTICK_RATE_MS)) == pdTRUE) {
//Читаем скорость
uint16_t rest = (static_cast<uint32_t>(I2C2.readByte(use_I2C_dev, 0)) << 8) |
static_cast<uint32_t>(I2C2.readByte(use_I2C_dev, 1)); // Считываем младший байт значения скорости, добавляя его значение к ранее полученному старшему байту
xSemaphoreGive(xI2CSemaphore);
I2CStepperSpeed = rest;
return I2CStepperSpeed;
}
return 0xFFFF;
}
uint32_t get_stepper_status(void) {
if (!use_I2C_dev) {
return stepper.getTarget();
}
if (xSemaphoreTake(xI2CSemaphore, (TickType_t)(1000 / portTICK_RATE_MS)) == pdTRUE) {
//Читаем количество оставшихся шагов
uint32_t rest = (static_cast<uint32_t>(I2C2.readByte(use_I2C_dev, 3)) << 24) | // Считываем старший байт значения шагов, сдвигаем полученный байт на 32 бит влево, т.к. он старший
(static_cast<uint32_t>(I2C2.readByte(use_I2C_dev, 4)) << 16) |
(static_cast<uint32_t>(I2C2.readByte(use_I2C_dev, 5)) << 8) |
static_cast<uint32_t>(I2C2.readByte(use_I2C_dev, 6)); // Считываем младший байт значения шагов, добавляя его значение к ранее полученному старшему байту
xSemaphoreGive(xI2CSemaphore);
return rest;
}
return 0xFFFFFFFF;
}
bool set_mixer_pump_target(uint8_t on) {
if (!use_I2C_dev) return false;
if (xSemaphoreTake(xI2CSemaphore, (TickType_t)(1000 / portTICK_RATE_MS)) == pdTRUE) {
uint8_t b = I2C2.readByte(use_I2C_dev, 7);
bitWrite(b, 0, on);
I2C2.writeByte(use_I2C_dev, 7, b);
xSemaphoreGive(xI2CSemaphore);
return true;
}
return false;
}
uint8_t get_mixer_pump_status(void) {
if (!use_I2C_dev) return 0xFF;
if (xSemaphoreTake(xI2CSemaphore, (TickType_t)(1000 / portTICK_RATE_MS)) == pdTRUE) {
uint8_t state = bitRead(I2C2.readByte(use_I2C_dev, 7), 0);
xSemaphoreGive(xI2CSemaphore);
return state;
}
return 0xFF;
}
uint8_t get_i2c_rele_state(uint8_t r) {
if (!use_I2C_dev) return 0xFF;
if (xSemaphoreTake(xI2CSemaphore, (TickType_t)(1000 / portTICK_RATE_MS)) == pdTRUE) {
uint8_t s = I2C2.readByte(use_I2C_dev, 7);
xSemaphoreGive(xI2CSemaphore);
return bitRead(s, r - 1);
}
return 0xFF;
}
bool set_i2c_rele_state(uint8_t r, bool s) {
if (!use_I2C_dev) return false;
if (xSemaphoreTake(xI2CSemaphore, (TickType_t)(1000 / portTICK_RATE_MS)) == pdTRUE) {
uint8_t b = I2C2.readByte(use_I2C_dev, 7);
bitWrite(b, r - 1, s);
I2C2.writeByte(use_I2C_dev, 7, b);
xSemaphoreGive(xI2CSemaphore);
return true;
}
return false;
}
#endif //__SAMOVAR_I2CSTEPPER_H_