You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Values of self.SPIMISO and self.SPIMOSI in sensors/mcp3008.py are wrongly coded.
This is how it is:
self.SPIMOSI = 23
self.SPIMISO = 24
And this is how i've done to work well in my raspi v1 b:
self.SPIMOSI = 24
self.SPIMISO = 23
The text was updated successfully, but these errors were encountered:
Values of self.SPIMISO and self.SPIMOSI in sensors/mcp3008.py are wrongly coded.
This is how it is:
self.SPIMOSI = 23
self.SPIMISO = 24
And this is how i've done to work well in my raspi v1 b:
self.SPIMOSI = 24
self.SPIMISO = 23
The text was updated successfully, but these errors were encountered: