1
所以我有一個自定義的Arduino類,我需要從無處不在的Time.h http://playground.arduino.cc/Code/time#.UxNa6_1dLoo類中獲取時間。如何從我的自定義類的現有類中調用方法(arduino)?
Device.cpp
#include <Time.h>
void Device::checkTimedEvent() {
if(hour() == hour[timedIndex]) {
Serial.println("TIME!!!!!: ");
}
}
錯誤
error: '((Device*)this)->Device::hour' cannot be used as a function
如何暴露小時(),所以Device.cpp可以用嗎?我需要做一個時間或事物的實例嗎? 謝謝
小時的定義是什麼/小時? – Paranaix
用於arduino的通用庫http://playground.arduino.cc/Code/time#.UxNa6_1dLoo – Mistergreen