Arduino 01: Installing the Arduino Application and Firmware. Jeffrey A. Meunier University of Connecticut

Size: px
Start display at page:

Download "Arduino 01: Installing the Arduino Application and Firmware. Jeffrey A. Meunier University of Connecticut"

Transcription

1 Arduino 01: Installing the Arduino Application and Firmware Jeffrey A. Meunier University of Connecticut

2 About: How to use this document I designed these tutorial slides to be tall and narrow so that you can display them on one side of your screen while you do other work in the rest of the display area like this: Tutorial work area Also, the pages in this tutorial are designed to be viewed as whole-page slides. I describe how to do that next. 2

3 Set your PDF viewer to single page mode (Mac) On a Mac, a PDF file will open in the Preview application by default. Hide the side bar and set it to Single Page. 3

4 Set your PDF viewer to single page mode (Windows) In Windows, a PDF file will open in the Reader application by default. You can open the menu from the icon in the upper left corner of the window and then choose Split Left or Split Right depending on your preference. Then right-click on the document and choose the One page viewing option. 4

5 Introduction In this tutorial you'll install the Arduino application on your computer and use it to install a firmware file on your Arduino board. This firmware will be used for all the Arduino projects this semester. 5

6 Objectives The objectives of this tutorial are: Installation of the Arduino application. Uploading firmware to the Arduino board. Testing the firmware to ensure that it uploaded correctly and that it's running correctly. 6

7 Prerequisites You must have administrator privileges on your computer in order to install software. If you're working in one of the UConn Learning Center labs then you should skip ahead to section 2. Arduino firmware installation of this tutorial. The Learning Center computers all have the Arduino application installed already. 7

8 Outline These are the sections you'll go through in this tutorial: 1. Install the Arduino IDE 2. Upload firmware to the Arduino 3. Test the firmware 8

9 1. Arduino IDE application: About The Arduino application runs on your host computer and you use it to compile and upload programs directly to the Arduino. After you install the Arduino application, you'll use it to install firmware onto your Arduino board. You need to do this only one time. After you unplug the Arduino board from your computer it will still retain the program that you upload to it. When you plug it back into your computer the program will start running again. 9

10 1. Arduino IDE application: Identify your operating system On the next few slides I detail the installation procedure for different computer systems. Follow the instructions for your computer: Windows Mac Linux 10

11 1. Arduino IDE application: Download (Windows) Go to this web site: Scroll down to the Download the Arduino IDE section and click Windows App if you have Windows 10 only. It does not work on Windows 8 despite what it says. Otherwise choose Windows Installer. It asks for a donation, but locate the JUST DOWNLOAD link and click it. Save the file somewhere convenient on your computer. 11

12 1. Arduino IDE application: Install (Windows) After it finishes downloading you must install the application. Double-click on it to run the installer and follow the directions it gives you. Windows 10: I didn't try this in Windows 10, so I don't know if you must do the installation step or not. The download process might also be the installation process. 12

13 1. Arduino IDE application: Download (Mac) Go to this web site: Scroll down to the Download the Arduino IDE section and click Max OS X. It asks for a donation, but locate the JUST DOWNLOAD link and click it. Save the file somewhere convenient on your computer. 13

14 1. Arduino IDE application: Install (Mac) After it finishes downloading you must install the application. Double-click on the zip file that you downloaded, then move the resulting Arduino.app file into your Applications folder. 14

15 1. Arduino IDE application: Installation (Linux) Go to this web site: Scroll down to the Download the Arduino IDE section and click Linux. After it finishes downloading you must install the application. Uncompress the downloaded file, move the folder somewhere convenient, and add the folder's bin folder to your path. Good luck, I didn't try it. You could probably just do an apt install arduino to automate the whole installation process. 15

16 Outline 1. Install the Arduino IDE 2. Upload firmware to the Arduino 3. Test the firmware 16

17 2. Arduino firmware: Download the firmware All users continue here! Go to this web site: irmware/index.html Right-click on the link for ArduinoFirmware a.ino and choose Save as or Save link as. Save it in Downloads or on your Desktop. It doesn't matter where, just remember where you put it. 17

18 2. Arduino firmware Check the file extension Be sure that the firmware file that you just downloaded has the extension.ino and not.txt. If it has the extension.txt, you must rename it to delete the.txt part leaving just the.ino part. 18

19 2. Arduino firmware Don't store it in OneDrive Windows users: The Arduino application is unable to upload a.ino file to the Arduino if that file is contained in OneDrive. Save the file somewhere else before opening it in the Arduino application, like on your desktop. 19

20 2. Arduino firmware: Open the firmware file Start the Arduino application. Choose the menu File Open and locate the Arduino firmware file you just downloaded and saved. When you open the file it will show you this warning: Click OK to let it create the folder and move the file. 20

21 2. Arduino firmware: Identify your board Red board If your board looks like this then you have a RoboRED board. 21

22 2. Arduino firmware: Identify your board Blue board If your board looks like this then you have a Robo-1 board. 22

23 2. Arduino firmware: Identify your board Other If you have a board other than one of these two, then it's your responsibility to be able to identify it correctly in the Arduino application. 23

24 2. Arduino firmware: Choose the board All users continue here! In the Arduino application, choose the Tools Board menu and choose your board type from the list. RoboRED users choose Arduino/Genuino Uno. Robo-1 users choose Arduino Duemilanove or Diecimilia. Red Blue 24

