This commit is contained in:
Konstantin Lampalzer 2022-10-07 16:35:37 +02:00
parent c16a7172e7
commit d4a7d8c0c0
186 changed files with 1 additions and 7056 deletions

View file

@ -1,32 +0,0 @@
.. _other_usage:
Beispiele
#########
Vorwärts und rückwärts fahren
*****************************
.. code-block:: python
import time
from compLib.Motor import *
def forward():
Motor.power(1, -30);
Motor.power(2, 30);
def backward():
Motor.power(1, 30);
Motor.power(2, -30);
def main():
print("hallo ich bin ein roboter beep buup")
forward()
time.sleep(1)
backward()
time.sleep(1)
if __name__ == '__main__':
main()