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
Use hall sensors to detect movement of a thing with a small magnet.
If the number of hall sensors is 6:
%21:UINT8_T:0,0,1,0,0,0,0,0 %21:UINT8_T:0,0,0,1,0,0,0,0 %21:UINT8_T:0,0,0,0,1,0,0,0
This block does not generate time-series data. See also #5.
The text was updated successfully, but these errors were encountered:
This commit 7ec68ee for PIC16F1825.
Sorry, something went wrong.
The implementation for PIC16F1829 requires a bug fix:
for(i=0; i<AINS; i++) { if ((value & mask) == 0) { <== this is the bug. analog_in[i] = 0; position[i] = 0; } else { analog_in[i] = ANALOG_IN[i]; } mask = mask << 1; }
No branches or pull requests
Use hall sensors to detect movement of a thing with a small magnet.
If the number of hall sensors is 6:
This block does not generate time-series data. See also #5.
The text was updated successfully, but these errors were encountered: