pikapython/package/PikaStdDevice/PikaStdDevice_ADC.c

30 lines
766 B
C
Raw Normal View History

2021-10-01 20:00:15 +08:00
#include "PikaStdDevice_ADC.h"
#include "BaseObj.h"
void PikaStdDevice_ADC_enable(PikaObj* self) {
2021-11-14 19:40:06 +08:00
obj_run(self, "platformEnable()");
2021-10-01 20:00:15 +08:00
}
void PikaStdDevice_ADC_init(PikaObj* self) {
obj_setStr(self, "pin", "PA0");
}
float PikaStdDevice_ADC_read(PikaObj* self) {
2021-11-14 19:40:06 +08:00
obj_run(self, "platformRead()");
2021-10-01 20:00:15 +08:00
return obj_getFloat(self, "val");
}
2021-11-14 19:40:06 +08:00
void PikaStdDevice_ADC_setPin(PikaObj* self, char *pin) {
2021-10-01 20:00:15 +08:00
obj_setStr(self, "pin", pin);
}
2021-11-14 19:40:06 +08:00
void PikaStdDevice_ADC_platformEnable(PikaObj* self) {
2021-10-01 20:00:15 +08:00
obj_setErrorCode(self, 1);
obj_setSysOut(self, "[error] platform method need to be override.");
}
2021-11-14 19:40:06 +08:00
void PikaStdDevice_ADC_platformRead(PikaObj* self) {
2021-10-01 20:00:15 +08:00
obj_setErrorCode(self, 1);
obj_setSysOut(self, "[error] platform method need to be override.");
2021-11-14 19:44:15 +08:00
}