Will my sketch run in the UNO as nice as in the Nano?

Hi all:

My sketch reads digital and analog inputs and puts MIDI commands in the USB serial port; I wrote it for the Nano, but now I want to use it in an UNO.

As long as I don't use more than 6 analog inputs, will the code run?

The site says something about the UNO not using "the FTDI USB-to-serial driver chip. Instead, it features the Atmega16U2 (Atmega8U2 up to version R2) programmed as a USB-to-serial converter."

Will this affect the way it connects to the PC?

I'm writing the commands using Serial.write(), they are read by Hairless and then sent to the (virtual) MIDI Yoke via MyokeNT, and used by Guitar Rig.

Thanks

Will my sketch run in the UNO as nice as in the Nano?
Yes :wink:

16U2 vs FT232 vs CH430G vs etc. - the uC just sees serial data, it doesn't care where they go to/come from. The PC needs to know what's there for it's drivers, the uC doesn't matter.