Sphero Edu

Posted on  by 



Starting in the Fall of 2020, Sphero Edu will no longer support iOS 9. This means Sphero Edu 6.0.0 and above will not be available on Apple devices running iOS 9. Removing iOS 9 support allows us to ensure our app is built using the latest, most secure development features. 9 Sphero Edu Educator’s Guide Join us online at eduspherocom Sphero Edu is the Sphero app for programming Sphero robots. Go beyond code by incorporating unique STEAM activities to complete with your bot. Designed for learner progression, Sphero Edu beginners can give robots commands by drawing a path in the app for their.

Control sounds and words which can play from your programming device's speaker or the robot (R2-D2 only).

Sound

await Sound.Category.SoundName.play(true) plays a sound from your programming device. When a sound is played, if you use the true boolean (aka: 'Wait' in the block canvas) the program waits until the sound plays completely before continuing to the next command. Change to false (aka: 'Continue' in the block canvas) to go to the next command immediately. If you want to use timing different than the wait/continue commands allow, you can follow a true (continue) command with a delay() command so the subsequent logic is delayed for the given duration.

Sphero Edu

You can randomize all sounds by not declaring a Category and SoundName, such as await Sound.play(true). If you declare a Category but leave the SoundName blank it will randomize in the given category, such as await Sound.Animal.play(true) as used in the Animal Toss Game.

Preview all of sounds below, or you can hear them in the blocks canvas in the app: Pruftechnik driver.

Droid Sound

Edu

Unique Star Wars Droid Sounds are available for BB-8, BB-9E and R2-D2 using DroidName.Sound.Category.SoundName.play(). The droid names are written as BB8, BB9E, and R2D2 and they can only be played on the intended Droid. This works the same as the sound command, except that the wait and continue boolean is not available. For example, to play the R2-D2 Burnout sound use R2D2.Sound.General.Burnout.play().

*R2-Q5 Droid Sounds are not available

Sphero Edu Robot

Speak

Sphero

Http://sphero.com/download

EduSphero

await speak() will speak a string from your programming device using the text-to-speech engine, in any language supported by your device. You can add a lot of interesting logic to your programs with this command. For example, in the Magic 8-Ball program you can change the speak command to some fun answers like await speak('Hello World', true). Download schulze elektronik port devices driver. You can also concatenate string values (see the + button on the block canvas) to make them dynamic. The additional values can be variables, parameters, or sensors, and/or in the form of numbers, strings, booleans, or colors. The wait/continue playback (true/false boolean) is handled the same as the Play Sound command. For example, to speak the current heading use await speak(buildString('The heading is' + Math.round(getHeading())), true). **





Coments are closed