1 / 48

Hack Day

Hack Day. Welcome to Hack Day! . Meet your mentor and your teammates! Share : What’ s your name? What school do you go to (or company do you work for ) ? What’s your favorite app? Why are you excited about the Technovation Challenge?. Technovation Mission and Vision.

rudolf
Download Presentation

Hack Day

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Hack Day

  2. Welcome to Hack Day! Meet your mentor and your teammates! Share: • What’s your name? • What school do you go to (or company do you work for)? • What’s your favorite app? • Why are you excited about the Technovation Challenge?

  3. Technovation Mission and Vision Technovation strives to promote women in technology by giving girls the confidence and skills they need to succeed in computer science and entrepreneurship. Our goal is to empower every girl to see themselves not just as users of technology---but as inventors, designers, builders, and entrepreneurs.

  4. Technovation (video)

  5. App Inventor • Beginner-level app building language • Completely web-based tool, requires an internet connection to use • Must be signed into your Gmail account first • Two major parts: Designer and Blocks Editor

  6. App Inventor: Designer Design the user interface of the app!

  7. App Inventor: Blocks Editor Program the functionality of the app - how it works!

  8. App Inventor: Emulator In case you don’t have a real phone to test with you can use the emulator. It simulates a phone on your computer.

  9. Set-up Wireless • Click on Settings App • Select Wireless & networks • Select Wi-Fi settings • Select Wi-Fi. A green check will appear by it. • Select Wi-Fi settings. Choose the network and password (if there is one) written on the board.

  10. Phone Settings for Development • Click on the Settings App • Select Applications.  This will open a new page. • Select "Unknown sources". A green check will appear by it. • Select Development. This will open a new page. • Select "USB debugging". A green check will appear. • Select "Stay awake". A green check will appear. • Hit back button until back at Settings screen.

  11. Activity: CrystalBall Hack In this tutorial, you’ll create an app that works like a crystal ball. Users think of a question such as “Will I win my soccer game?” and then tap the screen to see the crystal ball’s response. We’ll walk through it together.

  12. CrystalBall: Getting Started • To begin, go to gmail.com and sign into your email account • Create a Gmail account if you don’t have one • Open up a new tab in your browser, go to http://appinventor.mit.edu/ and click “invent” • Under My Projects, click “New” and name your project CrystalBall

  13. Activity: CrystalBall Hack In the Designer • Add a label with the text “What do you want to know?” • Add a label with the text “Shake the crystal ball and all will be revealed” • Put the 2 labels in a vertical screen arrangement • Add a button named “FortuneText” and set the background to be the Crystal Ball Image • Set the text of the button to be “”. • Add a label under the the button that says “Tap to Clear..” • Add an accelerometersensor

  14. Activity: CrystalBall Hack In the Blocks Editor • Get the Shaking Event Handler for the Accelerometer. • Put in a Set Fortune.Textblock in the event handler. • Connect a call pick random item from the list to the Set Fortune.Textblock • Connect a make a list block to the list value in the pick random item block. • Add the text “Yes”, “No”, “Maybe”, and “time will tell” to the list as items

  15. Activity: CrystalBall Hack In the Blocks Editor • Find the FortuneTextclicked event handler. • Set the FortuneText.Text to a blank text box.

  16. Activity: CrystalBall Hack On the phone • Package for the phone • Test it!

  17. Customizing Your App • Most fun part of app-building! • It’s good to always be thinking how you can make things better • Customizing your app helps you learn the tools better and prepare to make an app on your own

  18. Activity: CrystalBall Hack How can we customize this app? • Change the look • Background picture • Add a sound • Add more answers • Other ideas?

  19. Discussion • Read the tutorial questions on your worksheet • Discuss the answers in your group • Turn in to your teacher • Be prepared to share with the group

  20. Event-driven Programming • An event is an action that occurs outside the program • Usually from the User! • Examples: • Key presses • Screen Touches

  21. Events in Real Life • Just like with a computer, program events happen in your life everyday • Examples • Phone rings • Your friend tosses a ball at you

  22. Events in Real Life • What do you do when an event happens? • Phone rings • Answer the phone! • Your friend tosses a ball at you • Catch the ball! • These are called Event Handlers • Notice they can be different for each event

  23. Event-driven Programming • In CrystalBall, what was our event? • Phone was shaken • What did our event handler do? • Displayed an answer from the list!

  24. Variables • A named container that holds a value • The value can change • Your wallet • Sometimes might have $5 • Other times it might have $20 • Hair Color • Sally’s is Brown • Michael’s is …

  25. PaintPotHack In this tutorial, you create an app that allows the user to draw lines and dots of various colors on the screen.

  26. Pair Programming • Driver – hands on keyboard & mouse • Navigator – reads instructions and tells driver what to do • Switch every 5-10 minutes • Two brains are better than one

  27. Pair Programming in Practice

  28. Resources If you have problems • Watch the YouTube videos (Part 1 & 2) • Post questions to the P2PU forum

  29. PaintPotHack How can we customize the app? • Add more color buttons • Have a random color button • Use camera to add background image • Others?

  30. Camera Demo

  31. Discussion • Read the tutorial questions on your worksheet • Discuss the answers in your group • Turn in worksheet to your teacher • Be prepared to share your answers with the group

  32. MoleMash Hack In this app you will create a game that has a mole that jumps randomly around the screen every half second. If the user successfully touches the mole, then the score increases by one point.

  33. Resources If you have problems Watch the YouTube videos (Part 1, 2 & 3) Post question P2PU forum

  34. Procedure • A named sequence of steps • Why is it useful to make procedures? • Code Reuse, less coding • Only need to change code in one place if therearebugs or updates

  35. Procedures in Real Life • What do you do when brushing your teeth? • Put toothpaste on brush, add water, brush, spit, rinse your brush • It’s actually several steps represented by “brushing your teeth” • But your mom only needs to say “brush your teeth” and you know what she means

  36. Procedures in MoleMash What procedures did we use in MoleMash? What did they do? • MoveMole • Update the position of the mole • UpdateScore • Print the new score

  37. Debugging What are some ways you have found that work well to find errors in your app? • Proper Naming • Test frequently • Reread your code • Add Comments • Deactivate code that’s notin use • Use the Watch feature to see variables • Do It allows you to test procedures

  38. MoleMash Hack How can we customize it? • Add a second mole • Speed up the mole • Change the look • Change the mole • Change the background • Add a sound • Others?

  39. Discussion • Read the tutorial questions on your worksheet • Discuss the answers in your group • Turn in to your teacher • Be prepared to share

  40. Activity: Create Your Own App • Work alone or in pairs to design and develop your own application • Try to use the tools you’ve learned • Events • Variables • Lists • Procedures • Camera • Buttons • Labels • Accelerometer • ImageSprites • Timer • Sound

  41. Activity: Create Your Own App • Have another pair/person test your app • Do they like it? • Is it easy to use? • Do they have suggestions for improvement? • Describe your app to your group • Continue to work on your app at home • Show your friends & family!

  42. Discussion • Read the tutorial questions on your worksheet • Discuss the answers in your group • Turn in to your teacher • Be prepared to share your answers with the group

  43. Activity: No Text While Driving Hack In this tutorial, you’ll create an app that autoresponds to text messages while the user is driving. The user also has the option to have the app speak the message that was received.

  44. Resources If you have problems Watch the YouTube videos (Part 1, 2, 3, 4 & 5) Post questions to P2PU forum

  45. Activity: No Text While Driving Hack How can we customize this app? • Custom responses for different phone numbers • Others?

  46. Discussion • Read the tutorial questions on your worksheet • Discuss the answers in your group • Turn in to your teacher • Be prepared to share your answers with the group

  47. Wrap Up • Think-Pair-Share • Share 2 things you learned with a partner • Be prepared to share with the group • Get the contact info for your team and set up your first meeting for January!

  48. Before you go! Tweet us: @_technovation_ #technovation Join our Facebook community: Technovation Challenge

More Related