We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cad10e2 commit 08fb137Copy full SHA for 08fb137
Adafruit_GPIO/Platform.py
@@ -47,6 +47,11 @@ def platform_detect():
47
# Linux-3.8.13-bone47-armv7l-with-debian-7.4
48
elif plat.lower().find('armv7l-with-debian') > -1:
49
return BEAGLEBONE_BLACK
50
+ # Handle Beaglebone Black
51
+ # Platform output on Ubuntu ~July 2014:
52
+ # Linux-3.8.13-bone56-armv7l-with-Ubuntu-14.04-trusty
53
+ elif plat.lower().find('armv7l-with-ubuntu') > -1:
54
+ return BEAGLEBONE_BLACK
55
else:
56
return UNKNOWN
57
0 commit comments