Skip to content

Latest commit

 

History

History
37 lines (17 loc) · 1.44 KB

README.md

File metadata and controls

37 lines (17 loc) · 1.44 KB

Arduino

Welcome to the Arduino Project

This will be the designated repo for all the Arduino code, this is open to all users, not exclusive to only LIU CS club members. Here we'll learn how to make Microcontroller programs using, your guessed it, the arduino uno board.

bypassing linux permission: /dev/ttyACM0

$ sudo usermod -a -G dialout <linux machine username>

$ sudo chmod a+rw /dev/ttyACM0

here are some useful references: Reference notbook , Reference Page

Getting Started!

getting started page

first, you'll need the Arduino IDE, a small light weight IDE where you will be writing all of the code for the arduino. you can get the IDE HERE

bypassing linux permission: /dev/ttyACM0

$ sudo usermod -a -G dialout <linux machine username>

$ sudo chmod a+rw /dev/ttyACM0

Once everything is all set up, you'll want to check out some of the built in examples by navigating to fileexamples to see all of the nifty examples built-in to the IDE.

examples

references for the built-in examples