25 2. Arduino firmware: Choose the port (Mac) In the Arduino application, choose the Tools Port menu and choose the name of your USB port from the list. On a Mac the port will be called /dev/cu.usbmodem1411 or /dev/tty.usbmodem1411 or something very similar (the number at the end may be different). It may not say "(Arduino/Genuino Uno)" after it. Still choose that option. 25

26 2. Arduino firmware: Choose the port (Win) In the Arduino application, choose the Tools Port menu and choose the name of your USB port from the list. If there's more than one name and you're not sure which one it is, then un-plug the Arduino, choose Tools Serial Port to see what ports are there, plug the Arduino back in and choose Tools Serial Port again to see which port is listed that wasn't there before. That's the port you should use. Remember this port name for later! 26

27 2. Arduino firmware: Choose the port (Linux) Unplug the board, do an ls /dev to see what ports are there, plug in the board, do an ls /dev again and observe what port is new. That's your port. It's probably /dev/arduino or /dev/ttyacm0. I'll try to provide more details whenever I get around to doing this again in Linux. 27

28 2. Arduino firmware: Upload the firmware file All users continue here! Press the Upload button in the Arduino application to compile & upload the program to the Arduino board. The red arrow below points at the Upload button. 28

29 2. Arduino firmware: Observe the status Success Failure See the next slide for suggestions 29

30 2. Arduino firmware: If you had a failure Some things for you to check: Is the board actually plugged into your computer? Did you choose the right board in the Arduino application? Most likely Did you choose the right serial port? Is your USB cable faulty? Swap cables with someone and check it. Is your Arduino faulty? Swap boards with someone and check it. Not likely Fix it and try again. 30

31 2. Arduino firmware: If you had a failure If you had a failure and you were not able to correct it, you must get help to correct the problem before you proceed. If you do not correct the problem then the rest of this tutorial will not work. 31

32 Outline 1. Install the Arduino IDE 2. Upload firmware to the Arduino 3. Test the firmware 32

33 3. Test the firmware: Serial monitor settings Now we'll test the firmware. Open Tools Serial Monitor. Find the settings at the bottom of the Serial Monitor window. Settings On the next slide you'll change the settings. 33

34 3. Test the firmware: Serial monitor settings The settings originally look like this: Incorrect Change them to look like this: Correct 34

35 3. Test the firmware: Enter commands Type this in the top area of the Serial Monitor and press Enter: That sets the mode of digital pin 13 to output. Then enter these two commands in the same place in the Serial Monitor: dw13,1 LED turns on dw13,0 LED turns off The on-board LED should turn on and off. 35

36 3. Test the firmware: Didn't work? You didn't do this right: The settings originally look like this: Incorrect Change them to look like this: Correct 36

37 3. Test the firmware: Upload complete The firmware has been successfully uploaded to the Arduino board. Close the Arduino application. The next time you plug in your Arduino board it will start running the firmware automatically. You do not need to upload the firmware to it again. 37

38 Outline 1. Install the Arduino IDE 2. Upload firmware to the Arduino 3. Test the firmware You're done! 38

Arduino 02: Using the Arduino with Python. Jeffrey A. Meunier University of Connecticut

Arduino 02: Using the Arduino with Python. Jeffrey A. Meunier University of Connecticut Arduino 02: Using the Arduino with Python Jeffrey A. Meunier jeffm@engr.uconn.edu University of Connecticut About: How to use this document I designed this tutorial to be tall and narrow so that you can

More information

Arduino 04: Python Arduino reference. Jeffrey A. Meunier University of Connecticut

Arduino 04: Python Arduino reference. Jeffrey A. Meunier University of Connecticut Arduino 04: Python Arduino reference Jeffrey A. Meunier jeffm@engr.uconn.edu University of Connecticut About: How to use this document I designed this tutorial to be tall and narrow so that you can read

More information

Megamark Processing 3.0 Setup Guide. Downloading and Installing Processing 3.0

Megamark Processing 3.0 Setup Guide. Downloading and Installing Processing 3.0 Megamark Processing 3.0 Setup Guide Processing is a flexible software sketchbook and a language for learning how to code within the context of the visual arts. There are tens of thousands of students,

More information

Arduino 05: Digital I/O. Jeffrey A. Meunier University of Connecticut

Arduino 05: Digital I/O. Jeffrey A. Meunier University of Connecticut Arduino 05: Digital I/O Jeffrey A. Meunier jeffm@engr.uconn.edu University of Connecticut About: How to use this document I designed this tutorial to be tall and narrow so that you can read it on one side

More information

Arduino 6: Analog I/O part 1. Jeffrey A. Meunier University of Connecticut

Arduino 6: Analog I/O part 1. Jeffrey A. Meunier University of Connecticut Arduino 6: Analog I/O part 1 Jeffrey A. Meunier jeffm@engr.uconn.edu University of Connecticut About: How to use this document I designed this tutorial to be tall and narrow so that you can read it on

More information

Arduino Micro Breadboard Laboratory Interface Processor (Micro BLIP) User Manual

Arduino Micro Breadboard Laboratory Interface Processor (Micro BLIP) User Manual Arduino Micro Breadboard Laboratory Interface Processor (Micro BLIP) MicroBLIP circuit board v2.0 Operating System v2.0.0 1/22/2019 User Manual 2 1 Setup and Operation 1.1 Introduction For the past ten

More information

