2019-01-11 00:50:40 +00:00
|
|
|
/*
|
|
|
|
support_rotary.ino - rotary switch support for Sonoff-Tasmota
|
|
|
|
|
|
|
|
Copyright (C) 2019 Theo Arends
|
|
|
|
|
|
|
|
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 <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2019-04-05 07:41:26 +01:00
|
|
|
|
2019-01-11 00:50:40 +00:00
|
|
|
/*********************************************************************************************\
|
|
|
|
* Rotary support
|
|
|
|
\*********************************************************************************************/
|
|
|
|
|
|
|
|
unsigned long rotary_debounce = 0; // Rotary debounce timer
|
|
|
|
uint8_t rotaries_found = 0;
|
|
|
|
uint8_t rotary_state = 0;
|
|
|
|
uint8_t rotary_position = 128;
|
|
|
|
uint8_t rotary_last_position = 128;
|
|
|
|
uint8_t interrupts_in_use = 0;
|
2019-01-15 00:45:19 +00:00
|
|
|
uint8_t rotary_changed = 0;
|
2019-01-11 00:50:40 +00:00
|
|
|
|
2019-04-05 07:41:26 +01:00
|
|
|
//#define ROTARY_V1
|
|
|
|
#ifdef ROTARY_V1
|
|
|
|
|
2019-01-11 00:50:40 +00:00
|
|
|
/********************************************************************************************/
|
|
|
|
|
2019-01-15 15:11:42 +00:00
|
|
|
void update_position(void)
|
|
|
|
{
|
2019-01-11 00:50:40 +00:00
|
|
|
uint8_t s;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* https://github.com/PaulStoffregen/Encoder/blob/master/Encoder.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
s = rotary_state & 3;
|
2019-02-11 18:21:49 +00:00
|
|
|
if (digitalRead(pin[GPIO_ROT1A])) s |= 4;
|
|
|
|
if (digitalRead(pin[GPIO_ROT1B])) s |= 8;
|
2019-01-11 00:50:40 +00:00
|
|
|
switch (s) {
|
|
|
|
case 0: case 5: case 10: case 15:
|
|
|
|
break;
|
|
|
|
case 1: case 7: case 8: case 14:
|
|
|
|
rotary_position++; break;
|
|
|
|
case 2: case 4: case 11: case 13:
|
|
|
|
rotary_position--; break;
|
|
|
|
case 3: case 12:
|
|
|
|
rotary_position = rotary_position + 2; break;
|
|
|
|
default:
|
|
|
|
rotary_position = rotary_position - 2; break;
|
|
|
|
}
|
|
|
|
rotary_state = (s >> 2);
|
|
|
|
}
|
|
|
|
|
2019-05-22 09:39:37 +01:00
|
|
|
#ifndef ARDUINO_ESP8266_RELEASE_2_3_0 // Fix core 2.5.x ISR not in IRAM Exception
|
2019-05-22 12:51:33 +01:00
|
|
|
void update_rotary(void) ICACHE_RAM_ATTR;
|
2019-05-22 09:39:37 +01:00
|
|
|
#endif // ARDUINO_ESP8266_RELEASE_2_3_0
|
|
|
|
|
2019-01-15 15:11:42 +00:00
|
|
|
void update_rotary(void)
|
|
|
|
{
|
2019-02-11 18:21:49 +00:00
|
|
|
if (MI_DESK_LAMP == my_module_type){
|
2019-01-11 00:50:40 +00:00
|
|
|
if (light_power) {
|
|
|
|
update_position();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void RotaryInit(void)
|
|
|
|
{
|
|
|
|
rotaries_found = 0;
|
2019-02-11 18:21:49 +00:00
|
|
|
if ((pin[GPIO_ROT1A] < 99) && (pin[GPIO_ROT1B] < 99)) {
|
2019-01-11 00:50:40 +00:00
|
|
|
rotaries_found++;
|
2019-02-11 18:21:49 +00:00
|
|
|
pinMode(pin[GPIO_ROT1A], INPUT_PULLUP);
|
|
|
|
pinMode(pin[GPIO_ROT1B], INPUT_PULLUP);
|
2019-01-11 00:50:40 +00:00
|
|
|
|
|
|
|
// GPIO6-GPIO11 are typically used to interface with the flash memory IC on
|
|
|
|
// most esp8266 modules, so we should avoid adding interrupts to these pins.
|
|
|
|
|
2019-02-11 18:21:49 +00:00
|
|
|
if ((pin[GPIO_ROT1A] < 6) || (pin[GPIO_ROT1A] > 11)) {
|
|
|
|
attachInterrupt(digitalPinToInterrupt(pin[GPIO_ROT1A]), update_rotary, CHANGE);
|
2019-01-11 00:50:40 +00:00
|
|
|
interrupts_in_use++;
|
|
|
|
}
|
2019-02-11 18:21:49 +00:00
|
|
|
if ((pin[GPIO_ROT1B] < 6) || (pin[GPIO_ROT1B] > 11)) {
|
|
|
|
attachInterrupt(digitalPinToInterrupt(pin[GPIO_ROT1B]), update_rotary, CHANGE);
|
2019-01-11 00:50:40 +00:00
|
|
|
interrupts_in_use++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*********************************************************************************************\
|
|
|
|
* Rotary handler
|
|
|
|
\*********************************************************************************************/
|
|
|
|
|
|
|
|
void RotaryHandler(void)
|
|
|
|
{
|
|
|
|
if (interrupts_in_use < 2) {
|
|
|
|
noInterrupts();
|
|
|
|
update_rotary();
|
|
|
|
} else {
|
|
|
|
noInterrupts();
|
|
|
|
}
|
|
|
|
if (rotary_last_position != rotary_position) {
|
2019-02-11 18:21:49 +00:00
|
|
|
if (MI_DESK_LAMP == my_module_type) { // Mi Desk lamp
|
2019-01-15 00:45:19 +00:00
|
|
|
if (holdbutton[0]) {
|
|
|
|
rotary_changed = 1;
|
|
|
|
// button1 is pressed: set color temperature
|
|
|
|
int16_t t = LightGetColorTemp();
|
|
|
|
t = t + (rotary_position - rotary_last_position);
|
|
|
|
if (t < 153) {
|
|
|
|
t = 153;
|
|
|
|
}
|
|
|
|
if (t > 500) {
|
|
|
|
t = 500;
|
|
|
|
}
|
2019-03-08 14:15:42 +00:00
|
|
|
AddLog_P2(LOG_LEVEL_DEBUG, PSTR(D_LOG_APPLICATION D_CMND_COLORTEMPERATURE " %d"), rotary_position - rotary_last_position);
|
2019-01-15 00:45:19 +00:00
|
|
|
LightSetColorTemp((uint16_t)t);
|
|
|
|
} else {
|
|
|
|
int8_t d = Settings.light_dimmer;
|
|
|
|
d = d + (rotary_position - rotary_last_position);
|
|
|
|
if (d < 1) {
|
|
|
|
d = 1;
|
|
|
|
}
|
|
|
|
if (d > 100) {
|
|
|
|
d = 100;
|
|
|
|
}
|
2019-03-08 14:15:42 +00:00
|
|
|
AddLog_P2(LOG_LEVEL_DEBUG, PSTR(D_LOG_APPLICATION D_CMND_DIMMER " %d"), rotary_position - rotary_last_position);
|
2019-01-15 00:45:19 +00:00
|
|
|
|
|
|
|
LightSetDimmer((uint8_t)d);
|
|
|
|
Settings.light_dimmer = d;
|
2019-01-11 00:50:40 +00:00
|
|
|
}
|
|
|
|
}
|
2019-01-15 15:11:42 +00:00
|
|
|
rotary_last_position = 128;
|
2019-01-15 00:45:19 +00:00
|
|
|
rotary_position = 128;
|
2019-01-11 00:50:40 +00:00
|
|
|
}
|
2019-01-15 00:45:19 +00:00
|
|
|
interrupts();
|
2019-01-11 00:50:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void RotaryLoop(void)
|
|
|
|
{
|
|
|
|
if (rotaries_found) {
|
|
|
|
if (TimeReached(rotary_debounce)) {
|
2019-01-11 13:59:51 +00:00
|
|
|
SetNextTimeInterval(rotary_debounce, Settings.button_debounce); // Using button_debounce setting for this as well
|
2019-01-11 00:50:40 +00:00
|
|
|
RotaryHandler();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // ROTARY_V1
|