mirror of https://github.com/arendst/Tasmota.git
parent
10e480bfd9
commit
3e555873f8
|
@ -32,12 +32,19 @@
|
||||||
#define SR04_MAX_SENSOR_DISTANCE 500
|
#define SR04_MAX_SENSOR_DISTANCE 500
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
enum Sr04CommsMode { SR04_MODE_NONE, // No hardware detected
|
||||||
|
SR04_MODE_TRIGGER_ECHO, // Mode 1 - Trigger and Echo connection
|
||||||
|
SR04_MODE_SER_RECEIVER, // Mode 2 - Serial receive only
|
||||||
|
SR04_MODE_SER_TRANSCEIVER, // Mode 3 - Serial transmit and receive
|
||||||
|
SR04_NOT_DETECTED }; // Not yet detected
|
||||||
|
|
||||||
#include <NewPing.h>
|
#include <NewPing.h>
|
||||||
#include <TasmotaSerial.h>
|
#include <TasmotaSerial.h>
|
||||||
|
|
||||||
struct {
|
struct {
|
||||||
uint8_t type;
|
float distance;
|
||||||
real64_t distance;
|
uint8_t valid;
|
||||||
|
uint8_t type = SR04_NOT_DETECTED;
|
||||||
} SR04;
|
} SR04;
|
||||||
|
|
||||||
NewPing* sonar = nullptr;
|
NewPing* sonar = nullptr;
|
||||||
|
@ -60,29 +67,33 @@ uint16_t Sr04TMiddleValue(uint16_t first, uint16_t second, uint16_t third) {
|
||||||
}
|
}
|
||||||
|
|
||||||
uint16_t Sr04TMode2Distance(void) {
|
uint16_t Sr04TMode2Distance(void) {
|
||||||
sonar_serial->setTimeout(300);
|
uint8_t buffer[4]; // Accomodate either 2 or 3 bytes of data
|
||||||
const char startByte = 0xff;
|
uint32_t buffer_idx = 0;
|
||||||
|
uint32_t end = millis() + 100;
|
||||||
if (!sonar_serial->find(startByte)) {
|
while (millis() < end) {
|
||||||
//DEBUG_SENSOR_LOG(PSTR("SR4: No start byte"));
|
if (sonar_serial->available() && (buffer_idx < sizeof(buffer))) {
|
||||||
return NO_ECHO;
|
buffer[buffer_idx++] = sonar_serial->read();
|
||||||
|
end = millis() + 10;
|
||||||
|
}
|
||||||
|
delay(1);
|
||||||
|
}
|
||||||
|
if (0 == SR04.type) {
|
||||||
|
AddLog(LOG_LEVEL_DEBUG, PSTR("SR4: Received '%*_H'"), buffer_idx, buffer);
|
||||||
}
|
}
|
||||||
|
|
||||||
delay(5);
|
if (buffer_idx < 2) { return 0; }
|
||||||
|
|
||||||
uint8_t crc = sonar_serial->read();
|
uint8_t crc = buffer[0]; // Read high byte
|
||||||
//read high byte
|
|
||||||
uint16_t distance = ((uint16_t)crc) << 8;
|
uint16_t distance = ((uint16_t)crc) << 8;
|
||||||
|
distance += buffer[1]; // Read low byte
|
||||||
|
|
||||||
//read low byte
|
if (buffer_idx > 2) { // US-100 serial has no CRC
|
||||||
distance += sonar_serial->read();
|
|
||||||
crc += distance & 0x00ff;
|
crc += distance & 0x00ff;
|
||||||
crc += 0x00FF;
|
crc += 0x00FF;
|
||||||
|
if (crc != buffer[3]) { // Check crc sum
|
||||||
//check crc sum
|
AddLog(LOG_LEVEL_ERROR, PSTR("SR4: Reading CRC error"));
|
||||||
if (crc != sonar_serial->read()) {
|
return 0;
|
||||||
AddLog(LOG_LEVEL_ERROR,PSTR("SR4: Reading CRC error."));
|
}
|
||||||
return NO_ECHO;
|
|
||||||
}
|
}
|
||||||
//DEBUG_SENSOR_LOG(PSTR("SR4: Distance: %d"), distance);
|
//DEBUG_SENSOR_LOG(PSTR("SR4: Distance: %d"), distance);
|
||||||
return distance;
|
return distance;
|
||||||
|
@ -95,54 +106,37 @@ uint16_t Sr04TMode3Distance() {
|
||||||
return Sr04TMode2Distance();
|
return Sr04TMode2Distance();
|
||||||
}
|
}
|
||||||
|
|
||||||
void Sr04TReading(void) {
|
|
||||||
switch (SR04.type) {
|
|
||||||
case 3:
|
|
||||||
SR04.distance = (real64_t)(Sr04TMiddleValue(Sr04TMode3Distance(), Sr04TMode3Distance(), Sr04TMode3Distance())) / 10; //convert to cm
|
|
||||||
break;
|
|
||||||
case 2:
|
|
||||||
//empty input buffer first
|
|
||||||
while(sonar_serial->available()) sonar_serial->read();
|
|
||||||
SR04.distance = (real64_t)(Sr04TMiddleValue(Sr04TMode2Distance(), Sr04TMode2Distance(), Sr04TMode2Distance())) / 10;
|
|
||||||
break;
|
|
||||||
case 1:
|
|
||||||
SR04.distance = (real64_t)(sonar->ping_median(5))/ US_ROUNDTRIP_CM;
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
SR04.distance = NO_ECHO;
|
|
||||||
}
|
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*********************************************************************************************/
|
/*********************************************************************************************/
|
||||||
|
|
||||||
void Sr04TModeDetect(void) {
|
void Sr04TModeDetect(void) {
|
||||||
|
SR04.type = SR04_MODE_NONE;
|
||||||
if (!PinUsed(GPIO_SR04_ECHO)) { return; }
|
if (!PinUsed(GPIO_SR04_ECHO)) { return; }
|
||||||
|
|
||||||
int sr04_echo_pin = Pin(GPIO_SR04_ECHO);
|
int sr04_echo_pin = Pin(GPIO_SR04_ECHO);
|
||||||
int sr04_trig_pin = (PinUsed(GPIO_SR04_TRIG)) ? Pin(GPIO_SR04_TRIG) : Pin(GPIO_SR04_ECHO); // if GPIO_SR04_TRIG is not configured use single PIN mode with GPIO_SR04_ECHO only
|
int sr04_trig_pin = (PinUsed(GPIO_SR04_TRIG)) ? Pin(GPIO_SR04_TRIG) : Pin(GPIO_SR04_ECHO); // if GPIO_SR04_TRIG is not configured use single PIN mode with GPIO_SR04_ECHO only
|
||||||
sonar_serial = new TasmotaSerial(sr04_echo_pin, sr04_trig_pin, 1);
|
sonar_serial = new TasmotaSerial(sr04_echo_pin, sr04_trig_pin, 1);
|
||||||
|
|
||||||
if (sonar_serial->begin(9600)) {
|
if (sonar_serial && sonar_serial->begin(9600)) {
|
||||||
DEBUG_SENSOR_LOG(PSTR("SR4: Detect mode"));
|
DEBUG_SENSOR_LOG(PSTR("SR4: Detect mode"));
|
||||||
|
|
||||||
if (PinUsed(GPIO_SR04_TRIG)) {
|
if (PinUsed(GPIO_SR04_TRIG)) {
|
||||||
SR04.type = (Sr04TMiddleValue(Sr04TMode3Distance(), Sr04TMode3Distance(), Sr04TMode3Distance()) != NO_ECHO) ? 3 : 1;
|
SR04.type = (Sr04TMiddleValue(Sr04TMode3Distance(), Sr04TMode3Distance(), Sr04TMode3Distance()) != 0) ? SR04_MODE_SER_TRANSCEIVER : SR04_MODE_TRIGGER_ECHO;
|
||||||
} else {
|
} else {
|
||||||
SR04.type = 2;
|
SR04.type = SR04_MODE_SER_RECEIVER;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
SR04.type = 1;
|
SR04.type = SR04_MODE_TRIGGER_ECHO;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (SR04.type < 2) {
|
if (SR04.type < SR04_MODE_SER_RECEIVER) {
|
||||||
|
if (sonar_serial) {
|
||||||
delete sonar_serial;
|
delete sonar_serial;
|
||||||
sonar_serial = nullptr;
|
sonar_serial = nullptr;
|
||||||
if (! PinUsed(GPIO_SR04_TRIG)) {
|
|
||||||
sr04_trig_pin = Pin(GPIO_SR04_ECHO); // if GPIO_SR04_TRIG is not configured use single PIN mode with GPIO_SR04_ECHO only
|
|
||||||
}
|
}
|
||||||
sonar = new NewPing(sr04_trig_pin, sr04_echo_pin, SR04_MAX_SENSOR_DISTANCE);
|
sonar = new NewPing(sr04_trig_pin, sr04_echo_pin, SR04_MAX_SENSOR_DISTANCE);
|
||||||
|
if (!sonar || !sonar->ping_median(5)) {
|
||||||
|
SR04.type = SR04_MODE_NONE;
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
if (sonar_serial->hardwareSerial()) {
|
if (sonar_serial->hardwareSerial()) {
|
||||||
ClaimSerial();
|
ClaimSerial();
|
||||||
|
@ -152,8 +146,44 @@ void Sr04TModeDetect(void) {
|
||||||
AddLog(LOG_LEVEL_INFO,PSTR("SR4: Mode %d"), SR04.type);
|
AddLog(LOG_LEVEL_INFO,PSTR("SR4: Mode %d"), SR04.type);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void Sr04TReading(void) {
|
||||||
|
if (TasmotaGlobal.uptime < 3) { return; }
|
||||||
|
|
||||||
|
if (SR04.valid) {
|
||||||
|
SR04.valid--;
|
||||||
|
} else {
|
||||||
|
SR04.distance = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
float distance;
|
||||||
|
switch (SR04.type) {
|
||||||
|
case SR04_NOT_DETECTED:
|
||||||
|
Sr04TModeDetect();
|
||||||
|
SR04.valid = (SR04.type) ? SENSOR_MAX_MISS : 0;
|
||||||
|
break;
|
||||||
|
case SR04_MODE_SER_TRANSCEIVER:
|
||||||
|
distance = (float)(Sr04TMiddleValue(Sr04TMode3Distance(), Sr04TMode3Distance(), Sr04TMode3Distance())) / 10; // Convert to cm
|
||||||
|
break;
|
||||||
|
case SR04_MODE_SER_RECEIVER:
|
||||||
|
//empty input buffer first
|
||||||
|
while(sonar_serial->available()) { sonar_serial->read(); }
|
||||||
|
distance = (float)(Sr04TMiddleValue(Sr04TMode2Distance(), Sr04TMode2Distance(), Sr04TMode2Distance())) / 10; // Convert to cm
|
||||||
|
break;
|
||||||
|
case SR04_MODE_TRIGGER_ECHO:
|
||||||
|
distance = (float)(sonar->ping_median(5)) / US_ROUNDTRIP_CM;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
distance = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (distance) {
|
||||||
|
SR04.distance = distance;
|
||||||
|
SR04.valid = SENSOR_MAX_MISS;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void Sr04Show(bool json) {
|
void Sr04Show(bool json) {
|
||||||
if (SR04.distance != 0) { // Check if read failed
|
if (SR04.valid) { // Check if read failed
|
||||||
char distance_chr[33];
|
char distance_chr[33];
|
||||||
dtostrfd(SR04.distance, 3, distance_chr);
|
dtostrfd(SR04.distance, 3, distance_chr);
|
||||||
|
|
||||||
|
@ -179,10 +209,7 @@ void Sr04Show(bool json) {
|
||||||
bool Xsns22(uint8_t function) {
|
bool Xsns22(uint8_t function) {
|
||||||
bool result = false;
|
bool result = false;
|
||||||
|
|
||||||
if (FUNC_INIT == function) {
|
if (SR04.type) {
|
||||||
Sr04TModeDetect();
|
|
||||||
}
|
|
||||||
else if (SR04.type) {
|
|
||||||
switch (function) {
|
switch (function) {
|
||||||
case FUNC_EVERY_SECOND:
|
case FUNC_EVERY_SECOND:
|
||||||
Sr04TReading();
|
Sr04TReading();
|
||||||
|
|
Loading…
Reference in New Issue