have a nice day
Does anyone know how to run the Micro Mouse Simulator (MMS) With windows ? My main concern is as shown in the second image below . What format should we use to save the mouse code, and in which folder should the file be placed? I am currently using the Micro Mouse Simulator in .exe mode.” I am using python
import API
import sys
def log(string):
sys.stderr.write("{}\n".format(string))
sys.stderr.flush()
def main():
log("Running...")
API.setColor(0, 0, "G")
API.setText(0, 0, "abc")
while True:
if not API.wallLeft():
API.turnLeft()
while API.wallFront():
API.turnRight()
API.moveForward()
if __name__ == "__main__":
main()
# Basic Mouse Configuration for Micromouse Simulator
# Define Mouse Movement Settings
movement:
- forward_speed: 100 # speed of the mouse moving forward
- turn_speed: 90 # speed of the mouse turning
- max_turn_angle: 90 # maximum turning angle (in degrees)
# Define Sensor Settings
sensors:
- front_left: True # True = Sensor Active, False = Sensor Inactive
- front_right: True
- back_left: False
- back_right: False
- left_side: True
- right_side: True
# Define Initial Position (x, y coordinates) and orientation
position:
- x: 1 # Starting X position in the maze
- y: 1 # Starting Y position in the maze
- orientation: 0 # Initial orientation (0 is facing upwards)
# Maze configuration parameters
maze_params:
- grid_size: 16 # The size of the maze grid (16x16 grid)
- start_position: (1,1) # Starting point in the maze
- end_position: (14,14) # Goal position in the maze
I no have idea about what files to be uploaded above fields
name I think i can use any name
Directory ?
Build Command ?
Run Command ?
please advice

