ACS-1805 Introduction to Programming (with App Inventor)

Size: px
Start display at page:

Download "ACS-1805 Introduction to Programming (with App Inventor)"

Transcription

1 ACS-1805 Introduction to Programming (with App Inventor) Chapter 2 9/6/2018 1

2 HelloPurr The counterpart of the Hello World the typical very first program in the traditional programming Instead of displaying this sentence it will meow and purr To get you started building apps What You ll Learn in this chapter Building apps by selecting components and specifying their behavior Using the Component Designer to select components Adding media (sounds and images) to apps by uploading them from your computer Using the Blocks Editor to assemble blocks that define the components behavior Testing apps with App Inventor s live testing This lets you see how apps will look and behave on the device, step by step, even as you re building them Packaging the apps you build and downloading them to a device 9/6/2018 2

3 The App Inventor Environment The environment Web browser Connect to ai2.appinventor.mit.edu This opens the newer version App Inventor vs. App Inventor Classic Or some people call them App Inventor 2 vs. App Inventor (like in our textbook) 9/6/2018 3

4 The App Inventor Environment The environment has three key parts The Component Designer You use it to select components for your app and specify their properties. The Blocks Editor You use it to specify how the components will behave An Android device You can actually run and test your app as you are developing it Or the Android emulator If you don t have an Android device handy 9/6/2018 4

5 The App Inventor Environment Likely the first stop is the Projects page Where you can start a new project save your project or perform any other tasks that deal with your project(s) The App Inventor is a cloud computing tool So your app is stored on an online server, among many, instead of on your local computer You can access it anywhere, as long as you have an Internet connection 9/6/2018 5

6 Component Designer You will land here when you first get into App Inventor In this window you deal with components Components The elements you combine to create apps like ingredients in a recipe Some are quite simple label, button, etc. Some are more elaborate drawing canvas, accelerometer, or others that bring up actions, etc. 9/6/2018 6

7 Component Designer The component designer is divided into several areas The Viewer In the center This is where you place components and arrange them to match the design of your app (ROUGHLY!) The Palette To the left A list of components from which you can select It is divided into sections The Components list To the right It lists the components in your project Any component that you drag into the Viewer will also show up in this list The Media Under the Components list It is an area that shows the media like pictures and sound in the project 9/6/2018 7

8 Component Designer The Properties To the far right It shows the Properties of components when you click a component in the Viewer Properties are details about each component that you can change 9/6/2018 8

9 Making the App Make a label Drag from the Palette to the Viewer You might need to open the drawer to select the desired component Now go to the Properties window Change the property called Text in its box for the label s text Change the property called BackgroundColor to blue Change the property called TextColor to yellow 9/6/2018 9

10 Making the App Add a button For the kitty Drag a button from the Palette to the Viewer Place it under the label Obtain a picture of the kitty Click the area under the property called image Upload the kitty picture you have obtained After the image uploads, the picture should be listed as an option for the image property of the button Click OK to choose it 9/6/

11 Making the App Add the meow sound Obtain the sound file And upload it, like what you did to the picture of the kitty Now go to the Media section in the Palette Drag a sound component from the Palette to the Viewer Go to the property of the sound component called Source then go through the steps to upload and choose the sound file 9/6/

12 Live Testing Testing the app under development in an incremental manner Best practice that can save you hours of work There are three options for live testing Build apps with an Android device and Wi-Fi Connection No Wi-Fi but with an Android device use a USB Cable to connect it Don t have an Android device Use the Emulator 9/6/

13 Live Testing If all goes well you should see the HelloPurr app running on your device including all of the components you added As you make changes in the App Inventor Designer or Blocks Editor, those changes will also appear on the device as well 9/6/

14 Blocks Editor Now it s time to assign some behaviors to the components In this example the button We need to use Blocks Editor for this job You can jump to the Blocks Editor by clicking Blocks in the top right of the Component Designer In the Blocks Editor you instruct the components what to do and when to do it In the Blocks Editor There is a column in the top left window beneath the Blocks header A Built-in drawer A number of drawers for each component you created in the Designer When you click a drawer, you get a bunch of options (blocks) for that component that you can use to build the button s behavior 9/6/

15 Blocks Editor Event Handler There can be the word when included on a block Blocks including the word when are called event handlers They specify what components should do when some particular event happens 9/6/

16 Making the Kitty Meow Program what will happen in response to that event Click Sound1 to open the drawer for the sound component Then drag out the call Sound1.Play block App Inventor is set up so that only certain blocks fit together By this way you always know you re connecting blocks that actually work together you can also hear a snapping sound when the two blocks are put together By this way App Inventor shows the behaviors you re trying to create in a plain and understandable fashion 9/6/

17 Making the Kitty Purr We can simulate the purr by making the device vibrate Vibration is a core device functionality App Inventor helps you to easily put your hands on it You just need to add a second function call block to the button click in the Blocks Editor Go to the Blocks Editor and click Sound1 to open the drawer Select call Sound1.Vibrate and drag it under the call Sound1.Play block in the Button1.Click slot 9/6/

