37 lines
479 B
C++
37 lines
479 B
C++
|
/*
|
||
|
|
||
|
#include <Arduino.h>
|
||
|
|
||
|
#define AO 14 // Analog Output //
|
||
|
#define DO 13 // Digital Output //
|
||
|
#define CLK 10 // display as usual //
|
||
|
#define DIO 11
|
||
|
|
||
|
class VALUES
|
||
|
{
|
||
|
public:
|
||
|
int DigVal;
|
||
|
int AnlVal;
|
||
|
};
|
||
|
|
||
|
void setup()
|
||
|
{
|
||
|
pinMode(AO, INPUT);
|
||
|
pinMode(DO, INPUT);
|
||
|
|
||
|
Serial.begin(9600);
|
||
|
}
|
||
|
|
||
|
void loop()
|
||
|
{
|
||
|
VALUES Wert;
|
||
|
Wert.DigVal = analogRead(AO);
|
||
|
Wert.AnlVal = digitalRead(DO);
|
||
|
|
||
|
Serial.printf("Analog: %d Digital: %d\n", Wert.AnlVal, Wert.DigVal);
|
||
|
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
*/
|