-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6e70a63
commit dc8d307
Showing
1 changed file
with
12 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#!/usr/bin/env pybricks-micropython | ||
|
||
from pybricks import ev3brick as brick | ||
from pybricks.ev3devices import (Motor, TouchSensor, ColorSensor, | ||
InfraredSensor, UltrasonicSensor, GyroSensor) | ||
from pybricks.parameters import (Port, Stop, Direction, Button, Color, | ||
SoundFile, ImageFile, Align) | ||
from pybricks.tools import print, wait, StopWatch | ||
from pybricks.robotics import DriveBase | ||
|
||
# Write your program here | ||
brick.sound.beep() |