SeeMeCNC Guides. Step 5: Installing the Firmware. This guide will show you how to install the firmware on your Rostock MAX v3 3D printer.

SeeMeCNC Guides. Step 5: Installing the Firmware. This guide will show you how to install the firmware on your Rostock MAX v3 3D printer. SeeMeCNC Guides Step 5: Installing the Firmware This guide will show you how to install the firmware on your Rostock MAX v3 3D printer. Written By: geneb 2016 seemecnc.dozuki.com Page 1 of 7 Step 1 Download

More information

RoastLogger Arduino/TC4 driver installation for Windows 9/10/13 By John Hannon (JackH) at Homeroasters.org

RoastLogger Arduino/TC4 driver installation for Windows 9/10/13 By John Hannon (JackH) at Homeroasters.org This procedure was written for the Arduino Uno board with the TC4 shield. Please check the Arduino site for software if you are using a different model. I have not tested it, but this procedure should

More information

Slide 1 CS 170 Java Programming 1 Duration: 00:00:49 Advance mode: Auto

Slide 1 CS 170 Java Programming 1 Duration: 00:00:49 Advance mode: Auto CS 170 Java Programming 1 Eclipse@Home Downloading, Installing and Customizing Eclipse at Home Slide 1 CS 170 Java Programming 1 Eclipse@Home Duration: 00:00:49 What is Eclipse? A full-featured professional

More information

These instructions were adapted from Arduino: Installing Standard Firmata which is licensed under Attribution- NonCommercial-ShareAlike 2.

These instructions were adapted from Arduino: Installing Standard Firmata which is licensed under Attribution- NonCommercial-ShareAlike 2. These instructions were adapted from Arduino: Installing Standard Firmata which is licensed under Attribution- NonCommercial-ShareAlike 2.5 Generic Step 1: Download and Install Arduino Application Your

More information

INSTALLING WINDOWS ON YOUR MAC USING BOOT CAMP C188 TUTORIAL Fall, 2016

INSTALLING WINDOWS ON YOUR MAC USING BOOT CAMP C188 TUTORIAL Fall, 2016 INSTALLING WINDOWS ON YOUR MAC USING BOOT CAMP C188 TUTORIAL Fall, 2016 1. Back up your computer to an external drive, and plug in your computer. You will also need a blank USB drive of at least 16GB in

More information

Elektor Uno R4 Installation & Test

Elektor Uno R4 Installation & Test Elektor Uno R4 Installation & Test Prerequisites Elektor Uno R4 USB-A to micro-b cable Computer with Windows (XP or later), Linux or OSX (10.7 or later) Arduino IDE 1.6.7 or higher (not 1.6.8) We highly

More information

Using Devices with Microsoft HealthVault

Using Devices with Microsoft HealthVault Using Devices with Microsoft HealthVault A Microsoft HealthVault Step-by-Step Guide This guide will help you get started using Microsoft HealthVault Connection Center to send information from your health

More information

How to make a Work Profile for Windows 10

How to make a Work Profile for Windows 10 How to make a Work Profile for Windows 10 Setting up a new profile for Windows 10 requires you to navigate some screens that may lead you to create the wrong type of account. By following this guide, we

More information

From using an External Harddrive, to a Google Cloud Drive; there is no one way to backup data.

From using an External Harddrive, to a Google Cloud Drive; there is no one way to backup data. Mac (OS X): Data Backup Guide 6/14/2016 Why: Backing up data should be done on a regular basis, not just when you think it is necessary, as a failure can happen at any time. While there are no set intervals

More information

Code&Drive First steps

Code&Drive First steps Code&Drive First steps Now that you have built the Code & Drive, you can set the Build&Code 4in1 board using any of the following software: Arduino IDE, Bitbloq or a visual programming software by blocks

More information

Getting Started with Energia for MSP432 LaunchPad

Getting Started with Energia for MSP432 LaunchPad May 9, 2018 Getting Started with Energia for MSP432 LaunchPad This tutorial is intended for installing and getting started with Energia for Texas Instrument SimpleLink MSP432P401R LaunchPad development

More information

Introduction. Uploading and Syncing Files. Google Drive and Docs Uploading and Syncing Files. Uploading Files to Google Drive.

Introduction. Uploading and Syncing Files. Google Drive and Docs Uploading and Syncing Files. Uploading Files to Google Drive. Google Drive and Docs Uploading and Syncing Files Introduction Page 1 Google Drive makes it easy to store and access your files online in the cloud, allowing you to access them from any computer with an

More information

ROBOTLINKING THE POWER SUPPLY LEARNING KIT TUTORIAL

ROBOTLINKING THE POWER SUPPLY LEARNING KIT TUTORIAL ROBOTLINKING THE POWER SUPPLY LEARNING KIT TUTORIAL 1 Preface About RobotLinking RobotLinking is a technology company focused on 3D Printer, Raspberry Pi and Arduino open source community development.

More information

SeeMeCNC Guides. RAMBo Control Firmware. This guide will show you how to install the firmware on your SeeMeCNC 3D printer.

SeeMeCNC Guides. RAMBo Control Firmware. This guide will show you how to install the firmware on your SeeMeCNC 3D printer. SeeMeCNC Guides RAMBo Control Firmware This guide will show you how to install the firmware on your SeeMeCNC 3D printer. Written By: geneb 2018 seemecnc.dozuki.com/ Page 1 of 10 Step 1 Download and Install