18 Making the Kitty Purr Notice that the call Sound1.Vibrate block includes the text millisecs at the lower right, and alongside it is an open socket? An open socket in a block means that you need to plug something into it to specify more about how the behavior should work You need to specify the time period here in thousandths of a second (milliseconds) Grab a number block from the Math drawer Enter 500 Plug the 500 number block into the socket on the right side of call Sound1.Vibrate 9/6/

19 Shaking the Device Add another element that employs another cool feature of Android Making the kitty meow when you shake the device It uses a component called AccelerometerSensor This component can sense when you shake or move the device around How to do this Expand the Sensors area in the Palette components list and drag out an AccelerometerSensor It will stay in the Non-visible components section at the bottom of the Viewer 9/6/

20 Shaking the Device Treat shaking the device as a different and separate event from the button click This means that you need a new event handler. Open the drawer for AccelerometerSensor1 in the Blocks Editor Drag out the AccelerometerSensor1.Shaking block Drag out a call Sound1.Play block and fit it into the gap in AccelerometerSensor1.Shaking 9/6/

21 The Finished Project 9/6/

22 Downloading the App to Your Android Device The app you develop won t be available on your device after you disconnect your device if the app is not downloaded and installed on your device To make the app available anytime and to any device you must download and install the app to that device After it s installed you will see an icon in the list of apps on your device Select the Screen component in the Designer Click its Icon property Then upload an image file as the icon (the kitty picture)round 9/6/

23 Downloading the App to Your Android Device You need to ensure that your device allows apps to be downloaded from places other than the Android Market (Google Play) For most Android devices, you do this by going to Settings, depending the version of your android system then checking the box next to Unknown sources 9/6/

24 Downloading the App to Your Android Device Now start building the app In the Designer click Build select App (provide QR code for.apk) You should see a Progress Bar message in the window This process could take up to a minute Scan the QR Code for the finished app onto your device with a Barcode Scanner app When the QR code is displayed After scanning the QR Code, the device might prompt you to enter your password for your Google account When you finish entering your password your app will begin downloading to your device You ll see a download icon in your device s notifications 9/6/

25 Downloading the App to Your Android Device Go to your notifications, wait until the download completes, and then choose the app to install it Now the app is available on your device Sharing the App Download your project to your computer 9/6/

CHAPTER 1 HelloPurr. The chapter covers the following topics:

CHAPTER 1 HelloPurr. The chapter covers the following topics: CHAPTER 1 HelloPurr This chapter gets you started building apps. It presents the key elements of App Inventor, the Component Designer and the Blocks Editor, and leads you through the basic steps of creating

More information

TalkToMe: A beginner App Inventor app

TalkToMe: A beginner App Inventor app TalkToMe: A beginner App Inventor app This step-by-step picture tutorial will guide you through making a talking app. To get started, sign up for a free Google Account: http://accounts.google.com/signup

More information

Magic 8-Ball. Part One: Click a Button, Hear a Sound. DESIGN: App Inventor Designer. Magic 8-Ball Predicts the Future

Magic 8-Ball. Part One: Click a Button, Hear a Sound. DESIGN: App Inventor Designer. Magic 8-Ball Predicts the Future Magic 8-Ball Magic 8-Ball Predicts the Future This introductory module will guide you through building a Magic 8-Ball app with App Inventor. When activated, your 8-ball will deliver one of its classic

More information

TalkToMe: Your first App Inventor app

TalkToMe: Your first App Inventor app TalkToMe: Your first App Inventor app This step-by-step picture tutorial will guide you through making a talking app. To get started, go to App Inventor on the web. Go directly to ai2.appinventor.mit.edu,

More information

App Inventor 2: environment of development to make apps for android

App Inventor 2: environment of development to make apps for android 1 App Inventor 2: environment of development to make apps for android In order to make an App it is possible to use "App Inventor, the online platform that the Institute of Technology of Massachusetts

More information

3. Text to Speech 4. Shake it

3. Text to Speech 4. Shake it 3. Text to Speech 4. Shake it Make your phone speak to you! When you shake your phone, you can make your phone shake too. Type a phrase in a text box. Then press a button, and use the TextToSpeech component

More information

App Development with MIT App Inventor

App Development with MIT App Inventor Summer School of Programming time.to.code Workshop 4 App Development with MIT App Inventor Tutorials- Magic 8-Ball [BASIC] BLOCKS 1 st August 2016 Magic 8-ball Now you will create a Magic 8-Ball app which

More information

AppyBuilder Beginner Tutorials

AppyBuilder Beginner Tutorials AppyBuilder Beginner Tutorials Four Simple Tutorials for Getting Started with AppyBuilder 1 TalkToMe: Your first AppyBuilder app 03 2 TalkToMe Part 2: Shaking and User Input 21 3 BallBounce: A simple game

More information

MoleMash for App Inventor 2. Getting Started. Introduction. Workshop, S.1

MoleMash for App Inventor 2. Getting Started. Introduction. Workshop, S.1 In the game MoleMash, a mole pops up at random positions on a playing field, and the player scores points by hitting the mole before it jumps away. This tutorial shows how to build MoleMash as an example

More information

Android Programming Family Fun Day using AppInventor

Android Programming Family Fun Day using AppInventor Android Programming Family Fun Day using AppInventor Table of Contents A step-by-step guide to making a simple app...2 Getting your app running on the emulator...9 Getting your app onto your phone or tablet...10

