This repository was archived by the owner on Jan 21, 2021. It is now read-only.
forked from letscontrolit/ArduinoEasy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_P002_ADC.ino
More file actions
63 lines (57 loc) · 2 KB
/
_P002_ADC.ino
File metadata and controls
63 lines (57 loc) · 2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
//#######################################################################################################
//#################################### Plugin 002: Analog ###############################################
//#######################################################################################################
#ifdef USES_P002
// Adapted from ESP Easy, changes:
// WebServer.arg() -> WebServer.arg()
// port selection as we have a lot of analog ports here...
#define PLUGIN_002
#define PLUGIN_ID_002 2
#define PLUGIN_NAME_002 "Analog input"
#define PLUGIN_VALUENAME1_002 "Analog"
boolean Plugin_002(byte function, struct EventStruct *event, String& string)
{
boolean success = false;
switch (function)
{
case PLUGIN_DEVICE_ADD:
{
Device[++deviceCount].Number = PLUGIN_ID_002;
Device[deviceCount].Type = DEVICE_TYPE_ANALOG;
Device[deviceCount].VType = SENSOR_TYPE_SINGLE;
Device[deviceCount].Ports = 1;
Device[deviceCount].PullUpOption = false;
Device[deviceCount].InverseLogicOption = false;
Device[deviceCount].FormulaOption = true;
Device[deviceCount].ValueCount = 1;
Device[deviceCount].SendDataOption = true;
Device[deviceCount].TimerOption = true;
Device[deviceCount].GlobalSyncOption = true;
break;
}
case PLUGIN_GET_DEVICENAME:
{
string = F(PLUGIN_NAME_002);
break;
}
case PLUGIN_GET_DEVICEVALUENAMES:
{
strcpy_P(ExtraTaskSettings.TaskDeviceValueNames[0], PSTR(PLUGIN_VALUENAME1_002));
break;
}
case PLUGIN_READ:
{
int value = analogRead(Settings.TaskDevicePort[event->TaskIndex]);
UserVar[event->BaseVarIndex] = (float)value;
String log = F("ADC : Analog port ");
log += Settings.TaskDevicePort[event->TaskIndex];
log += F(" value: ");
log += value;
addLog(LOG_LEVEL_INFO,log);
success = true;
break;
}
}
return success;
}
#endif