More information

Arduino IDE Friday, 26 October 2018

Arduino IDE Friday, 26 October 2018 Arduino IDE Friday, 26 October 2018 12:38 PM Looking Under The Hood Of The Arduino IDE FIND THE ARDUINO IDE DOWNLOAD First, jump on the internet with your favorite browser, and navigate to www.arduino.cc.

More information

MyNIC Team Site - Document Sharing

MyNIC Team Site - Document Sharing Table of Contents Create a Document...2 Upload a Document...3 Rename Document...4 Edit a Document...6 Check-out a Document...6 Edit a Document...7 Check-in a Document...9 Check-in Someone Else s Document...

More information

Driver Installation. Getting Started for Windows user (Setting up your Robot)

Driver Installation. Getting Started for Windows user (Setting up your Robot) Getting Started for Windows user (Setting up your Robot) Get the drivers and download the software to make your robots go! Programmer Driver Arduino Software IDE Ringo & Wink Software Libraries Driver

More information

Required software. Mac OS X In this section, you ll find instructions for downloading and configuring the Arduino IDE in Mac OS X.

Required software. Mac OS X In this section, you ll find instructions for downloading and configuring the Arduino IDE in Mac OS X. Required software You should be able to program your Arduino with just about any computer using a piece of software called an integrated development environment (IDE). To run this software, your computer

More information

OneDrive for Business

OneDrive for Business OneDrive for Business Presented by: LITS Messaging Team This document contains multiple knowledge articles related to Emory University s One Drive for Business service. Visit it.emory.edu/office365/onedrive

More information

Click Here to Begin OS X. Welcome to the OS X Basics Learning Module.

Click Here to Begin OS X. Welcome to the OS X Basics Learning Module. OS X Welcome to the OS X Basics Learning Module. This module will teach you the basic operations of the OS X operating system, found on the Apple computers in the College of Technology computer labs. The

More information

CircuitPython with Jupyter Notebooks

CircuitPython with Jupyter Notebooks CircuitPython with Jupyter Notebooks Created by Brent Rubell Last updated on 2018-08-22 04:08:47 PM UTC Guide Contents Guide Contents Overview What's a Jupyter Notebook? The Jupyter Notebook is an open-source

More information

Privacy and Security in Online Social Networks Department of Computer Science and Engineering Indian Institute of Technology, Madras

Privacy and Security in Online Social Networks Department of Computer Science and Engineering Indian Institute of Technology, Madras Privacy and Security in Online Social Networks Department of Computer Science and Engineering Indian Institute of Technology, Madras Lecture - 04 Tutorial 1, Part 1 Ubuntu Hi everyone, welcome to the first

More information

RTMS - Software Setup

RTMS - Software Setup RTMS - Software Setup These instructions are for setting up the RTMS (Robot Tracking & Management System) software. This software will run on your PC/MAC and will be used for various labs in order to allow

More information

Welcome to the Exporting a Report tutorial. In this tutorial, you will learn how to export a report as an excel spreadsheet or an Adobe PDF document.

Welcome to the Exporting a Report tutorial. In this tutorial, you will learn how to export a report as an excel spreadsheet or an Adobe PDF document. Slide 1 - Slide 1 Welcome to the Exporting a Report tutorial. In this tutorial, you will learn how to export a report as an excel spreadsheet or an Adobe PDF document. 1 of 20 11/22/2006 Slide 2 - Slide

More information

Course: Google Drive Episode: Introduction. Note-Taking Guide

Course: Google Drive Episode: Introduction. Note-Taking Guide Episode: Introduction ü This course is designed to provide you with the skills needed for using the system called Google Drive. ü Google Drive is a resource that can be used on your,, or. ü When you sign

More information

Barchard Introduction to SPSS Marks

Barchard Introduction to SPSS Marks Barchard Introduction to SPSS 21.0 3 Marks Purpose The purpose of this assignment is to introduce you to SPSS, the most commonly used statistical package in the social sciences. You will create a new data

More information

My Digital Downloader Instruction Guide *WINDOWS*

My Digital Downloader Instruction Guide *WINDOWS* My Digital Downloader Instruction Guide *WINDOWS* My Digital Downloader is a desktop application to help you manage the download of your audio content. Without My Digital Downloader, when you download

More information

Intel Do-It-Yourself Challenge Lab 1: Intel Galileo s Arduino side Nicolas Vailliet

Intel Do-It-Yourself Challenge Lab 1: Intel Galileo s Arduino side Nicolas Vailliet Intel Do-It-Yourself Challenge Lab 1: Intel Galileo s Arduino side Nicolas Vailliet www.intel-software-academic-program.com paul.guermonprez@intel.com Intel Software 2014-02-01 Prerequisites and objectives

More information

IRONKEY D300S SECURE USB 3.0 FLASH DRIVE

