BEGINNER EV3 PROGRAMMING LESSON By: Droids Robotics Topics Covered: Display Block.

Slides:



Advertisements
Similar presentations
BEGINNER EV3 PROGRAMMING LESSON By: Droids Robotics Topics Covered: Turning.
Advertisements

Squaring or Aligning on a Line
BEGINNER EV3 PROGRAMMING Lesson
By Droids Robotics Good Coding Practices: Start with Pseudocode BEGINNER EV3 PROGRAMMING LESSON © 2015 EV3Lessons.com, Last edit 4/1/
BEGINNER EV3 PROGRAMMING Lesson
BEGINNER EV3 PROGRAMMING Lesson
BEGINNER EV3 PROGRAMMING Lesson
Parallel Beams INTERMEDIATE EV3 PROGRAMMING LESSON By Droids Robotics
Parallel Beam Synchronization
By Droids Robotics Infrared Sensor Intermediate EV3 PROGRAMMING LESSON © 2015 EV3Lessons.com, Last edit 5/26/
Menu System ADVANCED EV3 PROGRAMMING LESSON By Droids Robotics
INTERMEDIATE PROGRAMMING LESSON By: Droids Robotics Turn Degrees My Block.
BEGINNER PROGRAMMING Lesson
BEGINNER EV3 PROGRAMMING Lesson
INTERMEDIATE PROGRAMMING LESSON By: Droids Robotics Debugging Techniques.
BEGINNER EV3 PROGRAMMING Lesson
INTERMEDIATE PROGRAMMING LESSON By: Droids Robotics Color Line Follower My Blocks with Inputs: Move Until Black © 2014, Droids Robotics, v. 2.0, Last edit.
INTERMEDIATE PROGRAMMING LESSON By: Droids Robotics My Blocks Overview Step-by-Step Visual Guide to Creating a My Block with Inputs with Outputs.
BEGINNER EV3 PROGRAMMING LESSON By: Droids Robotics Topics Covered: Switches.
INTERMEDIATE PROGRAMMING LESSON By: Droids Robotics Move Distance My Block (Move_Inches)
Calibrating Color Sensors
BEGINNER EV3 PROGRAMMING LESSON By: Droids Robotics Topics Covered: EV3 Basics Introduction to the EV3 Brick and Software.
BEGINNER EV3 PROGRAMMING Lesson
By Droids Robotics Line Followers: Basic to Proportional ADVANCED EV3 PROGRAMMING LESSON © 2015 EV3Lessons.com, Last edit 4/5/
 By Droids Robotics Code Contributed by FLL 1920 Line Following with Two Color Sensors and Proportional Control ADVANCED EV3 PROGRAMMING LESSON © 2015.
ADVANCED EV3 PROGRAMMING LESSON By Droids Robotics 1 Data Logging (Part 2)
Data Logging (Part 1).
BEGINNER EV3 PROGRAMMING Lesson
By Droids Robotics INTERMEDIATE EV3 PROGRAMMING LESSON SIMPLE & OPTIMIZED ULTRASONIC WALL FOLLOW.
BEGINNER EV3 PROGRAMMING LESSON By: Droids Robotics Using Sensor Data and Port View.
By Droids Robotics INTERMEDIATE PROGRAMMIN G LESSON DATA WIRES.
By Droids Robotics INTERMEDIATE PROGRAMMING LESSON BRICK BUTTONS AS SENSORS.
Bonus EV3 Programming Lessons By Droids Robotics PixyCam for MINDSTORMS Color Identifinder.
ADVANCED EV3 PROGRAMMING LESSON By Droids Robotics PROPORTIONAL ULTRASONIC WALL FOLLOWER © 2015, EV3Lessons.com, Last edit 11/17/2015.
BEGINNER EV3 PROGRAMMING LESSON By: Droids Robotics Topics Covered: Touch Sensor.
By Droids Robotics INTERMEDIATE PROGRAMMIN G LESSON COLOR LINE FOLLOWER MY BLOCK WITH INPUTS: MOVE FOR DISTANCE.
ADVANCED EV3 PROGRAMMING LESSON By Droids Robotics © 2015, EV3Lessons.com (last edit 4/9/2015) Stall Detection with code from Hoosier Girlz.
TABLET LESSONS INTRODUCTION TO THE EV3 BRICK AND SOFTWARE By Sanjay and Arvind Seshan.
BEGINNER PROGRAMMING LESSON
INTERMEDIATE PROGRAMMING LESSON
BEGINNER EV3 PROGRAMMING Lesson
BEGINNER EV3 PROGRAMMING Lesson
BEGINNER EV3 PROGRAMMING Lesson
By Sanjay and Arvind Seshan
By Sanjay and Arvind Seshan
BEGINNER EV3 PROGRAMMING Lesson
BEGINNER EV3 PROGRAMMING Lesson
BEGINNER EV3 PROGRAMMING Lesson
BEGINNER EV3 PROGRAMMING Lesson
BEGINNER EV3 PROGRAMMING Lesson
INTERMEDIATE PROGRAMMING LESSON
INTERMEDIATE PROGRAMMING LESSON
INTERMEDIATE PROGRAMMING LESSON
BEGINNER PROGRAMMING LESSON
INTERMEDIATE PROGRAMMING LESSON
BEGINNER EV3 PROGRAMMING Lesson
BEGINNER EV3 PROGRAMMING Lesson
By Sanjay and Arvind Seshan
BEGINNER PROGRAMMING LESSON
BEGINNER PROGRAMMING LESSON
INTERMEDIATE PROGRAMMING LESSON
BEGINNER EV3 PROGRAMMING Lesson
BEGINNER EV3 PROGRAMMING Lesson
Menu System.
BEGINNER EV3 PROGRAMMING Lesson
BEGINNER PROGRAMMING LESSON
BEGINNER EV3 PROGRAMMING Lesson
BEGINNER EV3 PROGRAMMING Lesson
INTERMEDIATE PROGRAMMING LESSON
BEGINNER EV3 PROGRAMMING Lesson
Presentation transcript:

BEGINNER EV3 PROGRAMMING LESSON By: Droids Robotics Topics Covered: Display Block

LESSON OBJECTIVES 1.Learn to use the Display Block to display text and images 2.Understand why the Display Block can be useful in programming Copyright © EV3Lessons.com 2015 (Last edit: 2/26/2015) 2

DISPLAY BLOCK The Display Block to show information and pictures on the screen You can control the location and size of text You can use this same block to display sensor readings and instructions. Located in Green Tab Copyright © EV3Lessons.com 2015 (Last edit: 2/26/2015) 3

MORE ON DISPLAY BLOCKS Two modes to display Pixel mode (Use for displaying images or text) 178 pixels left and right 128 pixels up and down Grid mode (Easier to use, only works for text mode) 22 columns of 8 pixels each 12 rows of 10 pixels each Small characters are 1 row and 1 column Large characters are 2 rows and 2 columns Copyright © EV3Lessons.com 2015 (Last edit: 2/26/2015) 4

DISPLAYING TEXT IN GRID MODE Text to be displayed Text size 0 – small font 1 – small, bold font 2 – large font Display Preview Erase Screen Column to start display Row to start display Black/White Display Text Size Switch Modes Step 1: Pick Display Block Step 2: Click on “Switch Modes” icon and hover over “text”. Then click on “grid”. The icon will change into a square with dots. Step 3: Use the box on the top right to enter the text you want to display Copyright © EV3Lessons.com 2015 (Last edit: 2/26/2015) 5

DISPLAY BLOCK CHALLENGE 1 Can you write a program to display text in the middle of the screen? Display “Hello World” Make the display block run for 3 seconds Can you also move while doing this? Copyright © EV3Lessons.com 2015 (Last edit: 2/26/2015) 6

CHALLENGE 1 SOLUTION Copyright © EV3Lessons.com 2015 (Last edit: 2/26/2015) 7

DISPLAYING AN IMAGE IN PIXEL MODE Step 1: Pick Display Block Step 2: Click on the “Select Mode” which has a folder icon and pick “image” Step 3: Use the empty box on the top right to pick the image you want to display Copyright © EV3Lessons.com 2015 (Last edit: 2/26/2015) 8

DISPLAY BLOCK CHALLENGE 2 Can you display eyes on the screen while moving? Alternate eyeballs that look left and right. Use the Display Block, Motor On and Wait Block Feel free to have fun with this challenge and make it yours! Copyright © EV3Lessons.com 2015 (Last edit: 2/26/2015) 9

CHALLENGE 2 SOLUTION Display Block Motor On Wait Block Motor Off Copyright © EV3Lessons.com 2015 (Last edit: 2/26/2015) 10

DISCUSSION GUIDE Why might you want to know how to use the display block? You might want to know what the sensor value your robot is seeing You might have to program a robot to stop when the robot reaches a red line but it stops before Does the robot see the same thing you see? You can display the value on the screen and check It’s a great debugging tool. You can learn more about debugging code in one of our Intermediate lessons. Copyright © EV3Lessons.com 2015 (Last edit: 2/26/2015) 11

CREDITS This tutorial was created by Sanjay Seshan and Arvind Seshan from Droids Robotics. More lessons are available at Author’s Copyright © EV3Lessons.com 2015 (Last edit: 2/26/2015) This work is licensed under a Creative Commons Attribution- NonCommercial-ShareAlike 4.0 International License.Creative Commons Attribution- NonCommercial-ShareAlike 4.0 International License 12