If you actually have one of these - http://arduino.cc/en/Main/ArduinoBoardNano - please explain where the RX0/TX1 pins are. The Nano, being 168/328 based, only has a single hardware serial port, connected to the pins marked D0RX and D1TX. You could use SoftwareSerial if you wanted additional serial IO.
dxw00d:
If you actually have one of these - http://arduino.cc/en/Main/ArduinoBoardNano - please explain where the RX0/TX1 pins are. The Nano, being 168/328 based, only has a single hardware serial port, connected to the pins marked D0RX and D1TX. You could use SoftwareSerial if you wanted additional serial IO.
Ok. It's not an official Nano, so the pins are labelled slightly differently. RX0 and TX1 are the hardware serial pins, so Serial.print() will use those pins.
So... Serial.print() is using this pins by default?
The Tx LED shouldn't blink?
Yes, Serial.print() uses those pins. No, the Tx LED should not blink. The TX LED is controlled by the USB to Serial converter, which you are not using if you are not using a USB cable.