IRONKEY D300S SECURE USB 3.0 FLASH DRIVE IRONKEY D300S SECURE USB 3.0 FLASH DRIVE User Guide Document No. 48000130-001.A01 D300S Page 1 of 27 Table of Contents About This Manual... 3 System Requirements...3 Recommendations...3 Setup (Windows

More information

Quick Start Instructions for Using Postage $aver for Parcels for Mac with Filemaker Pro files

Quick Start Instructions for Using Postage $aver for Parcels for Mac with Filemaker Pro files Quick Start Instructions for Using Postage $aver for Parcels for Mac with Filemaker Pro files Installing the Postage $aver for Parcels Demo When you downloaded the Postage $aver for Parcels demo from our

More information

Scratch 2.0 Wireless Programming Guide for Vortex

Scratch 2.0 Wireless Programming Guide for Vortex Scratch 2.0 Wireless Programming Guide for Vortex DF4Scratch Service Vortex is a programmable robot developed by DFRobot. Based on the Arduino developing platform, Vortex is equipped with Atmega328 Arduino

More information

SeeMeCNC Guides. Configuring Artemis

SeeMeCNC Guides. Configuring Artemis SeeMeCNC Guides Configuring Artemis Configuring your Artemis printer. Connecting it to your network and getting everything dialed in for successful printing. Written By: SeeMeCNC 2018 seemecnc.dozuki.com/

More information

Save and Restore Backups using itunes File Sharing

Save and Restore Backups using itunes File Sharing Save and Restore Backups using itunes File Sharing Pictello (ipad, iphone and ipod touch). In this tutorial you will learn how to create, save and restore Pictello library backups with itunes File Sharing

More information

1. Remove any previously installed versions of the Offline Image Viewer by dragging and dropping the Offline Image Viewer icon into the Trash.

1. Remove any previously installed versions of the Offline Image Viewer by dragging and dropping the Offline Image Viewer icon into the Trash. Installing OIV 2.6 for Macs 1. Remove any previously installed versions of the Offline Image Viewer by dragging and dropping the Offline Image Viewer icon into the Trash. 2. Download the new version of

More information

Step 7 How to convert a YouTube Video to Music As I mentioned in the YouTube Introduction, you can convert a Video to a MP3 file using Free Video To

Step 7 How to convert a YouTube Video to Music As I mentioned in the YouTube Introduction, you can convert a Video to a MP3 file using Free Video To Step 7 How to convert a YouTube Video to Music As I mentioned in the YouTube Introduction, you can convert a Video to a MP3 file using Free Video To MP3 Converter program. Next I will show you how to download

More information

HOW TO DOWNLOAD ELECTRONIC BOOKS ONTO YOUR E-BOOK READER

HOW TO DOWNLOAD ELECTRONIC BOOKS ONTO YOUR E-BOOK READER HOW TO DOWNLOAD ELECTRONIC BOOKS ONTO YOUR E-BOOK READER From the Peoria Public Library homepage http://library.peoriaaz.gov Click on Digital Downloads, listed on the top of the screen. Click on Greater

More information

How To Set User Account Password In Windows 7 From Guest

How To Set User Account Password In Windows 7 From Guest How To Set User Account Password In Windows 7 From Guest To change the password of a specific user in windows 7 or 8.1, without knowing How to change or set Windows 7 default font settings to bold, italic?

More information

CS 170 Java Tools. Step 1: Got Java?

CS 170 Java Tools. Step 1: Got Java? CS 170 Java Tools This summer in CS 170 we'll be using the DrJava Integrated Development Environment. You're free to use other tools but this is what you'll use on your programming exams, so you'll need

More information

Office 365 for ipad. OneDrive for Business Word Excel PowerPoint OneNote Lync OWA for ipad

Office 365 for ipad. OneDrive for Business Word Excel PowerPoint OneNote Lync OWA for ipad Office 365 for ipad Get your Office 365 apps for your ipad for free! Below is a list of links to the Office apps that are available for the ipad in the App Store. Before you begin, make sure you know your

More information

Oracle Cloud. Content and Experience Cloud ios Mobile Help E

Oracle Cloud. Content and Experience Cloud ios Mobile Help E Oracle Cloud Content and Experience Cloud ios Mobile Help E82090-01 February 2017 Oracle Cloud Content and Experience Cloud ios Mobile Help, E82090-01 Copyright 2017, 2017, Oracle and/or its affiliates.

More information

No matter where I am or whose computer I am using, as long as I have Internet access, I can mange my Google Docs account. Even from my cell phone!

No matter where I am or whose computer I am using, as long as I have Internet access, I can mange my Google Docs account. Even from my cell phone! Using Google Docs By Dick Evans www.rwevans.com No matter where I am or whose computer I am using, as long as I have Internet access, I can mange my Google Docs account. Even from my cell phone! All my

More information

Barchard Introduction to SPSS Marks

Barchard Introduction to SPSS Marks Barchard Introduction to SPSS 22.0 3 Marks Purpose The purpose of this assignment is to introduce you to SPSS, the most commonly used statistical package in the social sciences. You will create a new data

More information

How To Install Windows Updates 8 From Usb

How To Install Windows Updates 8 From Usb How To Install Windows Updates 8 From Usb Drive Xp Iso This method doesn't work for Windows XP bootable USB drive. But, if you want to make a bootable drive of Windows 8, Windows 8.1 or Windows 10, you'll

More information

Contents Release Notes System Requirements Using Jive for Office

Contents Release Notes System Requirements Using Jive for Office Jive for Office TOC 2 Contents Release Notes...3 System Requirements... 4 Using Jive for Office... 5 What is Jive for Office?...5 Working with Shared Office Documents... 5 Get set up...6 Get connected

More information

Ensuring your computer has Java

Ensuring your computer has Java Ensuring your computer has Java TournamentSR and all of its support programs require the Java Standard Runtime Environment (JRE). This is a free program that can be downloaded and installed from the Internet.

More information

OpenROV. Update Software Image From SD Card

OpenROV. Update Software Image From SD Card OpenROV Update Software Image From SD Card This guide will walk you through the steps for update your software to the latest image. The steps are for computers running Microsoft Windows or Apple OSx. Written

More information

MEEM Memory Ltd. User Guide ios

MEEM Memory Ltd. User Guide ios MEEM Memory Ltd. User Guide ios 1. WHAT IS MEEM? MEEM is a mobile phone charger and backup device in one cable. So every time you charge your phone you back up the data stored on it to the MEEM cable itself.

More information

New to the Mac? Then start with this lesson to learn the basics.

New to the Mac? Then start with this lesson to learn the basics. Mac 101: Mac essentials If you're brand new to the world of computers and are just starting to get up and running, relax using a Mac is simple. This lesson introduces you to the basic principles of interacting

More information

Introduction to Google Drive and Google Docs

Introduction to Google Drive and Google Docs Introduction to Google Drive and Google Docs Metropolitan Community College Continuing Education Laurie Brodeur - Instructor Web Page http://www.learning4u2.com/googledocs.htm What are Google Drive and

More information

Adobe Dreamweaver CS5 Tutorial

Adobe Dreamweaver CS5 Tutorial Adobe Dreamweaver CS5 Tutorial GETTING STARTED This tutorial focuses on the basic steps involved in creating an attractive, functional website. In using this tutorial you will learn to design a site layout,

More information

remember where it is, My Documents or to the Desktop are good locations. If you do not have an extract option, you can usually just COPY and PASTE the

remember where it is, My Documents or to the Desktop are good locations. If you do not have an extract option, you can usually just COPY and PASTE the How do I install USB drivers? This FAQ topic covers how to install your USB drivers. Step 1: Unzipping the Drivers When you download the drivers they are in a zip file. This is a type of file which allows

More information

Virtual Desktop Infrastructure Setup for MacOS

Virtual Desktop Infrastructure Setup for MacOS Virtual Desktop Infrastructure Setup for MacOS Virtual Desktop Infrastructure (VDI) allows you to connect to a virtual computer and use software that you don t have installed on your own computer or mobile

More information

Articulate Engage 2013 Tutorial

Articulate Engage 2013 Tutorial How to Access Engage 1. By Launching Engage Directly o You can open Engage directly from the desktop by clicking on the green Engage Icon, which is shown in the top right corner of this manual. 2. By Launching

More information

In the first class, you'll learn how to create a simple single-view app, following a 3-step process:

In the first class, you'll learn how to create a simple single-view app, following a 3-step process: Class 1 In the first class, you'll learn how to create a simple single-view app, following a 3-step process: 1. Design the app's user interface (UI) in Xcode's storyboard. 2. Open the assistant editor,

More information

Virtual Desktop Infrastructure Setup for MacOS

Virtual Desktop Infrastructure Setup for MacOS Virtual Desktop Infrastructure Setup for MacOS Virtual Desktop Infrastructure (VDI) allows you to connect to a virtual computer and use software that you don t have installed on your own computer or mobile

More information

Storing Your Exercise Files

Storing Your Exercise Files Storing Your Exercise Files This appendix contains an overview for using this book with various file storage media, such as a USB flash drive or hard drive. Detailed instructions for downloading and unzipping

More information

1 of 24 5/6/2011 2:14 PM

1 of 24 5/6/2011 2:14 PM 1 of 24 5/6/2011 2:14 PM This tutorial explains how to add links, files, zipped files, pages, and MOODLE Media. ADDING LINKS 1. Let s start with adding a link. Here is a link to a practice Prezi. Highlight

More information

USB Card Reader (UISA2SE) User's Guide

USB Card Reader (UISA2SE) User's Guide USB Card Reader (UISA2SE) User's Guide INDEX Introduction Installation Guide Setup for Windows Setup for Mac OS Troubleshooting Specification Introduction Features Features Thank you for purchasing USB

More information

How to Convert a Microsoft Word Document to PDF Format

How to Convert a Microsoft Word Document to PDF Format How to Convert a Microsoft Word Document to PDF Format Community Tested In this Article: Article Summary Using SmallPDF Using Google Drive Using Word on Windows Using Word on Mac This wikihow teaches you

More information

Table of Contents 1.1. Introduction 1.2. Building Instructions Inventory & assembly Software installation 1.2.3

Table of Contents 1.1. Introduction 1.2. Building Instructions Inventory & assembly Software installation 1.2.3 Table of Contents Introduction Building Instructions Inventory & assembly Software installation opensensemap registration Exemplary setup..2.2..2.2.2.3.2.4 Introduction sensebox:home The sensebox:home

More information

Linksys WRT54G v5.0 & 5.1 & 6.0

Linksys WRT54G v5.0 & 5.1 & 6.0 Log in / create account Go Main Page Community portal Current events Recent changes Random page Help Donations Linksys WRT54G v5.0 & 5.1 & 6.0 From DD-WRT Wiki Contents 1 How To Flash 2 Other Notes How

More information

OneDrive. Office 365

OneDrive. Office 365 OneDrive Office 365 What s covered? What is OneDrive? (slide 2-3) Is OneDrive like Microsoft Office? (slide 4) How do I get started? (slide 5-6) File types in the documents list (slide 7) How do I get

More information

Adafruit's Raspberry Pi Lesson 1. Preparing an SD Card for your Raspberry Pi

Adafruit's Raspberry Pi Lesson 1. Preparing an SD Card for your Raspberry Pi Adafruit's Raspberry Pi Lesson 1. Preparing an SD Card for your Raspberry Pi Created by Simon Monk Last updated on 2016-12-03 03:20:15 AM UTC Guide Contents Guide Contents Overview You Will Need Downloading

More information

Managing Files & Folders

Managing Files & Folders Managing Files & Folders 1 Navigation Pane 2 Back, Forward, and Up Buttons 3 Ribbon 4 Address Bar or Navigation Bar 5 File List 6 Column Headings 7 Search Box 8 Status Bar 9 Preview Pane Identify parts

More information

Exen Mini. Setup Guide - V1. nerdonic.com

Exen Mini. Setup Guide - V1. nerdonic.com nerdonic. Exen Mini Setup Guide - V1 01 Exen Mini - Pinout SWCLK SWDIO RESET 3.3V GND POWER LED SWD HEADER PROGRAMMABLE LED 8 / PA06 3.3-20V INPUT REGULATED TO 3.3V 3.3-20V 3.3V INPUT OR REGULATED 3.3V

More information

Brianna Nelson Updated 6/30/15 HOW TO: Docs, Sheets, Slides, Calendar, & Drive. English

Brianna Nelson Updated 6/30/15 HOW TO: Docs, Sheets, Slides, Calendar, & Drive. English Brianna Nelson Updated 6/30/15 HOW TO: Docs, Sheets, Slides, Calendar, & Drive English ABOUT Use this guide to write papers, create spreadsheets, give presentations, manage your time, and save your files

More information

On Xp Computer Without Cd Drive

On Xp Computer Without Cd Drive How To Install Microsoft Windows 7 Games On Xp Computer Without Cd Drive I dug out the Windows XP factory restore disc and settled down with a nice cup of coffee. run it under Windows 7), and it managed

