Hi. I use an arduino micro. I currently have stuff working with uart1 but would like to use the usb uart node instead.
As soon as i place it, I get this error:
Begin compiling code for the board Arduino Micro
This type of error could mean that option is not supported on the board you have selected, but it might be some other issue someone else can help you with.
My friend, on the xod website there is an instruction with a sample of using uart. The problem is that boards like uno, nano, micro have only one standard uart which is used to load the program. Use the soft-uart node as in the sample and everything will work.Set a low speed (4800) and select ports that support external interrupts. I already used it in my project with nano, everything worked.
Thanks! But according to my research I need to use the usb-uart node in my project, and that is throwing an error (see my first post). I have to admit I don’t fully understand the differences, but it seems that I need USB-serial communication. It seems that soft-uart can’t communicate directly over usb, which is what I need.