NTPサーバから時刻情報を取得するようにしました。
現在のテストプログラム
cpp
1//----------(中略)---------------------------------------- 2struct tm gTimeinfo; 3 4void printLocalTime() 5{ 6 //struct tm timeinfo; 7 if(!getLocalTime(&gTimeinfo)){ 8 Serial.println("Failed to obtain time"); 9 return; 10 } 11 Serial.println(&gTimeinfo, "%A, %B %d %Y %H:%M:%S"); // 12} 13
ここで得られた情報をILI9488のLCDに表示したいと思い、
cpp
1 2//----------(中略)---------------------------------------- 3 4 tft.drawCentreString(gTimeinfo[0] , 10, 100, 7); 5 tft.drawCentreString(gTimeinfo[1], 10+20, 100, 7); 6 7//----------(中略)----------------------------------------
このようにコードしてみたのですが、次のようなエラーが出ました。
(エラー内容) Arduino:1.8.12 (Windows Store 1.8.33.0) (Windows 10), ボード:"ESP32 Dev Module, Disabled, Default 4MB with spiffs (1.2MB APP/1.5MB SPIFFS), 240MHz (WiFi/BT), QIO, 80MHz, 4MB (32Mb), 921600, None" D:\mywork\esp32_ILI9488Ctl\exsamples\20200610_rtosTest\TASK_TFTScreen.ino: In function 'void timeCharClock()': TASK_TFTScreen:308:37: error: no match for 'operator[]' (operand types are 'tm' and 'int') tft.drawCentreString(gTimeinfo[0] , 10, 100, 7); ^ TASK_TFTScreen:309:37: error: no match for 'operator[]' (operand types are 'tm' and 'int') tft.drawCentreString(gTimeinfo[1], 10+20, 100, 7); ^ 「SD.h」に対して複数のライブラリが見つかりました 使用済:C:\Users\kmaeh\OneDrive\ドキュメント\ArduinoData\packages\esp32\hardware\esp32\1.0.4\libraries\SD 未使用:C:\Program Files\WindowsApps\ArduinoLLC.ArduinoIDE_1.8.33.0_x86__mdqgnx93n4wtt\libraries\SD 「WiFi.h」に対して複数のライブラリが見つかりました 使用済:C:\Users\myUser\OneDrive\ドキュメント\ArduinoData\packages\esp32\hardware\esp32\1.0.4\libraries\WiFi 未使用:C:\Program Files\WindowsApps\ArduinoLLC.ArduinoIDE_1.8.33.0_x86__mdqgnx93n4wtt\libraries\WiFi exit status 1 no match for 'operator[]' (operand types are 'tm' and 'int') 「ファイル」メニューの「環境設定」から 「より詳細な情報を表示する:コンパイル」を有効にすると より詳しい情報が表示されます。
このエラーの回避して、LCDに時刻を表示できる解決方法をご教示よろしくお願い致します。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/06/16 01:28
2020/06/16 01:28
2020/06/16 01:30
2020/06/16 02:05
2020/06/16 02:06
2020/06/16 02:06
2020/06/16 02:08