2023-02-14 16:43:41 +00:00
|
|
|
# LEGO type:standard slot:5 autostart
|
|
|
|
|
|
|
|
import os, sys
|
|
|
|
|
|
|
|
from spike import PrimeHub, LightMatrix, Button, StatusLight, ForceSensor, MotionSensor, Speaker, ColorSensor, App, DistanceSensor, Motor, MotorPair
|
|
|
|
from spike.control import wait_for_seconds, wait_until, Timer
|
|
|
|
from hub import battery
|
|
|
|
from math import *
|
|
|
|
|
|
|
|
############## Allgemein: Prüfe Batteriezustand ###############################
|
|
|
|
if battery.voltage() < 8000: #set threshold for battery level
|
|
|
|
print("Spannung der Batterie zu niedrig: " + str(battery.voltage()) + " \n"
|
|
|
|
+ "--------------------------------------- \n "
|
|
|
|
+ "#### UNBEDINGT ROBOTER AUFLADEN !!! #### \n"
|
|
|
|
+ "---------------------------------------- \n")
|
|
|
|
else:
|
|
|
|
print("Spannung der Batterie " + str(battery.voltage()) + "\n")
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
############################## NICHT ÄNDERN ###############################
|
|
|
|
def importFile(slotid=0, precompiled=False, module_name='importFile'):
|
|
|
|
print("##### START # IMPORTING CODE FROM SLOT "+str(slotid)+" ##############")
|
|
|
|
import os, sys
|
|
|
|
suffix = ".py"
|
|
|
|
if precompiled:
|
|
|
|
suffix = ".mpy"
|
|
|
|
with open("/projects/.slots","rt") as f:
|
|
|
|
slots = eval(str(f.read()))
|
|
|
|
print(slots)
|
|
|
|
print(os.listdir("/projects/"+str(slots[slotid]["id"])))
|
|
|
|
with open("/projects/"+str(slots[slotid]["id"])+"/__init__"+suffix,"rb") as f:
|
|
|
|
print("trying to read import program")
|
|
|
|
program = f.read()
|
|
|
|
print(program)
|
|
|
|
try:
|
|
|
|
os.remove("/"+module_name+suffix)
|
|
|
|
except:
|
|
|
|
pass
|
|
|
|
with open("/"+module_name+suffix,"w+") as f:
|
|
|
|
print("trying to write import program")
|
|
|
|
f.write(program)
|
|
|
|
if (module_name in sys.modules):
|
|
|
|
del sys.modules[module_name]
|
|
|
|
#exec("from " + module_name + " import *")
|
|
|
|
print("##### END # IMPORTING CODE FROM SLOT "+str(slotid)+" ##############")
|
|
|
|
#####################################################################################
|
|
|
|
|
|
|
|
|
|
|
|
################ Importiere Code aus andere Dateien #################################
|
|
|
|
|
|
|
|
# Importiere Code aus der Datei "iqrobot.py"
|
|
|
|
# Dateiname und Modulname sollten gleich sein, dann kann man Code Completion nutzen
|
|
|
|
importFile(slotid=6, precompiled=True, module_name="iqrobot")
|
|
|
|
import iqrobot as iq
|
|
|
|
print(iq.HELLO)
|
|
|
|
|
|
|
|
# Importiere Go Robot Code
|
|
|
|
#importFile(slotid=3, precompiled=True, module_name="gorobot")
|
|
|
|
#import gorobot as gr
|
|
|
|
#gr.exampleFour()
|
|
|
|
#gr.db.gyroRotation(90, 25, 35, 25)
|
|
|
|
|
|
|
|
|
|
|
|
################### Hauptcode ####################################
|
|
|
|
'''
|
|
|
|
Code zum Lösen einer Aufgabe, kann oben importierten Code nutzen
|
|
|
|
Es können auch pro Aufgabe eigene Funktionen geschrieben werden
|
|
|
|
Wichtig ist, dass die PORTS der Sensoren überall gleich sind
|
|
|
|
und auch `hub` als Instanz von PrimeHub
|
|
|
|
dh auch an die Funktionen im importierten Code übergeben werde
|
|
|
|
'''
|
|
|
|
|
|
|
|
# Initialisieren des Hubs, der Aktoren und Sensoren
|
|
|
|
hub = PrimeHub()
|
|
|
|
|
|
|
|
# Initialisiere Robot Klasse mit unseren Funktionen
|
2023-11-16 08:26:31 +00:00
|
|
|
iqRobot: iq.IQRobot = iq.IQRobot(hub)
|
2023-02-14 16:43:41 +00:00
|
|
|
|
|
|
|
# Führe Funktionen aus unser Robot Klasse aus:
|
|
|
|
iqRobot.show('HAPPY')
|
|
|
|
|
2023-11-22 19:16:47 +00:00
|
|
|
def huenchenaufgabe():
|
2023-11-22 18:16:58 +00:00
|
|
|
iqRobot.fahre_gerade_aus(40,60)
|
|
|
|
iqRobot.drehe(-40,True)
|
|
|
|
iqRobot.fahre_gerade_aus(20,60)
|
|
|
|
iqRobot.drehe(-20)
|
|
|
|
iqRobot.fahre_gerade_aus(55,60)
|
|
|
|
iqRobot.heber(10,30)
|
|
|
|
|
2023-11-22 18:19:01 +00:00
|
|
|
def hologram_alt():
|
2023-11-08 17:51:37 +00:00
|
|
|
iqRobot.fahre_gerade_aus(cm=75,speed=80)
|
|
|
|
iqRobot.drehe(45, False)
|
|
|
|
iqRobot.fahre_gerade_aus(cm=14,speed=70)
|
|
|
|
iqRobot.fahre_gerade_aus(cm=-13,speed=50)
|
|
|
|
iqRobot.drehe(-45, False)
|
|
|
|
iqRobot.fahre_gerade_aus(cm=-75,speed=50)
|
2023-02-14 16:43:41 +00:00
|
|
|
|
2023-11-22 18:19:01 +00:00
|
|
|
def druckmaschine():
|
|
|
|
iqRobot.fahre_gerade_aus(19,30)
|
|
|
|
iqRobot.drehe(-45)
|
2023-11-22 16:14:36 +00:00
|
|
|
iqRobot.fahre_gerade_aus(20,30)
|
|
|
|
iqRobot.fahre_gerade_aus(-15,30)
|
2023-11-22 18:19:01 +00:00
|
|
|
|
|
|
|
def hologram():
|
2023-11-22 16:14:36 +00:00
|
|
|
iqRobot.drehe(45)
|
|
|
|
iqRobot.fahre_gerade_aus(37.5,30)
|
|
|
|
iqRobot.drehe(45)
|
2023-11-22 18:19:01 +00:00
|
|
|
iqRobot.fahre_gerade_aus(15,30)
|
|
|
|
iqRobot.fahre_gerade_aus(-15,30)
|
2023-11-29 16:54:25 +00:00
|
|
|
|
2023-11-22 18:19:01 +00:00
|
|
|
def augmented_reality():
|
2023-11-22 16:14:36 +00:00
|
|
|
iqRobot.drehe(-135)
|
2023-11-22 18:19:01 +00:00
|
|
|
iqRobot.fahre_gerade_aus(42,30)
|
2023-11-22 16:14:36 +00:00
|
|
|
iqRobot.drehe(90)
|
2023-11-22 18:19:01 +00:00
|
|
|
iqRobot.fahre_gerade_aus(12,30)
|
|
|
|
iqRobot.schaufel(-100)
|
|
|
|
iqRobot.fahre_gerade_aus(-3,30)
|
2023-11-22 16:14:36 +00:00
|
|
|
iqRobot.drehe(90)
|
2023-11-22 18:19:01 +00:00
|
|
|
iqRobot.fahre_gerade_aus(20,30)
|
|
|
|
iqRobot.drehe(-90)
|
2023-11-22 16:14:36 +00:00
|
|
|
iqRobot.fahre_gerade_aus(5,20)
|
|
|
|
|
2023-11-22 18:19:01 +00:00
|
|
|
druckmaschine()
|
|
|
|
hologram()
|
2023-11-29 09:52:11 +00:00
|
|
|
augmented_reality()
|