More information

DENSITRON USB KIT HARDWARE AND SOFTWARE MANUAL. Copyright 2006 DENSITRON TECHNOLOGIES plc. All rights reserved. Proprietary Data

DENSITRON USB KIT HARDWARE AND SOFTWARE MANUAL. Copyright 2006 DENSITRON TECHNOLOGIES plc. All rights reserved. Proprietary Data DENSITRON USB KIT HARDWARE AND SOFTWARE TABLE OF CONTENTS 1 Introduction... 4 1.1 HARDWARE FEATURES... 4 1.2 SOFTWARE FUNCTIONS... 4 2 PARTS OF SUPPLIED SYSTEM... 5 3 SYSTEM REQUIREMENTS... 5 4 START-UP...

More information

Placester Quick Start Guide

Placester Quick Start Guide Placester Quick Start Guide Congratulations! You re on your way to building a strong online presence for your real estate business. This Quick Start Guide will walk you through all of the basics for getting

More information

Initial Device Assembly Instructions Manual v1.0. Design of an Electromyographic Switch for Communication System Access Version 1.

Initial Device Assembly Instructions Manual v1.0. Design of an Electromyographic Switch for Communication System Access Version 1. Initial Device Assembly Instructions Manual v1.0 Design of an Electromyographic Switch for Communication System Access Version 1.0 1 TABLE OF CONTENTS Contents Pg. # Basic Overview 3 Ordering the Parts

