-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Attach function to interrupt #13
Comments
I'd like to work on implementing this. However, I'll need some instructions on how to keep using the system-installed |
You should also ping the other contributors, perhaps they could be pleased to anwser you? If always needed of course. |
This is bit old question. So just for completness... It is possible to trigger events (raise IRQs) from Python and it is possible to hook a Python function/method to an IRQ. The later was only implemented recently and is not included in the latest release. Further if you need to mock out more than an IO port IRQ (digitalWrite hook) like ISP, ADC (analogRead), PWM (analogWrite) you also need the #33. Which includes few samples-ish here: |
Hello,
Frost of all: Great Project you're doing there!
I use it as a basis for an intern program to automatically test small arduino programs.
In order to do that effectively, I want to attach a function to an interrupt via python. How would I do that? Adding a python function that is
The text was updated successfully, but these errors were encountered: