Arduino Zero ESP8266 AT Command troubles

I've just gotten my ESP8266 all set up with my Arduino Zero, all the wires hooked up and whatnot, and according to what I've read in tutorials around the web is that I should be able to just enter AT commands into the Serial Monitor and have them ported to the ESP8266 module, with no code loaded on the Arduino. My serial monitor is set to 115200 for the baud rate, and Both NL and CR is set as well. My issue is, this isn't happening. I've tried switching the RX and TX lines back and forth, to no avail. I'm unsure what might be going on. The status LED does not flash at all, and there is no response in the Serial Monitor.

That information is only correct for boards without native USB, such as Uno, Nano, Mega. The Zero has native USB so that won't work.

You need to run a sketch on the Zero that will bridge communication between Serial (the communication with Serial Monitor via the USB cable) and Serial1 (the communication with the ESP8266. You will find such a sketch at File > Examples > 04.Communication > SerialPassthrough. You only need to change the baudrate settings in that sketch to 115200 instead of 9600:

  Serial.begin(115200);
  Serial1.begin(115200);

You need to connect the Zero's pin 0 (RX) to the TX pin on the ESP8266. You need to connect the Zero's pin 1 (TX) to the RX pin on the ESP8266. The reason for the RX-TX, TX-RX connections is that TX stands for "transmit" and RX stands for "receive".

That was exactly what I was looking for, thank you.

Got it all set up and it works like a charm!

You're welcome. I'm glad to hear it's working now. Enjoy!
Per