Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
464 changes: 464 additions & 0 deletions extras/test/ButtonTests/button_tests.cpp

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions extras/test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ file(GLOB TEST_SRC
RgbwDimmerTests/*.cpp
ButtonTests/*.cpp
SuplaDeviceTests/*.cpp
CorrectionTests/*cpp
)

file(GLOB DOUBLE_SRC doubles/*.cpp)
Expand Down
30 changes: 30 additions & 0 deletions extras/test/ChannelTests/channel_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
#include <srpc_mock.h>
#include <supla/events.h>
#include <supla/actions.h>
#include <supla/correction.h>


class ActionHandlerMock : public Supla::ActionHandler {
Expand Down Expand Up @@ -481,3 +482,32 @@ TEST(ChannelTests, RgbwChannelWithLocalActions) {
ch1.setNewValue(10, 20, 30, 90, 81);
ch1.setNewValue(10, 20, 30, 90, 81);
}

TEST(ChannelTests, SetNewValueWithCorrection) {
Supla::Channel channel1;
Supla::Channel channel2;

EXPECT_DOUBLE_EQ(channel1.getValueDouble(), 0);

double pi = 3.1415;
channel1.setNewValue(pi);
EXPECT_DOUBLE_EQ(channel1.getValueDouble(), pi);

channel1.setCorrection(3);
EXPECT_DOUBLE_EQ(channel1.getValueDouble(), pi);

// Now correction should be applied
channel1.setNewValue(pi);
EXPECT_DOUBLE_EQ(channel1.getValueDouble(), pi + 3);


double e = 2.71828;

channel2.setCorrection(2, true);

channel2.setNewValue(pi, e);
EXPECT_NEAR(channel2.getValueDoubleFirst(), pi, 0.001);
EXPECT_NEAR(channel2.getValueDoubleSecond(), e + 2, 0.001); // value with correction

Supla::Correction::clear(); // cleanup
}
79 changes: 79 additions & 0 deletions extras/test/ConditionTests/on_invalid_tests.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
/*
Copyright (C) AC SOFTWARE SP. Z O.O.

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 2
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, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/

#include <gtest/gtest.h>
#include <gmock/gmock.h>

#include <supla/condition.h>
#include <supla/channel_element.h>
#include <supla/events.h>
#include <supla/actions.h>


class ActionHandlerMock : public Supla::ActionHandler {
public:
MOCK_METHOD(void, handleAction, (int, int), (override));
};


using ::testing::_;

TEST(OnInvalidTests, OnInvalidCondition) {
ActionHandlerMock ahMock;
const int action1 = 15;
const int action2 = 16;
const int action3 = 17;
const int action4 = 18;
const int action5 = 19;
const int action6 = 20;

EXPECT_CALL(ahMock, handleAction(Supla::ON_CHANGE, action3)).Times(1);
EXPECT_CALL(ahMock, handleAction(Supla::ON_CHANGE, action6)).Times(1);

Supla::ChannelElement channelElement;
auto channel = channelElement.getChannel();

auto cond = OnInvalid();
cond->setSource(channelElement);
cond->setClient(ahMock);


channel->setType(SUPLA_CHANNELTYPE_THERMOMETER);

channel->setNewValue(0.0);
// channel should be initialized to 0, so condition is not met
cond->handleAction(Supla::ON_CHANGE, action1);

// 100 is valid , nothing should happen
channel->setNewValue(100.0);
cond->handleAction(Supla::ON_CHANGE, action2);

// invalid valid, should trigger action
channel->setNewValue(-275.0);
cond->handleAction(Supla::ON_CHANGE, action3);

// it is still invalid, so nothing should happen
cond->handleAction(Supla::ON_CHANGE, action4);

// nothing should happen
channel->setNewValue(25.0);
cond->handleAction(Supla::ON_CHANGE, action5);

// invalid valid, should trigger action
channel->setNewValue(-275.0);
cond->handleAction(Supla::ON_CHANGE, action6);

}
4 changes: 2 additions & 2 deletions extras/test/ConditionTests/on_less_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ TEST(ConditionTests, handleActionTestsForDouble2) {
const int action3 = 17;

EXPECT_CALL(ahMock, handleAction(Supla::ON_CHANGE, action1));
EXPECT_CALL(ahMock, handleAction(Supla::ON_CHANGE, action3));
EXPECT_CALL(ahMock, handleAction(Supla::ON_CHANGE, action3)).Times(2);

Supla::ChannelElement channelElement;
auto channel = channelElement.getChannel();
Expand All @@ -207,7 +207,7 @@ TEST(ConditionTests, handleActionTestsForDouble2) {
channel->setNewValue(-275.0);
cond->handleAction(Supla::ON_CHANGE, action2);


// going from "invalid" to valid value meeting contidion should trigger action
channel->setNewValue(-15.01);
cond->handleAction(Supla::ON_CHANGE, action3);

Expand Down
56 changes: 56 additions & 0 deletions extras/test/CorrectionTests/correction_tests.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
/*
Copyright (C) AC SOFTWARE SP. Z O.O.

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 2
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, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/

#include <gtest/gtest.h>

#include <supla/correction.h>

using namespace Supla;

TEST(CorrectionTests, CorrectionGetCheck) {
Correction::add(5, 2.5);

EXPECT_EQ(Correction::get(5), 2.5);
EXPECT_EQ(Correction::get(5, true), 0);
EXPECT_EQ(Correction::get(1), 0);

Correction::add(1, 3.14);
EXPECT_EQ(Correction::get(1), 3.14);
EXPECT_EQ(Correction::get(5), 2.5);

Correction::clear();

EXPECT_EQ(Correction::get(1), 0);
EXPECT_EQ(Correction::get(5), 0);
}

TEST(CorrectionTests, CorrectionGetCheckForSecondary) {
Correction::add(5, 2.5, true);

EXPECT_EQ(Correction::get(5), 0);
EXPECT_EQ(Correction::get(5, true), 2.5);
EXPECT_EQ(Correction::get(1), 0);

Correction::add(1, 3.14);
EXPECT_EQ(Correction::get(1), 3.14);
EXPECT_EQ(Correction::get(5, true), 2.5);

Correction::clear();

EXPECT_EQ(Correction::get(1), 0);
EXPECT_EQ(Correction::get(5), 0);
}

95 changes: 66 additions & 29 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,25 +8,20 @@ SuplaDevice is a library for [Arduino IDE](https://www.arduino.cc/en/main/softwa

## Library installation

There are few options how to install library in Arduino IDE. Here is one example:
1. Download SuplaDevice repository as a zip file (click green "Code" button on github repository)
2. Extract downloaded zip file
3. Copy whole SuplaDevice subfolder to a location where Arduino keeps libraries (in Arduino IDE open File->Preferences and there is a sketch location folder - libraries are kept in "libraries" subfolder)
4. You should be able to open SuplaDevice exmaples in Arduino IDE
Please use library manager in Arduino IDE to install newest SuplaDevice library.

## Hardware requirements

### Arduino Mega
SuplaDevice works with Arduino Mega boards. Currently Arduino Uno is not supported because of RAM limitations. It should work on other Arduino boards with at least 8 kB of RAM.
SuplaDevice works with Arduino Mega boards. Arduino Uno is not supported because of RAM limitations. It should work on other Arduino boards with at least 8 kB of RAM.
Following network interfaces are supported:
* Ethernet Shield with W5100 chipset
* ENC28J60 (not recommended - see Supported hardware section)

Warning: WiFi shields are currently not supported
Warning: WiFi shields are currently not supported.

### ESP8266
ESP8266 boards are supported. Network connection is done via internal WiFi. Tested with ESP8266 boards 2.6.3.
Most probably it will work with other ESP8266 compatible boards.
### ESP8266 and ESP8285
ESP8266 and ESP8285 boards are supported. Network connection is done via WiFi.

### ESP32
Experimental support for ESP32 boards is provided. Some issues seen with reconnection to WiFi router which requires further analysis.
Expand All @@ -38,9 +33,9 @@ Before you start, you will need to:
2. install support for your board
3. install driver for your USB to serial converter device (it can be external device, or build in on your board)
4. make sure that communication over serial interface with your board is working (i.e. check some example Arduino application)
5. download and install this librarary by copying SuplaDevice folder into your Arduino library folder
5. download and install this librarary

Steps 1-4 are standard Arudino IDE setup procedures not related to SuplaDevice library. You can find many tutorials on Internet with detailed instructions. Tutorials doesn't have to be related in any way with Supla.
Above steps are standard Arudino IDE setup procedures not related to SuplaDevice library. You can find many tutorials on Internet with detailed instructions. Tutorials doesn't have to be related in any way with Supla.

After step 5 you should see Supla example applications in Arduino IDE examples. Select one and have fun! Example file requires adjustments before you compile them and upload to your board. Please read all comments in example and make proper adjustments.

Expand All @@ -55,7 +50,7 @@ or some other problem with network, program will stuck on initialization and wil
Second warning: UIPEthernet library is consuming few hundred of bytes of RAM memory more, compared to standard Ethernet library.

Supported network interface for ESP8266:
* There is a native WiFi controller. Include `<supla/network/esp_wifi.h>` and add `Supla::ESPWifi wifi(ssid, password);` as a global variable and provide SSID and password in constructor.
* There is a native WiFi controller. Include `<supla/network/esp_wifi.h>` and add `Supla::ESPWifi wifi(ssid, password);` as a global variable and provide SSID and password in a constructor.
Warning: by default connection with Supla server is encrypted. Default settings of SSL consumes big amount of RAM.
To disable SSL connection, use:
`wifi.enableSSL(false);`
Expand All @@ -69,21 +64,22 @@ If you specify Supla's server certificate thumbprint there will be additional ve


Supported network interface for ESP32:
* There is a native WiFi controller. Include `<supla/network/esp32_wifi.h>` and add `Supla::ESP32Wifi wifi(ssid, password);` as a global variable and provide SSID and password in constructor.
* There is a native WiFi controller. Include `<supla/network/esp_wifi.h>` and add `Supla::ESPWifi wifi(ssid, password);` as a global variable and provide SSID and password in a constructor.

### Exmaples

Each example can run on Arduino Mega, ESP8266, or ESP32 board - unless mentioned otherwise in comments. Please read comments in example files and uncomment proper library for your network interface.

SuplaSomfy - this example is not updated yet.

### Folder structure

* `supla-common` - Supla protocol definitions and structures. There are also methods to handle low level communication with Supla server, like message coding, decoding, sending and receiving. Those files are common with `supla-core` and the same code is run on multiple Supla platforms and services
* `supla/network` - implementation of network interfaces for supported boards
* `supla/sensor` - implementation of Supla sensor channels (thermometers, open/close sensors, etc.)
* `supla/storage` - implementation of persistant storage interfaces used by some Elements (i.e. keeping impulse counter data)
* `supla/control` - implementation of Supla control channels (various combinations of relays, buttons, action triggers)
* `supla/clock` - time services used in library (i.e. RTC)
* `supla/conditions` - classes that are used to check runtime dependencies between channels (i.e. turn on relay when humidity is below 40%)
* `supla/pv` - supported integrations with inverters used with photovoltaic
* `supla` - all common classes are defined in main `supla` folder. You can find there classes that create framework on which all other components work.

Some functions from above folders have dependencies to external libraries. Please check documentation included in header files.
Expand All @@ -101,9 +97,9 @@ All elements have to be constructed before `SuplaDevice.begin()` method is calle
Supla channel number is assigned to each elemement with channel in an order of creation of objects. First channel will get number 0, second 1, etc. Supla server will not accept registration of device when order of channels is changed, or some channel is removed. In such case, you should remove device from Supla Cloud and register it again from scratch.

`Element` class defines follwoing virtual methods that are called by SuplaDevice:
1. `onInit` - called first within `SuplaDevice.begin()` method. It should initialize your element.
2. `onLoadState` - called second within `SuplaDevice.begin()` method. It reads configuration data from persistent memory storage.
3. `onSaveState` - called in `SuplaDevice.iterate()` - it saves state data to persistant storage. It is not called on each iteration. `Storage` class makes sure that storing to memory does not happen to often and time delay between saves depends on implementation.
1. `onLoadState` - called first within `SuplaDevice.begin()` method. It reads configuration data from persistent memory storage.
2. `onInit` - called second within `SuplaDevice.begin()` method. It should initialize your element - all GPIO settings should be done there and proper state of channel should be set.
3. `onSaveState` - called in `SuplaDevice.iterate()` - it saves state data to persistant storage. It is not called on each iteration. `Storage` class makes sure that storing to memory does not happen too often and time delay between saves depends on implementation.
3. `iterateAlways` - called on each iteration of `SuplaDevice.iterate()` method, regardless of network/connection status. Be careful - some other methods called in `SuplaDevice.iterate()` method may block program execution for some time (even few seconds) - i.e. trying to establish connection with Supla server is blocking - in case server is not accessible, it will iterfere with `iterateAlways` method. So time critical functions should not be put here.
4. `iterateConnected` - called on each iterateion of `SuplaDevice.iterate()` method when device is connected and properly registered in Supla server. This method usually checks if there is some new data to be send to server (i.e. new temperature reading) and sends it.
5. `onTimer` - called every 10 ms after enabling in `SuplaDevice.begin()`
Expand Down Expand Up @@ -203,11 +199,60 @@ All channels from old version of library should be removed and created again in

## Supported channels
### Sensors
Sensor category is for all elements/channels that reads something and provides data to Supla serwer.

Sensor category is for all elements/channels that reads something and provides data to Supla server. All sensors are in `Supla::Sensor` namespace:

* `Binary` - two state sensor: on/off, enabled/disabled, open/closesd, etc. It reads GPIO state: LOW/HIGH
* `VirtualBinary` - similar to `Binary` but it use settable variable in memory to show state
* `Thermometer` - base class for thermometer sensors
* `DS18B20` - DS18B20 thermometer
* `Si7021` - S17021 thermometer
* `Si7021Sonoff` - Si7021 thermometer for Sonoff
* `MAX6675_K` - MAX6675_K thermometer
* `ThermHygroMeter` - base class for sensors capable of measuring temperature and humidity
* `DHT` - DHT11 and DHT22 support
* `SHT3x` - SHT3x support
* `ThermHygroPressMeter` - base class for sensors capable of measuring temperature, humidity, and pressure
* `BME280` - BME280 support
* `Distance` - base class for distance sensors
* `HC_SR04` - HC_SR04 distance meter
* `Pressure` - base class for presure meters
* `Wind` - base class for wind meters (speed)
* `Rain` - base class for rain meters
* `Weight` - base class for weight meters
* `ImpulseCounter` - calculates impulses on a given GPIO
* `ElectricityMeter` - base class for electricity meters
* `PZEMv2` - PZEMv2 one phase electricity meter
* `PZEMv3` - PZEMv3 one phase electricity meter
* `ThreePhasePZEMv3` - 3x PZEMv3 for measuring three phases
* `EspFreeHeap` - provides free heap memory on ESP8266 as a Channel

### Control
Control category is for all elements/channels that are used to control something, i.e. relays, buttons, RGBW.
Classes in this category are in namespace `Supla::Control`:

* `BistableRelay` - SuplaDevice sends short impulses on GPIO to trigger change of bistable relay. It requires additional GPIO input to read status of relay
* `BistableRollerShutter` - Roller shutter implementation to control external roller shutter controllers that work in a similar way to bistable relays
* `Button` - allows to use button connected to GPIO to control other elements in device. Supports multiclicks, long click, etc
* `DimmerBase` - base class for dimmers
* `DimmerLeds` - PWM based implementation for dimmer
* `InternalPinOutput` - allows to control GPIO without showing it to Supla as a channel
* `LightRelay` - extension of Relay class that allows to monitor and configure lifespan of light source
* `PinStatusLed` - allows to duplicate GPIO state to another GPIO which can have connected LED to show status
* `Relay` - allows to control relay through GPIO
* `RGBBase` - base class for RGB control
* `RGBLeds` - PWM based implementation for RGB lights
* `RGBWBase` - base class for RGBW control
* `RollerShutter` - controller for roller shutters
* `SequenceButton` - extension of button which allows to trigger actions based on specific sequence/rythm
* `SimpleButton` - button that allows only press and release detection with lower memory footprint
* `VirtualRelay` - relay which keeps its state in memory and doesn't affect any GPIO

### Photovoltaic inverter
SuplaDevice provides integrations for following inverters:

* `Afore`
* `Fronius`
* `SolarEdge`

## Supported persistant memory storage
Storage class is used as an abstraction for different persistant memory devices. Some elements/channels will not work properly without storage and some will have limitted functionalities. I.e. `ImpulseCounter` requires storage to save counter value, so it could be restored after reset, or `RollerShutter` requires storage to keep openin/closing times and current shutter possition. Currently two variants of storage classes are supported.
Expand All @@ -233,14 +278,6 @@ or with SW SPI:
Supla::FramSpi fram(SCK_PIN, MISO_PIN, MOSI_PIN, FRAM_CS, SUPLA_STORAGE_OFFSET);
```

## History

Version 2.3.0


## Credits


## License


Expand Down
3 changes: 3 additions & 0 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ set(SRCS
supla/element.cpp
supla/local_action.cpp
supla/channel_element.cpp
supla/correction.cpp

supla/storage/storage.cpp

Expand All @@ -19,6 +20,7 @@ set(SRCS
supla/control/rgb_leds.cpp
supla/control/dimmer_leds.cpp
supla/control/simple_button.cpp
supla/control/button.cpp

supla/condition.cpp
supla/conditions/on_less.cpp
Expand All @@ -28,6 +30,7 @@ set(SRCS
supla/conditions/on_between.cpp
supla/conditions/on_between_eq.cpp
supla/conditions/on_equal.cpp
supla/conditions/on_invalid.cpp

SuplaDevice.cpp
supla/network/network.cpp
Expand Down
Loading