Zeige zudem einen „X“ an, wenn du dich dem Sensor näherst.
smartfeldSensoren.onGesture(GroveGesture.Forward, function () {
basic.showLeds(`
# . . . #
. # . # .
. . # . .
. # . # .
# . . . #
`)
})
smartfeldSensoren.initGesture()smartfeldSensoren.onGesture(GroveGesture.Forward, function () { basic.showLeds(` # . . . # . # . # . . . # . . . # . # . # . . . # `) }) smartfeldSensoren.initGesture()
Spiele einen Ton ab, wenn winkst (= Welle-Geste).
smartfeldSensoren.onGesture(GroveGesture.Wave, function () {
music.play(music.tonePlayable(262, music.beat(BeatFraction.Whole)), music.PlaybackMode.UntilDone)
})
smartfeldSensoren.initGesture()smartfeldSensoren.onGesture(GroveGesture.Wave, function () { music.play(music.tonePlayable(262, music.beat(BeatFraction.Whole)), music.PlaybackMode.UntilDone) }) smartfeldSensoren.initGesture()