Добрый день! Первый раз использую esp8266, развел плату, уже все спаял, но SIM800 в монитор порта в ответ шлет мусор, не могу никак настроить связь, на обычной arduino nano все работало. Возможно дело в используемых пинах ESP, там читал есть нюансы у некоторых, но не до конца разобрался. Может кто нибудь подскажет что может быть… (питание SIM800 через понижающий преобразователь 4.2в, земля общая)
#include <SoftwareSerial.h>
#define TX 14 // D0 GPIO16
#define RX 16 // D5 GPIO14
SoftwareSerial SIM800(RX, TX);
void setup()
{
Serial.begin(115200);
SIM800.begin(115200);
SIM800.print("AT");
}
void loop()
{
if (SIM800.available()) // Ожидаем прихода данных (ответа) от модема...
Serial.println(SIM800.read()); // ...и выводим их в Serial
if (Serial.available()) // Ожидаем команды по Serial...
SIM800.write(Serial.read()); // ...и отправляем полученную команду модему
}
// On ESP8266:
// At 80MHz runs up 57600ps, and at 160MHz CPU frequency up to 115200bps with only negligible errors.
// Connect pin 13 to 15.
// For verification and as a example for how to use SW serial on the USB to PC connection,
// which allows the use of HW Serial on GPIO13 and GPIO15 instead, #define SWAPSERIAL below.
// Notice how the bitrates are also swapped then between RX/TX and GPIO13/GPIO15.
// Builtin debug output etc. must be stopped on HW Serial in this case, as it would interfere with the
// external communication on GPIO13/GPIO15.
/*
SoftwareSerial.h
SoftwareSerial.cpp - Implementation of the Arduino software serial for ESP8266/ESP32.
Copyright (c) 2015-2016 Peter Lerup. All rights reserved.
Copyright (c) 2018-2019 Dirk O. Kaar. All rights reserved.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/