2018年2月2日金曜日

ESP8266 ES-01 めも2 stm32duino Serial1.begin(115200) esp8266.begin(9600)他

stm32duino BluePill でES-01を使うときの注意
Arduino用のsketch
https://www.elecrow.com/wiki/index.php?title=Serial_WIFI_Transceiver_Module_ESP8266
esp8266.begin(9600) は
Serial1.begin(115200) に変更
esp8266〜は皆同様
int connectionId = esp8266.read()-48;
 // subtract 48 because the read() function returns 
 // the ASCII decimal value and 0 (the first decimal number) starts at 48 は
int connectionId = Serial1.read()-10; に変更 
 
なんでじゃ
文字コードのずれが違うのか?

配線は
TX RX
PA9 PA10

0 件のコメント:

コメントを投稿