-
Notifications
You must be signed in to change notification settings - Fork 2
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
Confirm all community modules work #5
Comments
tessel/t2-firmware#71 is relevant here – will need to show any pin limitations for these modules |
Modules written by me need to get rid of error messages specifying which pins can be used.. |
|
@Frijol Can you give me a quick summary for Button & PIR and their association with tessel/t2-firmware#69 ? I just tried this: var tessel = require('tessel');
tessel.port.A.pin[7].output(0);
tessel.port.A.pin[7].input();
function read() {
tessel.port.A.pin[7].read(function(error, data) {
console.log(data);
read();
});
}
read(); With both a button & PIR, and it worked as expected. |
It's an API dependency in both of those libraries – it's looking for the specific "rise" and "fall" events. I could write a workaround that is compatible with both T1 and T2 but it would be better if T2 was more API compatible with T1. Libraries specified here: |
Tested Thermocouple. Also I updated the README for the Thermocouple to use the new port labels. |
Cool! Thanks! |
I have hardware to test:
Authors, test please!
Special cases:
The text was updated successfully, but these errors were encountered: