Arduino Uno vs Due - Sensors

My group is currently working with sensors on the Arduino Uno, but we are considering moving to the Arduino Due. Are there are any issues switching the sensors from the Arduino Uno to the Arduino Due? If so, how would we have to modify our code?

List of sensors we are using:

  • ADXL326 - 5V ready triple-axis accelerometer (+-16g analog out)
  • MAX31855K - Thermocouple Amplifier with 1-Wire Breakout Board + Thermocouple
  • OpenLog DataLogger
  • Adafruit Ultimate GPS v.3

If you are using native Arduino functions the code should be OK.

If you are using 3rd-party libraries, maybe, maybe not, it depends on how well supported the lib is and if it's been ported to the Due.

The other thing to look out for is the voltage, sensors that return signal levels of 5v will be an issue.


Rob