More information

Activity Digital Doodle

Activity Digital Doodle Activity 1.1.2 Digital Doodle Introduction Let's create an app! In this app, you'll be able to take a photograph with the press of a button and then draw on it. You will use MIT App Inventor to create

More information

Learn to Code. App Inventor Overview

Learn to Code. App Inventor Overview App Inventor Overview App Inventor is an Integrated Development Environment (IDE) that you access through a web browser. An IDE provides all of the tools you need to develop in one application. App Inventor

More information

Hello App Inventor! Android programming for kids and the rest of us. Chapter 2. by Paula Beer and Carl Simmons. Copyright 2015 Manning Publications

Hello App Inventor! Android programming for kids and the rest of us. Chapter 2. by Paula Beer and Carl Simmons. Copyright 2015 Manning Publications SAMPLE CHAPTER Hello App Inventor! Android programming for kids and the rest of us by Paula Beer and Carl Simmons Chapter 2 Copyright 2015 Manning Publications Brief contents 1 Getting to know App Inventor

More information

Mobile Programming (MIT App Inventor 2)

Mobile Programming (MIT App Inventor 2) Mobile Programming (MIT App Inventor 2) http://www.plk83.edu.hk/cy/ai2 Contents 1. Understanding the working environment (Page 1) 2. First Android Program (HelloPurr) (Page 4) 3. Completing HelloPurr (Page

More information

Tutorial guideline for App Inventor

Tutorial guideline for App Inventor Tutorial guideline for App Inventor This short guideline will help you to quickly jump into the tutorial sessions of the MIT App Inventor with minimal reading in a short time period. I have extracted some

More information

PaintPot. Figure 2-1. The PaintPot app

PaintPot. Figure 2-1. The PaintPot app Chapter 2 PaintPot This tutorial introduces the Canvas component for creating simple, two-dimensional (2D) graphics. You ll build PaintPot, an app that lets the user draw on the screen in different colors,

More information

PaintPot Hack This is an app with a background image of a cat that the user can draw on the image with different colors

PaintPot Hack This is an app with a background image of a cat that the user can draw on the image with different colors PaintPot Hack This is an app with a background image of a cat that the user can draw on the image with different colors Login to App Inventor Here are instructions on how to login to App Inventor and create

More information

Inspiring Creative Fun Ysbrydoledig Creadigol Hwyl. App Inventor Workbook

Inspiring Creative Fun Ysbrydoledig Creadigol Hwyl. App Inventor Workbook Inspiring Creative Fun Ysbrydoledig Creadigol Hwyl App Inventor Workbook App Inventor is a cloud-based application development tool, enabling users to develop Android applications for free! App Inventor

More information

Getting Started with App Inventor

Getting Started with App Inventor Getting Started with App Inventor Table of Contents Chapter One: Sensors... 1 What do sensors do?... 1 Chapter Two: Introduction to App Inventor... 3 What is App Inventor?... 3 Setting up your phone...

More information

App Inventor + IoT: Basic Bluetooth Connection Setup

App Inventor + IoT: Basic Bluetooth Connection Setup App Inventor + IoT: Basic Bluetooth Connection Setup 30 min Start a new project in App Inventor and name it BasicIoTSetup. First, we need to set up some buttons to find and connect to our Arduino over

More information

App #2 - Paint Pot. Getting Ready. Objectives: In this lesson you will learn to:

App #2 - Paint Pot. Getting Ready. Objectives: In this lesson you will learn to: App #2 - Paint Pot Paint Pot is a basic finger painting app. It simulates the process of dipping your finger in a pot of a paint and then drawing on a canvas. The app uses buttons to simulate dipping your

More information

Campus Map App Tutorial

Campus Map App Tutorial Campus Map App Tutorial Overview: We will be making an app that will mark different locations on the mit campus. The App will change the screen when the phone is shaked to display a list that represent

More information

Except as otherwise noted, the content of this document is licensed under the Creative Commons Attribution 3.0 License

Except as otherwise noted, the content of this document is licensed under the Creative Commons Attribution 3.0 License Except as otherwise noted, the content of this document is licensed under the Creative Commons Attribution 3.0 License http://creativecommons.org/licenses/by/3.0 Agenda Day 1 Introduction What is a computer

More information

ACS-1805 Introduction to Programming (with App Inventor) Chapter 5. MoleMash 9/27/2018 1

ACS-1805 Introduction to Programming (with App Inventor) Chapter 5. MoleMash 9/27/2018 1 ACS-1805 Introduction to Programming (with App Inventor) Chapter 5 MoleMash 9/27/2018 1 What We Will Learn What we will learn in this chapter: The ImageSprite component for touch-sensitive movable images.

More information

ACS-1805 Introduction to Programming

ACS-1805 Introduction to Programming ACS-1805 Introduction to Programming Chapter 03: MoleMash 2019-01-22 1 What You ll Learn The ImageSprite component for touch-sensitive movable images. The Canvas component, which acts as a surface on which

More information

Software Prototyping. & App Inventor

Software Prototyping. & App Inventor Software Prototyping & App Inventor Prototyping This & next several slides distilled from: http://appinventor.mit.edu/explore/teaching-app-creation.html Prototype: preliminary, interactive model of an

