hi guys. I am planning to user MKR1000, but I also need the USB's Serial port to see the output of data. And it looks like pin 13&14 won't work when the Serial is working with USB port. I wonder if there is any SoftwareSerial library that works with MKT1000.
First, sorry for my bad English.
pin 13&14 are controlled by serial1, not serial. (serial is for native USB)
you can use serial.begin(9600) to communicate with your PC, and
serial1.begin(9600) to other device you need.
thanks