我需要比較傳入字符串與DS1307 RTC模塊的日期和時間。如果到達字符串的特定時間,我將觸發一個事件。 我試過使用轉換爲整數,但它不起作用。 String now_int = rtc.now();
錯誤說conversion from DateTime to non-scalar type String is requested 我如何比較日期時間用字符串?
我正在使用Java編寫一個程序,用於能夠「打勾」但能解決問題的時鐘。我認爲它與getter和setter或toString()方法有關。 計數器類 package clock;
public class Counter
{
private int _count;
private String _name;
public String getName(){return _name;}
所以我嘗試使用DS1302 RTC製作Arduino LCD實時時鐘。 它的工作原理和讀取存儲在RTC正常,但每隔一秒的時間,顯示空數據集 Here's a snapshot of the serial monitor and the sketch 的我似乎無法找到問題。 它可能來自圖書館本身,但我從視頻中看到它可以正常工作的視頻中得到它。 我在這個環境中是新的,所以任何類型的幫助非常感謝。 這是