More information

MFA (Multi-Factor Authentication) Enrollment Guide

MFA (Multi-Factor Authentication) Enrollment Guide MFA (Multi-Factor Authentication) Enrollment Guide Morristown Medical Center 1. Open Internet Explorer (Windows) or Safari (Mac) 2. Go to the URL: https://aka.ms/mfasetup enter your AHS email address and

More information

HOME SECURITY KIT. USER MANUAL SMART PROTECTION WITH THE ALL-IN-ONE SOLUTION. SMART WINDOW SENSOR SMART POWER SOCKET SMART MOTION SENSOR SMART IP CAM

HOME SECURITY KIT. USER MANUAL SMART PROTECTION WITH THE ALL-IN-ONE SOLUTION. SMART WINDOW SENSOR SMART POWER SOCKET SMART MOTION SENSOR SMART IP CAM HOME SECURITY KIT. SMART PROTECTION WITH THE ALL-IN-ONE SOLUTION. SMART WINDOW SENSOR SMART POWER SOCKET SMART IP CAM SMART MOTION SENSOR USER MANUAL SL-900100/900111 HOME SECURITY KIT A/B SHORT INSTRUCTION

More information

BCSWomen Android programming (with AppInventor) Family fun day World record attempt

BCSWomen Android programming (with AppInventor) Family fun day World record attempt BCSWomen Android programming (with AppInventor) Family fun day World record attempt Overview of the day Intros Hello Android! Getting your app on your phone Getting into groups Ideas for apps Overview

More information

Erasmus+ Project: Yestermorrow Year 1 Maths: Pythagorean Theorem

Erasmus+ Project: Yestermorrow Year 1 Maths: Pythagorean Theorem Erasmus+ Project: Yestermorrow Year 1 Maths: Pythagorean Theorem Workshop (Coding Android Mobile Apps): Collision Detection and the Pythagorean Theorem (Based on the code.org worksheet) WORKSHOP OVERVIEW

More information

INTRODUCING THE CODEBIT!

INTRODUCING THE CODEBIT! GETTING STARTED Downloading the littlebits Code Kit app STEP 1 Download and open the littlebits Code Kit app at littlebits.com/code-kit-app STEP 2 Click the pink open blank canvas button to start writing

More information

MeetingPad User Manual. Manual Version PTAs1.0

MeetingPad User Manual. Manual Version PTAs1.0 Manual Version PTAs1.0 Contents: 1. MeetingPad Interface Overview... 2 1.1 Connecting your Touch Screen to a Wi-Fi Network... 3 1.2 Browser... 4 1.3 File Explorer... 5 1.4 MeetingPad/Whiteboard... 6 1.4.1

More information

ACS-1805 Introduction to Programming (with App Inventor)

ACS-1805 Introduction to Programming (with App Inventor) ACS-1805 Introduction to Programming (with App Inventor) Chapter 9 Paris Map Tour 11/1/2018 1 What We Will Learn In this chapter we ll build a tour guide app for a trip to Paris This chapter introduces

More information

Zello Quick Start Guide for Kyocera TORQUE

Zello Quick Start Guide for Kyocera TORQUE Zello Quick Start Guide for Kyocera TORQUE Install Zello Tap Zello in your apps screen then tap UPDATE to start install. When you miss Zello icon in your TORQUE, please search for Zello in Google Play

More information

Mi Home Security Camera Connection Guide. (ios)

Mi Home Security Camera Connection Guide. (ios) Mi Home Security Camera Connection Guide (ios) 1. Navigate to the APP Store with your iphone and search for Mi Home, or scan the QR code below to download and install Mi Home APP. 2. Plug in the Mi Home

More information

PaintPot: (Part 1) What You're Building. Before starting

PaintPot: (Part 1) What You're Building. Before starting PaintPot: (Part 1) This tutorial introduces the Canvas component for creating simple two-dimensional graphics. You'll build an app that lets you draw on the phone screen in different colors. Historical

More information

WYBCS Android Programming (with AppInventor) Family fun day

WYBCS Android Programming (with AppInventor) Family fun day WYBCS Android Programming (with AppInventor) Family fun day Overview of the day Intros Hello Android! Installing AppInventor Overview of AppInventor Making your first app What's special about mobile? Changing

More information

Step 1: Find a spot for your Wifi point

Step 1: Find a spot for your Wifi point Let's get you set up with your new Google Wifi system. Here s what you ll need to get started: Google Wifi point(s) Google Account Google Wifi app for Android 4 and up or ios 9 and up Broadband connection

More information

Introduction. Built-in speaker. Infrared lights. Camera lens. Reset button. Indicator light. Micro- USB port for power supply.

Introduction. Built-in speaker. Infrared lights. Camera lens. Reset button. Indicator light. Micro- USB port for power supply. Axel USER MANUAL Contents Introduction 4 LED Indicators 5 What s Included 6 Wi-Fi Requirements 7 Mobile Device Requirements 7 Download the Momentum App 8 Pairing 9 Pairing additional Momentum Devices 11

More information

CONTENTS. Working With Feeds Viewing Your Feeds Working With Snippets Deleting Snippets Rev AA

