0

How to I select arduino 101? I have ubuntu. enter image description here

Ubuntu User
  • 133
  • 6

2 Answers2

1

In that ancient version of the IDE? You don't.

You download and install the latest version of the IDE from the Arduino website, then use the Boards Manager to install the packages that include the Ardiuno 101.

Majenko
  • 105,851
  • 5
  • 82
  • 139
1

The default serial port it shows up in for me is ttyACM0

You can set this as your default port, so when you open the IDE with sudo arduino

~ $ vim ~/.arduino/preferences.txt

change the value for serial.port

serial.port=ttyACM0
Chris
  • 21
  • 3