More information

1 Exporting Files from Maestro Ortho Studio Great Lakes Orthodontics

1 Exporting Files from Maestro Ortho Studio Great Lakes Orthodontics SMPI123Rev123113 Exporting Files from Maestro Ortho Studio The following instructions will explain how to export, or save, models using Maestro Ortho Studio. When you are working with models in Ortho Studio

More information

Getting Started with Word

Getting Started with Word Getting Started with Word gcflearnfree.org/print/word2016/word-2016-28 Introduction Microsoft Word 2016 is a word processing application that allows you to create a variety of documents, including letters,

More information

Sherlock Tutorial Getting Started

Sherlock Tutorial Getting Started Sherlock Tutorial Getting Started Background Sherlock is a Java-based application that allows users to analyze the reliability of circuit card assemblies based on their design files. Sherlock has been

More information

Chrome. Browsing in Chrome. The Omnibox. Video: Browsing in Chrome. To use the Omnibox: Omnibox suggestion icons. Page 1

Chrome. Browsing in Chrome. The Omnibox. Video: Browsing in Chrome. To use the Omnibox: Omnibox suggestion icons. Page 1 Chrome Browsing in Chrome Browsing in Chrome Page 1 Chrome makes browsing the Web quick and easy. In this lesson, we'll talk about navigating to websites in Chrome. You'll also learn how use tabs, access

More information

Proper Debugging of ATSAMD21 Processors

Proper Debugging of ATSAMD21 Processors Proper Debugging of ATSAMD21 Processors Created by lady ada Last updated on 2017-06-08 06:47:17 PM UTC Guide Contents Guide Contents Overview Install Software Arduino IDE J-Link Software Atmel Studio 7

More information

Lesson 5: LDR Control

Lesson 5: LDR Control Lesson 5: LDR Control Introduction: Now you re familiar with the DIY Gamer and editing in an Arduino sketch. its time to write one from scratch. In this session you will write that talks to the Light Dependent

More information

22080 IoT2 Appendix B: Get Started with Arduino IDE & ExpLoRer