CONTENTS. Working With Feeds Viewing Your Feeds Working With Snippets Deleting Snippets Rev AA CONTENTS Getting Started.............................................. 4 Setting Up Livescribe+...................................................... 4 Connecting Your Smartpen and Device........................................

More information

Connection Guide. Do this second:

Connection Guide. Do this second: 2 Do this second: Connection Guide 1 Install your lock. Use this Hardware Installation guide to get your lock hardware installed. Prefer a video? You are here. 2 Get connected. Use the Connection Guide

More information

Picture Talk App Directions (Version 2 of App Inventor) Description:

Picture Talk App Directions (Version 2 of App Inventor) Description: Picture Talk App Directions (Version 2 of App Inventor) Description: This App combines images and the TextToSpeech object in Android and App Inventor to create an icon based speech program. Like the Dynavox

More information

Note: Before running the app, turn on the mobile data connection of the mobile phone or connect the mobile phone to a Wi-Fi network.

Note: Before running the app, turn on the mobile data connection of the mobile phone or connect the mobile phone to a Wi-Fi network. MyOximeter Operation Instruction I. Download and Installation This app runs in ios 7.0 and later versions and Android 4.3 and later versions of mobile phone operating systems. You can download the app

More information

WIFI Hidden Camera USER MANUAL

WIFI Hidden Camera USER MANUAL WIFI Hidden Camera USER MANUAL A. Get started Step1: Download and install the App named HDMiniCam from Google Play Store (for Android) or Apple Store (for ios) or by scanning the code below: NOTE: 1, Please

More information

C-Assist Set up Guide

C-Assist Set up Guide C-Assist Set up Guide Wireless connection to and projection from PCs Macs and Mobile Devices CASIO COMPUTER CO., LTD. Contents Heading Wirelessly Connecting your PC/Mac to your Casio Projector Page Process

More information

MERCATOR TASK MASTER TASK MANAGEMENT SCREENS:- LOGIN SCREEN:- APP LAYOUTS:-

MERCATOR TASK MASTER TASK MANAGEMENT SCREENS:- LOGIN SCREEN:- APP LAYOUTS:- MERCATOR TASK MASTER TASK MANAGEMENT SCREENS:- LOGIN SCREEN:- APP LAYOUTS:- This is Navigation bar where you have 5 Menus and App Name. This Section I will discuss in brief in the Navigation Bar Section.

More information

Tablet PC User Manual

Tablet PC User Manual Tablet PC User Manual Please read all instructions carefully before use to get the most out of your Time2Touch Tablet PC. The design and features are subject to change without notice. Contents Important

More information

iminicam 1080p Wireless Spy Camera User Manual

iminicam 1080p Wireless Spy Camera User Manual iminicam 1080p Wireless Spy Camera User Manual imini Spy Camera User Manual Introduction Thank you for choosing the imini Spy Camera. Experience cutting edge technology and enjoy the security that the

More information

Don t Steal My BBC micro:bit Alarm!

Don t Steal My BBC micro:bit Alarm! Description This is a simple tutorial demonstrating how to use the output pins on the BBC micro:bit and use the built in accelerometer to control a buzzer when the BBC micro:bit is moved. Learn how to:

More information

Magnetic base Indicator light Microphone Camera lens Micro SD card slot Infrared light Front Side Pivot connector Built-in speakers

Magnetic base Indicator light Microphone Camera lens Micro SD card slot Infrared light Front Side Pivot connector Built-in speakers Niro USER MANUAL Contents Introduction 4 Product Features 5 Niro LED Indicators 6 What s Included 7 Wi-Fi Requirements 8 Mobile Device Requirements 8 Garage Door Opener Requirements 8 Download the Momentum

More information

CPF Arduino Blockly V

CPF Arduino Blockly V CPF Arduino Blockly V1.00.2004 Content CPF Arduino Blockly Installation... 3 CPF Arduino Blockly - CloudProfessor Pairing... 6 CPF Arduino Blockly login... 12 Upload Program Code... 13 Download Program

More information

Understanding an App s Architecture

Understanding an App s Architecture Chapter 14 Understanding an App s Architecture This chapter examines the structure of an app from a programmer s perspective. It begins with the traditional analogy that an app is like a recipe and then

More information

WI-FI GARAGE DOOR CONTROLLER WITH CAMERA USER MANUAL

WI-FI GARAGE DOOR CONTROLLER WITH CAMERA USER MANUAL WI-FI GARAGE DOOR CONTROLLER WITH CAMERA USER MANUAL Contents Introduction 4 Product Features 5 Garage Door Controller LED Indicators 6 What s Included 7 Wi-Fi Requirements 8 Mobile Device Requirements

More information

Before we start: ios app. Android app

Before we start: ios app. Android app SETUP TUTORIAL Hi there, thanks for choosing the Smartdolphin Mini Robot IP Camera. This is a step-by-step setup tutorial to guide you through the easy installation process. Just follow the guide and you

More information

Table of contents. 2 Samsung Care. 3 Know Your Device. 5 S Pen. 7 Device Setup. 12 Home Screen. 18 Apps. 19 Calls. 20 Voic .

