Skip to main content
The 2024 Developer Survey results are live! See the results

Questions tagged [calico-project]

Do not use this tag for questions related to Kubernetes or Project Calico. The Calico Project was "a framework for learning, doing, and playing with computation". Its website, calicoproject.org, is now dead, and it is no longer being maintained. Note that The Calico Project is entirely unrelated to Project Calico, a Kubernetes framework.

calico-project
1 vote
1 answer
100 views

Robots not dancing while WAV song plays

I am working on a project that requires a group of Scribbler 2s to dance at the start of playing a wav file and stop at the end of the file. (This is not the full code, but rather me testing how to ...
A. C.'s user avatar
  • 11
0 votes
3 answers
905 views

Verifying Mouse Position Within Triangle - Python

**This is part of programming course, and the modules we are asked to use are not generally used otherwise. I will do my best to explain my code (though it is pretty self-explanatory) EDIT: If you're ...
Aaron's user avatar
  • 1,016
0 votes
1 answer
273 views

Robotics - Recursive function for fractal.

I'm currently working with Myro/Calico with Robotics. I'm trying to run a recursive function of a fractal. I'm using Python. I've been following pseudocode here. Fractal So far I've tried to ...
user3577397's user avatar
1 vote
1 answer
335 views

Using Zxing.net in IronPython

I need to implement a QR code reader in Calico Python (IronPython) using Zxing.net. When I try to load the barcode image, I get the message: File "C:\Calico-3.1.0\Calico\zxingTest.py", line 6, in <...
Kevin S. Miller's user avatar
0 votes
1 answer
332 views

"timeRemaining is not defined" error

I'm taking a robotics course and I imported the Myro library in Calico. timeRemaining is supposed to be a predefined function in the Myro library but it keeps saying it's undefined. There's an ...
user3577397's user avatar
0 votes
1 answer
559 views

Terminating from a while true loop (Calico IDE)

I'm using the Graphics and Myro packages in the Calico IDE, can anyone figure a way for me to hit the 'q' key and have the program terminate? Currently when I hit the 'q' key I have to click the mouse ...
CT Hildreth's user avatar
-1 votes
2 answers
2k views

how to make text a class object in python

this is my entire code: from Graphics import * import random import time from Myro import * pt = Point(100,50) pink = makeColor(200,100,150) black = makeColor(0,0,0) red = makeColor(255, 0, 0) green =...
Nicole Christina's user avatar