top of page
Writer's pictureDaniel Van Nattan

Getting Started With Arduino: Configuring the IDE

So, you just finished installing the IDE! Now, to get the most out of it, you need to set it up. This is an important step in reaching the software's full potential.


Start by clicking "File", then "Preferences".


You will see a screen similar to this:


Check both the "Verbose Output" boxes to enable it to display more detailed information in the console when compiling and uploading code to your board.


Then enable all compiler warnings.


Click "OK" to exit the preferences window.


Next, click "Tools", then "Boards", and "Arduino AVR Boards". Ensure that "Arduino Uno" is selected.



Finally, click "Tools", then "Ports", and click the port your board is connected to. In this case, mine was connected to port 8.



If your port is not found in that list, please refer to the next post.


You are now ready to start programming!

1 view0 comments

Recent Posts

See All

Programming: Controlling a LED with PWM

Pulse Width Modulation (PWM) is a technique used in electronics and microcontroller programming to control the intensity or brightness of...

Programming: Implementing millis()

If you read the previous lesson, we covered the fundamentals of the millis function in general. Let's make our first millis event! Let's...

Programming: Advancing to millis()

When we wrote the blink sketch, we created something called blocking code. In effect, this means that the Arduino will perform a delay,...

Commenti


bottom of page