mirror of
https://github.com/thelsing/knx.git
synced 2024-12-18 19:08:18 +01:00
97 lines
1.9 KiB
C++
97 lines
1.9 KiB
C++
#include "linux_platform.h"
|
|
#include "knx/bau57B0.h"
|
|
#include "knx/group_object_table_object.h"
|
|
#include <time.h>
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
|
|
LinuxPlatform platfrom;
|
|
Bau57B0 bau(platfrom);
|
|
|
|
float currentValue = 0;
|
|
float maxValue = 0;
|
|
float minValue = RAND_MAX;
|
|
long lastsend = 0;
|
|
|
|
#define CURR bau.groupObjectTable().get(1)
|
|
#define MAX bau.groupObjectTable().get(2)
|
|
#define MIN bau.groupObjectTable().get(3)
|
|
#define RESET bau.groupObjectTable().get(4)
|
|
|
|
void measureTemp()
|
|
{
|
|
long now = platfrom.millis();
|
|
if ((now - lastsend) < 2000)
|
|
return;
|
|
|
|
lastsend = now;
|
|
int r = rand();
|
|
currentValue = (r * 1.0) / (RAND_MAX * 1.0);
|
|
currentValue *= 100 * 100;
|
|
|
|
|
|
CURR.objectWrite(currentValue);
|
|
|
|
if (currentValue > maxValue)
|
|
{
|
|
maxValue = currentValue;
|
|
MAX.objectWrite(maxValue);
|
|
}
|
|
|
|
if (currentValue < minValue)
|
|
{
|
|
minValue = currentValue;
|
|
MIN.objectWrite(minValue);
|
|
}
|
|
}
|
|
|
|
void resetCallback(GroupObject& go)
|
|
{
|
|
if (go.objectReadBool())
|
|
{
|
|
maxValue = 0;
|
|
minValue = 10000;
|
|
}
|
|
}
|
|
|
|
void appLoop()
|
|
{
|
|
if (!bau.configured())
|
|
return;
|
|
|
|
measureTemp();
|
|
}
|
|
|
|
void setup()
|
|
{
|
|
srand((unsigned int)time(NULL));
|
|
bau.readMemory();
|
|
|
|
if (bau.configured())
|
|
RESET.callback(resetCallback);
|
|
|
|
if (bau.deviceObject().induvidualAddress() == 0)
|
|
bau.deviceObject().progMode(true);
|
|
|
|
if (bau.parameters().loadState() == LS_LOADED)
|
|
{
|
|
printf("Timeout: %d\n", bau.parameters().getWord(0));
|
|
printf("Zykl. senden: %d\n", bau.parameters().getByte(2));
|
|
printf("Min/Max senden: %d\n", bau.parameters().getByte(3));
|
|
printf("Aenderung senden: %d\n", bau.parameters().getByte(4));
|
|
printf("Abgleich %d\n", bau.parameters().getByte(5));
|
|
}
|
|
bau.enabled(true);
|
|
}
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
setup();
|
|
|
|
while (1)
|
|
{
|
|
bau.loop();
|
|
appLoop();
|
|
platfrom.mdelay(100);
|
|
}
|
|
} |