Table of contents. 2 Samsung Care. 3 Know Your Device. 5 S Pen. 7 Device Setup. 12 Home Screen. 18 Apps. 19 Calls. 20 Voic . Table of contents 2 Samsung Care 3 Know Your Device 5 S Pen 7 Device Setup 12 Home Screen 18 Apps 19 Calls 20 Voicemail 21 Contacts 22 Messages 24 Camera 25 Internet 26 Connections 27 Security Samsung

More information

Contents. Introduction. Getting Started. Navigating your Device. Customizing the Panels. Pure Android Audio. E-Books

Contents. Introduction. Getting Started. Navigating your Device. Customizing the Panels. Pure Android Audio. E-Books Contents Introduction Getting Started Your Device at a Glance Charging Assembling the Power Adapter Turning On/Off, Unlocking Setting to Sleep and Waking Up Inserting and Removing a microsd Card Connecting

More information

Know your device. SPen Front camera. Camera. Power key. Volume keys. Recent apps Home key Back key USB/Charger port

Know your device. SPen Front camera. Camera. Power key. Volume keys. Recent apps Home key Back key USB/Charger port Know your device SPen Front camera Power key Camera Volume keys Recent apps Home key Back key USB/Charger port 1 2 S Pen The S Pen enables fast, accurate, and precise input while providing a natural writing

More information

Fortune Teller 2 What You'll Build 2 What You'll Learn 3 Iteration or how we will get to Finished App. 3

Fortune Teller 2 What You'll Build 2 What You'll Learn 3 Iteration or how we will get to Finished App. 3 Fortune Teller 2 What You'll Build 2 What You'll Learn 3 Iteration or how we will get to Finished App. 3 Iteration 1 Create still image of our App 4 Getting Started 4 Bus stop reached! 8 Iteration 2 Say

More information

Released June 2012 For Assessment Submission January 2013 to June 2015

Released June 2012 For Assessment Submission January 2013 to June 2015 Released June 2012 For Assessment Submission January 2013 to June 2015 GCSE COMPUTING A452 Practical Investigation *A426280613* CONTROLLED ASSESSMENT MATERIAL 5 This assessment may be periodically reviewed.

More information

Introduction. Package Checklist. Minimum System Requirements. Registering Your Product. More Help

Introduction. Package Checklist. Minimum System Requirements. Registering Your Product. More Help Introduction Keep a watch on your family, pet, home or office 24/7, even when you re not there. Creative Live! Cam IP SmartHD gives you a live update on your phone, wherever you are. Get activity alerts,

More information

How to Access Your Digital Member Magazine

How to Access Your Digital Member Magazine How to Access Your Digital Member Magazine GETTING STARTED WHERE TO GO: Point your browser to daytonartinstitute.org/magazine to find the latest issue of the Member Magazine. WHERE TO GO: You may also

More information

One of the primary features of 5-Star Students is the ability to capture and store attendance data during school events.

One of the primary features of 5-Star Students is the ability to capture and store attendance data during school events. Conducting Events This guide will assist you with planning and conducting events using 5-Star Students Determine which events you ll track using 5-Star Students Understand requirements and options for

More information

Contents. Introduction. Getting Started. Navigating your Device. Customizing the Panels. Pure Android Audio. E-Books. Browsing the Internet

Contents. Introduction. Getting Started. Navigating your Device. Customizing the Panels. Pure Android Audio. E-Books. Browsing the Internet Contents Introduction Getting Started Your Device at a Glance Charging Assembling the Power Adapter Turning On/Off, Unlocking Setting to Sleep and Waking Up Connecting to a Computer Navigating your Device

More information

Contents. Introduction

Contents. Introduction Page 1 of 15 Contents Introduction Getting Started Your Device at a Glance Charging Assembling the Power Adapter Turning On/Off, Unlocking Setting to Sleep and Waking Up Inserting and Removing a microsd

More information

Skype for Business for Android

Skype for Business for Android Skype for Business for Android November 2015 Topics in this guide include: Joining meetings Updating availability status Managing contacts Having conversations Customizing your settings For more information

More information

GENERAL SET-UP & APP GENERAL SET-UP & APP PAIRING/SYNCING FEATURES BATTERY ACCOUNT & DEVICE SETTINGS PRIVACY WARRANTY. For IOS:

GENERAL SET-UP & APP GENERAL SET-UP & APP PAIRING/SYNCING FEATURES BATTERY ACCOUNT & DEVICE SETTINGS PRIVACY WARRANTY. For IOS: For IOS: GENERAL SET-UP & APP PAIRING/SYNCING FEATURES BATTERY ACCOUNT & DEVICE SETTINGS PRIVACY WARRANTY GENERAL SET-UP & APP WHICH PHONES ARE COMPATIBLE WITH MY SMARTWATCH? Wear OS by Google works with

More information

Set Up and Use Your Kiosk... 1

Set Up and Use Your Kiosk... 1 Kiosk User Guide Kiosk User Guide Contents Set Up and Use Your Kiosk... 1 Download the Application... 1 Enable Auto-Updates... 1 Technical Support... 2 Access the User Guide... 2 Report a Technical Problem...

More information

An online version of these worksheets is available at:

An online version of these worksheets is available at: Worksheet 1 Tutorial An online version of these worksheets is available at: http://ronanjsmith.com/computingintheclassroom/worksheets.html. In this tutorial, you will discover how to create simple apps

