#プログラム
ESP32を使用してシリアル通信を試そうとしていますが、
**<ESP8266WiFi.h>**のインクルードで躓いており,先に進むことができません.
C++
1#include <ESP8266WiFi.h> 2#include <SoftwareSerial.h> 3 4static const int RXPin = 4, TXPin = 23; // ソフトシリアルのピンの指定 5SoftwareSerial ss(RXPin, TXPin, false, 256); // ソフトシリアルのオブジェクト 6 7void setup() 8{ 9 Serial.begin(115200); 10 delay(20); 11 Serial.println("\r\nGPS test"); 12 13 ss.begin(9600); // ソフトシリアルの初期化 14} 15 16void loop() 17{ 18 while (ss.available() > 0) { // ソフトシリアルに文字があるあいだ 19 Serial.write(ss.read()); // ソフトシリアルから読んで、普通のシリアルにコピーする 20 delay(0); 21 } 22}
#教えてください
上記プログラムをコンパイルすると,次のエラーが表示されてしまいまうのですが,原因が分からず困っております.
text
1ESP8266WiFi.h: No such file or directory
回答3件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/06/11 13:21
2021/06/13 23:48
2021/06/14 12:19 編集