22080 IoT2 Appendix B: Get Started with Arduino IDE & ExpLoRer Contents Purpose... 1 Requirements... 1 Objectives... 2 Procedure... 2 Step 1. Download and Install the Arduino IDE v1.8.5... 2 Step 2. Configure the Sketchbook Location, Board Manager URL & Other Preferences...

More information

Using the Android CircuitPython Editor

Using the Android CircuitPython Editor Using the Android CircuitPython Editor Created by Timothy Cocks Last updated on 2018-12-18 09:48:51 PM UTC Guide Contents Guide Contents Overview Android Circuit Python Editor Going Mobile Parts List Circuit

More information

Hardware Overview and Features

Hardware Overview and Features Hardware Overview and Features Don t snap apart your LilyPad ProtoSnap Plus until you're ready to use the pieces in a project. If you leave the pieces attached to the board, you'll be able to prototype

More information

Exen Mini. Setup Guide - V2. nerdonic.com

Exen Mini. Setup Guide - V2. nerdonic.com nerdonic. Exen Mini Setup Guide - V2 01 Setup Guide - Changelog V2 - Added common PC connection and Unknown Device fixes 02 SWCLK SWDIO RESET 3.3V GND Exen Mini - Pinout POWER LED SWD HEADER PROGRAMMABLE

More information

Setting up the PC ready for BESA 11

Setting up the PC ready for BESA 11 Setting up the PC ready for BESA 11 1 - Installing Driver. Important Note: Before you start to install the driver, please do not plug BESA 11 into the computer s USB port or else the installation will

More information

Transferring photos from iphone to a PC

Transferring photos from iphone to a PC Transferring photos from iphone to a PC Course outline covers the following topics additional information is for your own personal research. Using the cable often the simplest method cord must have a USB

More information

Pulsed Frequency TM. PlasmaBasic Software Download, Installation and User Guide

Pulsed Frequency TM. PlasmaBasic Software Download, Installation and User Guide Pulsed Frequency TM PlasmaBasic Software Download, Installation and User Guide Contents Account Registration... 3 Create an Account... 4 Download the Software... 6 Chrome... 7 Edge... 8 Firefox... 10 Install

More information

SLabs-32 User's Guide

SLabs-32 User's Guide SLabs-32 User's Guide Version: SLabs-32_v0.1 Author : Haaris Moosa Applications and Firmware Engineer Startoon Labs Private Limited, INDIA Literature number : SL_DocID_001 January 2018 SLabs-32 Board-

More information

WinDSX New Installations

WinDSX New Installations WinDSX New Installations Use these instructions for new Installations. a) Make sure that the Comm Server PC has the.net Framework 4.0 or higher installed. b) Make sure you have Administrative Privileges

More information

Google Apps for Education: The Basics

Google Apps for Education: The Basics Google Apps for Education: The Basics You will learn how to get started with Google Drive by uploading and converting documents. You will also learn how to share your documents with others in the Google

More information

Introduction. Using Styles. Word 2010 Styles and Themes. To Select a Style: Page 1

Introduction. Using Styles. Word 2010 Styles and Themes. To Select a Style: Page 1 Word 2010 Styles and Themes Introduction Page 1 Styles and themes are powerful tools in Word that can help you easily create professional looking documents. A style is a predefined combination of font

More information

Customer Reporting Running Ad Hoc Reports

Customer Reporting Running Ad Hoc Reports Welcome to the Running Ad Hoc Reports tutorial. You will learn how to select variables unique in creating Ad Hoc reports and then view the report results. 1 of 35 7/9/2007 Also, please note that your screens

More information

Securexam Mac User Guide

Securexam Mac User Guide Securexam Mac User Guide Unlike previous versions, Securexam for Mac now functions much like the PC version where it integrates with PlanetSSI to retrieve a user s exams and licenses via the web and upon

More information

Renaming the Projector Adapter Advanced Settings Troubleshooting... 25

Renaming the Projector Adapter Advanced Settings Troubleshooting... 25 010-0730-00 Contents Contents... 2 Introduction... 4 Wireless Range... 4 System Requirements... 4 What's in the Box... 4 Adapter Status Indicators and Details... 5 What s the difference between Wireless

More information

BUSINESS SOURCE PREMIER DATABASE: How to Find it, Access it, and Use it

BUSINESS SOURCE PREMIER DATABASE: How to Find it, Access it, and Use it FIND IT On the homepage of the TNRD Library System website (www.tnrdlib.ca) click on the Databases link under the Online Resources heading. The Online Resources webpage will appear providing you with a

More information

How to use Arduino Uno

How to use Arduino Uno 1 How to use Arduino Uno Typical Application Xoscillo, an open-source oscilloscope Arduinome, a MIDI controller device that mimics the Monome OBDuino, a trip computer that uses the on-board diagnostics

More information

Setting up your Computer

Setting up your Computer Setting up your Computer 1 Introduction On this lab, you will be getting your computer ready to develop and run Java programs. This lab will be covering the following topics: Installing Java JDK 1.8 or

More information

IT Essentials v6.0 Windows 10 Software Labs

IT Essentials v6.0 Windows 10 Software Labs IT Essentials v6.0 Windows 10 Software Labs 5.2.1.7 Install Windows 10... 1 5.2.1.10 Check for Updates in Windows 10... 10 5.2.4.7 Create a Partition in Windows 10... 16 6.1.1.5 Task Manager in Windows

More information