More information

Installation of BAFX ELM327 Device for use with VisTracks, Inc.

Installation of BAFX ELM327 Device for use with VisTracks, Inc. Installation of BAFX ELM327 Device for use with VisTracks, Inc. Note: The first few instructions below is for an initial connection to the BAFX ELM327 device. If you have already paired the BAFX ELM327

More information

Table of Contents. 2 Know your device. 4 Device setup. 8 Customize. 10 Connections. 11 Apps. 12 Contacts. 13 Messages. 14 Camera.

Table of Contents. 2 Know your device. 4 Device setup. 8 Customize. 10 Connections. 11 Apps. 12 Contacts. 13 Messages. 14 Camera. Table of Contents 2 Know your device 4 Device setup 8 Customize 10 Connections 11 Apps 12 Contacts 13 Messages 14 Camera 15 Internet Know your device Front view Front Camera SIM Card Slot microsd Card

More information

1. Defining Procedures and Reusing Blocks

1. Defining Procedures and Reusing Blocks 1. Defining Procedures and Reusing Blocks 1.1 Eliminating Redundancy By creating a procedure, move a copy of the redundant blocks into it, and then call the procedure from the places containing the redundant

More information

Version B Wi-Fi IP CAMERA

Version B Wi-Fi IP CAMERA HD Version B-1.0.0 Wi-Fi IP CAMERA Quick Start Guide Table of Contents Get Started... 1 Hardware Installation... 1 Live Video... 2 Live Video via Wi-Fi... 6 Camera Settings... 8 Change Password... 8 Alarm

More information

Nexonia Expense Reporting: Mobile. A Quickstart Guide to using Nexonia on the Mobile App

Nexonia Expense Reporting: Mobile. A Quickstart Guide to using Nexonia on the Mobile App Nexonia Expense Reporting: Mobile A Quickstart Guide to using Nexonia on the Mobile App Nexonia Expenses: Downloading the Mobile App The Nexonia Expenses mobile app is available for free through all the

More information

Installation of CalAmp 4230 Device for use with InTouch ELD

Installation of CalAmp 4230 Device for use with InTouch ELD Installation of CalAmp 4230 Device for use with InTouch ELD Note: The first few instructions below is for an initial connection to the CalAmp 4230 device. If you have already paired the CalAmp 4230 device

More information

SharePoint Online 101

SharePoint Online 101 Work Smart by Microsoft IT SharePoint Online 101 Customization note: This document contains guidance and/or step-by-step installation instructions that can be reused, customized, or deleted entirely if

More information

Signup for Multi-Factor Authentication

Signup for Multi-Factor Authentication What is Multi-Factor Authentication? Multi-Factor Authentication (MFA) helps safeguard access to data and applications while maintaining simplicity for users. It provides additional security by requiring

More information

ACS-1805 Introduction to Programming

ACS-1805 Introduction to Programming ACS-1805 Introduction to Programming Chapter 02: PaintPot 2019-01-15 1 PaintPot This tutorial introduces the Canvas component o for creating simple two-dimensional (2D) graphics PaintPot o an app that

More information

Items in BLUE do not have video tutorials but use text directions only. Page 1

Items in BLUE do not have video tutorials but use text directions only. Page 1 Application Learn about Expertise 1. Talk to Me Text to speech First Apps 2. Ball Bounce Ball object. Animation. First Apps 3. Digital Doodle Canvas drawing. First Apps 4. I have a Display photos. Play

More information

Smart Wireless Camera Instructions

Smart Wireless Camera Instructions Smart Wireless Camera Instructions Dear customer, welcome to use our product, if you don t like this camera and want to return it to us, in order to protect your privacy and delete the video history from

More information

The Complete Guide to the VAVA Dash Cam Model: VA-CD001

The Complete Guide to the VAVA Dash Cam Model: VA-CD001 The Complete Guide to the VAVA Dash Cam Model: VA-CD001 1. App Overview After connecting your phone with the VAVA Wi-Fi, open the app and connect the VAVA dash cam. Tap on the play icon to access the live

More information

User Manual. Wireless IP Camera

User Manual. Wireless IP Camera User Manual Wireless IP Camera Introduction Hi. Thank you for purchasing the AUKEY VT-CM1 Wireless Security IP Camera. Please read this user manual carefully and keep it in a safe place for future reference.

More information

Microsoft Office 365 includes the entire Office Suite (Word, Excel, PowerPoint, Access, Publisher, Lync, Outlook, etc ) and an OneDrive account.

Microsoft Office 365 includes the entire Office Suite (Word, Excel, PowerPoint, Access, Publisher, Lync, Outlook, etc ) and an OneDrive account. Microsoft Office 365 Contents What is Office 365?... 2 What is OneDrive?... 2 What if you already have a Microsoft Account?... 2 Download Office for FREE... 3 How to Access OneDrive... 4 Office Online...

More information

Task On Gingerbread On Ice Cream Sandwich Notification bar on lock screen Notification bar is not accessible on the lock screen.

Task On Gingerbread On Ice Cream Sandwich Notification bar on lock screen Notification bar is not accessible on the lock screen. HTC Rezound to 3.14.605.12 710RD: What s Different and New? Congratulations on updating your HTC Rezound to 3.14.605.12 710RD. You might have some questions about the new update and how you can take advantage

