23/10/2015 E.R.Edwards 23/10/2015 Staffordshire University School of Computing Introduction to Android Sensors.

Slides:



Advertisements
Similar presentations
Android Application Development Tutorial. Topics Lecture 4 Overview Overview of Sensors Programming Tutorial 1: Tracking location with GPS and Google.
Advertisements

Support.ebsco.com Tutorial EBSCO Audiobooks. Welcome to EBSCOs Audiobooks tutorial. In this tutorial, we will look at how to search for Audiobooks as.
Programming with Android: System Services Luca Bedogni Marco Di Felice Dipartimento di Scienze dell’Informazione Università di Bologna.
Analog and digital data Skills: none IT concepts: analog to digital conversion, digital to analog conversion, sample rate, sample size, quality-file size.
Steven Koelmeyer BDS(hons)1 Reconfigurable Hardware for use in Ad Hoc Sensor Networks Supervisors Charles Greif Nandita Bhattacharjee.
Copyright © 2008 Pearson Education Inc., publishing as Pearson Addison-Wesley PowerPoint ® Lectures for University Physics, Twelfth Edition – Hugh D. Young.
Raspberry Pi Garden Monitoring System: Current Progress The Garden Gnomes: Stacy Mar, Brandon Meyers, Devin Mullins.
Phone guide. Sensor Thermometer thermometer for measuring ambient temperature. However, there's a thermometer in pretty much any smartphone, and some.
SDK Release Jan D Group STRI Samsung Game Framework (SGF)
© by Pearson Education, Inc. All Rights Reserved. 1 Introduction to Android From “Android: How to Program” By Paul Deitel and Harvey Deitel.
Win8 on Intel Programming Course Modern UI : Sensors Cédric Andreolli Intel Software.
TouchDevelop Create apps for all your devices
Android 2: Introduction to the Technology Kirk Scott 1.
ACOE161 – Digital Logic for Computers Dr. Konstantinos Tatas.
ACS-1805 Introduction to Programming 1805 introduces students to programming using technology for creating programs that run on Android devices. Android:
EMS Survey instruments The How, What and When Presented by James Tweedie, GeoMEM Ltd.
Sensing. Possible sensors on devices – Documented in SensorEvent class Accelerometer (m/s 2 ) – acceleration in x, y, z axes Magnetic Field (micro Tesla)
LLRP GUI Client User Guide
26/05/2016 E.R.Edwards 26/05/2016 Staffordshire University School of Computing Introduction to Android Practical 1 Changing the Eclipse Workspace Importing.
10/10/2015 E.R.Edwards 10/10/2015 Staffordshire University School of Computing Introduction to Android Overview of Android System Android Components Component.
Introduction to Systems Programming (CS 0449) PalmOS Tools: Developer Studio & Cygwin.
© by Pearson Education, Inc. All Rights Reserved. 1 Introduction to Android From “Android: How to Program” By Paul Deitel and Harvey Deitel.
7.2 V battery pack and charger Put the battery in the charger station at the end of the lab. period. Red light indicates charging. Ken Youssefi Introduction.
CS378 - Mobile Computing Sensing and Sensors Part 2.
Android Development Environment Environment/tools Windows Eclipse IDE for Java Developers (v3.5 Galileo) Java Platform (JDK 6 Update 18) Android.
Sensors Role In Agriculture
Jim Ng 15/1/2014 CENG4480 TUTORIAL 1. ABOUT ME Current MPhil Student supervised by Prof. Mak You can find me at Rm116 in SHB
Development of a microprocessor project with LPC2388 development board.
1 Welcome to EQ2430/EQ2440 Android Lecture - a crash course in Android March 21, 2012 Per Zetterberg School of Electrical Engineering.
App Inventor You are going to use App Inventor to make an application for your phone Smart Phone ‘s can hold many entertaining apps due to the amount of.
Ten Common Computer Problems That Can Easily Be Fixed By: Sam Merrifield.
How to Install Eclipse Click hereClick here to download Eclipse.
Sensors in android. App being more applicable Keeping track of your heart beat while jogging. Pointing the phone camera towards the night sky to know.
Sounding Board Programming and Data Retrieval 1. Sensoplex Software Download the Sensoplex files onto your computer’s desktop Extract all files Install.
Smart Ball A Ball Tracking System Dorian Chen Stephen Gu Constance Lu.
A CCELEROMETER. Accelerometers are devices that can measure acceleration, but in smartphones, they're able to detect changes in orientation and tell the.
Sensors For Mobile Phones  Ambient Light Sensor  Proximity Sensor  GPS Receiver Sensor  Gyroscope Sensor  Barometer Sensor  Accelerometer Sensor.
1 VHDL & Verilog Simulator. Modelsim. 2 Change the directory to where your files exist (All of the files must be in a same folder). Modelsim.
Creating a Zip File with a Password. 1.Right Click on the File or Folder you want to Zip. 2.Choose “Add to Zip”
1 Learning Android Wear Connect Android Wear Emulator to Android Device.
MY NEST A TECHNOLOGICAL OVERVIEW. NECKLACE Reason: Hidden Less like being tagged and branded (jail)
A method for using cloud computing for Android By: Collin Molnar.
Make an information leaflet about what the sensors do in a Smart Phone for people over 65 years of age. You can use PowerPoint, Word or Publisher.
Understanding Mobile Devices, Interactions, and Tools Lesson 1.
Embedded C- Language Lets Learn fundamentals !!. An Embedded system is combination of computer hardware and software, and perhaps additional mechanical.
The Doodlz app enables you to paint by dragging one or more fingers across the screen. The app provides options for setting the drawing color.
GloveFX Patent Liability Ryan DeFord Fred Grandlienard Kevin Mohr Andrew Gregor.
Windows 7 Ultimate To Load Click Simulation PPSX
Robotics Education & Competition Foundation
Lets Learn fundamentals !!
Introduction of Embedded C and demo programs
Advanced Computer Systems
Exploring Computer Science Lesson 6-5
Dr. Kyung Eun Park Summer 2017
@TeacherToolkit, license CC BY-NC-ND 3.0
Obtaining the Required Tools
Beauty Meets Power Elegant design with ultra-long-life battery
Emulator.
Programming Design ROBOTC Software Computer Integrated Manufacturing
The Finch Robot and the While Loop
Select “Save this to disk” option and click on “OK”
Create some project. Transferring an Android Application Project from One Instance of Eclipse to another.
Vinod Kulathumani West Virginia University
OS Sim (Operating System Concepts Simulator)
Android Programming Tutorial
Group 14 SmartGLove Patent Liability analysis
Introduction to LabVIEW
Introduction to LabVIEW
SOP of Installing the Drivers
Presentation transcript:

23/10/2015 E.R.Edwards 23/10/2015 Staffordshire University School of Computing Introduction to Android Sensors

23/10/2015 E.R.Edwards 23/10/2015 Staffordshire University School of Computing Hardware Example Program F Hardware.java is the start activity –Activates Menu.java –3 menu items Battery.java – demonstrates Battery sensors –Health, charging status, temperature Wifi.java – demonstrates Wifi –WiFi scan, signal strength Sensors.java –Accelerometer, Light, Magnetic Field, Temperature, Orientation, proximity

23/10/2015 E.R.Edwards 23/10/2015 Staffordshire University School of Computing Running Hardware F Download the zip file F Extract creating a folder called Hardware F Create a new Android project (from an existing file) F Create an emulator with several sensors. F Run the program on the emulator and test some of the sensors (note not all work on the emulator) F Check with your lecturer to see it working on an actual device.

23/10/2015 E.R.Edwards 23/10/2015 Staffordshire University School of Computing Additonal Resources F Sample code from Developer.android.com –AccelerometerPlayActivity meterPlay/src/com/example/android/accelerometerplay/A ccelerometerPlayActivity.htmlhttp://developer.android.com/resources/samples/Accelero meterPlay/src/com/example/android/accelerometerplay/A ccelerometerPlayActivity.html F Sensor simulator to attach to android emulator or