mirror of
https://github.com/anklimov/lighthub
synced 2025-12-06 19:59:50 +03:00
256 lines
6.8 KiB
C++
256 lines
6.8 KiB
C++
/* Copyright © 2017-2018 Andrey Klimov. All rights reserved.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
|
|
Homepage: http://lazyhome.ru
|
|
GIT: https://github.com/anklimov/lighthub
|
|
e-mail anklimov@gmail.com
|
|
|
|
*/
|
|
|
|
#ifndef OWIRE_DISABLE
|
|
|
|
#include "owTerm.h"
|
|
#include <Arduino.h>
|
|
#include "utils.h"
|
|
#include "options.h"
|
|
#include "main.h"
|
|
|
|
|
|
OneWire *oneWire = NULL;
|
|
|
|
DeviceAddress *term = NULL;
|
|
|
|
uint16_t *wstat = NULL;
|
|
DallasTemperature *sensors = NULL;
|
|
|
|
short si = 0;
|
|
int t_count = 0;
|
|
unsigned long owTimer = 0;
|
|
|
|
owChangedType owChanged;
|
|
|
|
bool zero(const uint8_t *addr, uint8_t len)
|
|
{
|
|
while (len--)
|
|
if (addr[len]) return false;
|
|
return true;
|
|
}
|
|
|
|
int owUpdate() {
|
|
#ifndef OWIRE_DISABLE
|
|
unsigned long finish = millis();// + OW_UPDATE_INTERVAL;
|
|
/*
|
|
if (oneWire->getError() == DS2482_ERROR_SHORT)
|
|
{
|
|
debugSerial<<F("1-wire shorted.")<<endl;
|
|
return false;
|
|
}
|
|
*/
|
|
//Serial.println(F("Searching"));
|
|
if (oneWire) oneWire->reset_search();
|
|
for (short i = 0; i < t_count; i++) wstat[i] &= ~SW_FIND; //absent
|
|
|
|
while (oneWire && oneWire->wireSearch(term[t_count]) > 0 && (t_count < t_max) && !isTimeOver(finish,millis(), OW_UPDATE_INTERVAL))//&& finish > millis())
|
|
{
|
|
short ifind = -1;
|
|
if (oneWire->crc8(term[t_count], 7) == term[t_count][7]) {
|
|
for (short i = 0; i < t_count; i++)
|
|
if (!memcmp(term[i], term[t_count], 8)) {
|
|
ifind = i;
|
|
wstat[i] |= SW_FIND;
|
|
debugSerial.print(F(" Node:"));
|
|
PrintBytes(term[t_count], 8,0);
|
|
debugSerial.println(F(" alive"));
|
|
break;
|
|
}; //alive
|
|
if (ifind < 0 && sensors && !zero(term[t_count],8))
|
|
{
|
|
wstat[t_count] = SW_FIND; //Newly detected
|
|
debugSerial<<F("dev#")<<t_count<<F(" Addr:");
|
|
PrintBytes(term[t_count], 8,0);
|
|
debugSerial.println();
|
|
if (term[t_count][0] == 0x28) {
|
|
sensors->setResolution(term[t_count], TEMPERATURE_PRECISION);
|
|
#ifdef DS2482_100_I2C_TO_1W_BRIDGE
|
|
oneWire->setStrongPullup();
|
|
#endif
|
|
// sensors.requestTemperaturesByAddress(term[t_count]);
|
|
}
|
|
t_count++;
|
|
}
|
|
}//if
|
|
} //while
|
|
|
|
debugSerial<<F("1-wire count: ")<<t_count<<endl;
|
|
#endif
|
|
return true;
|
|
}
|
|
|
|
|
|
int owSetup(owChangedType owCh) {
|
|
#ifndef OWIRE_DISABLE
|
|
//// todo - move memory allocation to here
|
|
if (oneWire) return true; // Already initialized
|
|
#ifdef DS2482_100_I2C_TO_1W_BRIDGE
|
|
debugSerial<<F("DS2482_100_I2C_TO_1W_BRIDGE init")<<endl;
|
|
debugSerial<<F("Free:")<<freeRam()<<endl;
|
|
oneWire = new OneWire;
|
|
#else
|
|
debugSerial.print(F("One wire setup on PIN:"));
|
|
debugSerial.println(QUOTE(USE_1W_PIN));
|
|
oneWire = new OneWire (USE_1W_PIN);
|
|
#endif
|
|
|
|
if (!oneWire)
|
|
{
|
|
errorSerial<<F("Error 1-w init #1")<<endl;
|
|
return false;
|
|
}
|
|
// Pass our oneWire reference to Dallas Temperature.
|
|
// sensors = new DallasTemperature(oneWire);
|
|
|
|
term = new DeviceAddress[t_max];
|
|
debugSerial<<F("Term. Free:")<<freeRam()<<endl;
|
|
//regs = new int [t_max];
|
|
wstat = new uint16_t[t_max];
|
|
debugSerial<<F("wstat. Free:")<<freeRam()<<endl;
|
|
if (!term || ! wstat)
|
|
{
|
|
errorSerial<<F("Error 1-w init #2 Free:")<<freeRam()<<endl;
|
|
return false;
|
|
}
|
|
|
|
owChanged = owCh;
|
|
|
|
#ifdef DS2482_100_I2C_TO_1W_BRIDGE
|
|
Wire.begin();
|
|
if (oneWire->checkPresence()) {
|
|
debugSerial.println(F("DS2482-100 present"));
|
|
oneWire->deviceReset();
|
|
#ifdef APU_OFF
|
|
debugSerial.println(F("APU off"));
|
|
#else
|
|
oneWire->setActivePullup();
|
|
#endif
|
|
|
|
debugSerial.println(F("\tChecking for 1-Wire devices..."));
|
|
if (oneWire->wireReset())
|
|
debugSerial.println(F("\tReset done"));
|
|
return true;
|
|
}
|
|
debugSerial.println(F("\tDS2482 error"));
|
|
return false;
|
|
#else
|
|
// software driver
|
|
oneWire->reset();
|
|
delay(500);
|
|
return true;
|
|
#endif //DS2482-100
|
|
|
|
#endif //1w is not disabled
|
|
return false;
|
|
}
|
|
|
|
|
|
int sensors_loop(void) {
|
|
#ifdef DS2482_100_I2C_TO_1W_BRIDGE
|
|
if (oneWire->getError() == DS2482_ERROR_SHORT)
|
|
{
|
|
debugSerial<<F("1-wire shorted")<<endl;
|
|
oneWire->wireReset();
|
|
return 10000;
|
|
}
|
|
#endif
|
|
|
|
if (!sensors)
|
|
{
|
|
// Setup sensors library and resolution
|
|
sensors = new DallasTemperature(oneWire);
|
|
sensors->begin();
|
|
// IC Default 9 bit. If you have troubles consider upping it 12. Ups the delay giving the IC more time to process the temperature measurement
|
|
for (short i = 0; i < t_count; i++) sensors->setResolution(term[i],TEMPERATURE_PRECISION);
|
|
sensors->setWaitForConversion(false);
|
|
}
|
|
|
|
if (si >= t_count) {
|
|
owUpdate(); //every check circle - scan for new devices
|
|
si = 0;
|
|
return 8000;
|
|
}
|
|
|
|
float t;
|
|
switch (term[si][0]) {
|
|
|
|
case 0x28: // Thermomerer
|
|
t = sensors->getTempC(term[si]);//*10.0;
|
|
if (owChanged) owChanged(si, term[si], t);
|
|
sensors->requestTemperaturesByAddress(term[si]);
|
|
si++;
|
|
return 2500;
|
|
|
|
// default
|
|
// return sensors_ext();
|
|
} //switch
|
|
|
|
|
|
si++;
|
|
return check_circle;
|
|
|
|
}
|
|
|
|
|
|
void owLoop() {
|
|
//if (millis() >= owTimer) owTimer = millis() + sensors_loop();
|
|
if (isTimeOver(owTimer,millis(),INTERVAL_1W))
|
|
{
|
|
sensors_loop();
|
|
owTimer=millis();
|
|
}
|
|
}
|
|
|
|
|
|
int owFind(DeviceAddress addr) {
|
|
for (short i = 0; i < t_count; i++) if (!memcmp(term[i], addr, 8)) return i;//find
|
|
return -1;
|
|
}
|
|
|
|
void owAdd(DeviceAddress addr) {
|
|
#ifndef OWIRE_DISABLE
|
|
infoSerial<<F("dev#")<<t_count<<F(" Addr:");
|
|
PrintBytes(term[t_count], 8,0);
|
|
infoSerial<<endl;
|
|
|
|
if (t_count>=t_max) return;
|
|
if (zero(term[t_count],8)) return;
|
|
|
|
wstat[t_count] = SW_FIND; //Newly detected
|
|
memcpy(term[t_count], addr, 8);
|
|
|
|
|
|
#ifdef DS2482_100_I2C_TO_1W_BRIDGE
|
|
if (term[t_count][0] == 0x28)
|
|
oneWire->setStrongPullup();
|
|
#endif
|
|
t_count++;
|
|
#endif
|
|
}
|
|
#endif
|
|
|
|
void setupOwIdle (void (*ptr)())
|
|
{
|
|
#ifdef DS2482_100_I2C_TO_1W_BRIDGE
|
|
if (oneWire) oneWire->idle(ptr);
|
|
#endif
|
|
}
|