More information

Google Chromebook Starting Guide

Google Chromebook Starting Guide Google Chromebook Starting Guide Now that you have received your Chromebook you will notice that it looks exactly like a laptop, but there are several differences between both devices. Chromebooks are

More information

Getting Started Manual for CODIBOT

Getting Started Manual for CODIBOT a Getting Started Manual for CODIBOT Step 1: Open the Box. Step 2: Inside the box you will find the Pre-Assembled body of CODIBOT along with the Add-On packs, Connecting Wires, Nuts & Bolts. Take out the

More information

Quick Reference Guide

Quick Reference Guide Quick Reference Guide Unlocked ¹ Table of Contents 2 Samsung Care 3 Know your device 5 Device setup 9 Home screen 12 Volume and ringtones 13 Hello Bixby 14 Useful apps 15 Calls 16 Voicemail 17 Contacts

More information

Tablet PC User Manual

Tablet PC User Manual Tablet PC User Manual Please read all instructions carefully before use to get the most out of your Time2Touch Tablet PC. The design and features are subject to change without notice. Contents Important

More information

Choices2Go App for ipad User Manual. To see the how-to video and the latest version of this user manual, please visit canassist.

Choices2Go App for ipad User Manual. To see the how-to video and the latest version of this user manual, please visit canassist. Choices2Go App for ipad User Manual To see the how-to video and the latest version of this user manual, please visit canassist.ca/cdc NOTE For important information about your ipad, please refer to Apple

More information

Contents: Installation of Equipment (Section 1)

Contents: Installation of Equipment (Section 1) Thank you for choosing this product. This quick operation guide will help you get set up and show you the basics of how to use the CCTV system. You will find the product excellent to use, providing you

More information

Flowcharts for Picaxe BASIC

Flowcharts for Picaxe BASIC Flowcharts for Picaxe BASIC Tech Studies Page 1 of 11 In the college you will use the PICAXE Programming Environment in order to carry out all of your program writing, simulating and downloading to the

More information

18.1 Access to Google Talk Web Browser Enter the main interface Change your home page Visit a Web page...

18.1 Access to Google Talk Web Browser Enter the main interface Change your home page Visit a Web page... 1 contents 1 Basic introduction... 4 2 The main function... 4 3 The main menu interface... 5 3.1 Message and status icons... 5 3.2 View the message... 5 4 Battery... 6 4.1 Using the charger... 6 4.2 Please

More information

Downloading & Reading ebooks On A Kindle

Downloading & Reading ebooks On A Kindle Downloading & Reading ebooks On A Kindle You bought the Kindle and have downloaded books from the Kindle Store. Cool! You ve also heard that you can get free ebooks to download from your local library

More information

Quick Guide ServiceNow Yale

Quick Guide ServiceNow Yale Installing and Accessing the Mobile App (Android) In this guide, you will learn how to install and access Yale s ServiceNow instance to use the application on the go. From the Google Play Store search

More information

DecisionPoint For Excel

DecisionPoint For Excel DecisionPoint For Excel Getting Started Guide 2015 Antivia Group Ltd Notation used in this workbook Indicates where you need to click with your mouse Indicates a drag and drop path State >= N Indicates

More information

Copyright Samsung Electronics Co., Ltd. All rights reserved.

Copyright Samsung Electronics Co., Ltd. All rights reserved. CONTENTS Copyright 2014 Samsung Electronics Co., Ltd. All rights reserved. It is subject to Apache License, Version 2.0 (hereinafter referred to as the "License"). You may not use this file except in compliance

More information

Rapid Test WINDOWS APP User Manual

Rapid Test WINDOWS APP User Manual Rapid Test WINDOWS APP User Manual Version Control Version Number Date Changed by 1 25th August 2016 Nicola Latter 2 15 th September 20016 Nicola Latter 3 27 th October 2016 Nicola Latter 4 8 th December

More information

How to connect the Video Doorbell to phone

How to connect the Video Doorbell to phone How to connect the Video Doorbell to phone 1. Install the UBell APP a. Open the App Store (for ios) or the Google Play Store(for Android) on your mobile devices, search for "Ubell" to download. b. Or scan

More information

Package Contents. Firmware Updates. Device Overview

Package Contents. Firmware Updates. Device Overview 1 This Quick Start Guide covers the basics for initial setup and usage of your SuperNova. For complete instructions on all features and functionality, refer to the device User Guide (preloaded in the device)

More information

BlackVue C App Manual

BlackVue C App Manual BlackVue C App Manual BlackVue C App Manual Contents Connecting to BLACKVUE CLOUD... 3 (A) Create an account... 3 (B) Register your dashcam with your account... 3 (C) Connect your BlackVue dashcam to a

More information

Quick Install Guide. SharePort Go Mobile Companion DIR-506L

Quick Install Guide. SharePort Go Mobile Companion DIR-506L Quick Install Guide SharePort Go Mobile Companion DIR-506L Version 1.11 September 21, 2012 Table of Contents Package Contents...3 LEDs...3 Insert and Charge Battery...4 User Scenarios...5 What is SharePort

More information