We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
It appears that the python API does not expose the setLamp method. We would like to use that from Python!
The text was updated successfully, but these errors were encountered:
spinkho21,
Check out the pixy_set_lamp_demo.py example in the pixy2/src/host/libpixyusb2_examples/python_demos folder for an example of using this method.
From pixy_set_lamp_demo.py :
pixy.set_lamp (1, 0);
The binding file that exposes the setLamp(...) method is pixy_python_interface.cpp which is located in the same folder.
From pixy_python_interface.cpp :
void set_lamp (int upper, int lower) { pixy_instance.setLamp (upper, lower); }
Cheers, John
Sorry, something went wrong.
No branches or pull requests
It appears that the python API does not expose the setLamp method. We would like to use that from Python!
The text was updated successfully, but these errors were encountered: