Arduino IDE в Lunix Deepin

Тема в разделе "Arduino & Shields", создана пользователем Квас, 20 сен 2018.

Метки:
  1. Квас

    Квас Нуб

    Помогите! Хочу прошить Arduino Uno через Arduino IDE на Lunix Deepin. Пишет ошибку ser_open(): can't open device "/dev/ttyACM0": Permission denied lunix deepin
    Ошибка загрузки в плату
    Что делать?
     
  2. parovoZZ

    parovoZZ Гуру

    дуня с правами суперюзера запущена?
     
  3. ZAZ-965

    ZAZ-965 Гуру

    Добавить пользователя в в группу dialout
    Ofcourse you don't want to be running the arduino ide as root, so add your user to the groups tty and dialout like so:
    Код (Bash):
    sudo usermod -a -G tty yourUserName
    sudo usermod -a -G dialout yourUserName
    Log off and log on again for the changes to take effect!
     
    NikitOS, arkadyf и Квас нравится это.
  4. Квас

    Квас Нуб

    Спасибо, получилось!