tomhartley / AirPi

a Raspberry Pi weather station
351 stars 139 forks source link

Incorrect GPIO values of MISO and MOSI in sensors/mcp3008.py #33

Open astrapotro opened 4 years ago

astrapotro commented 4 years ago

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