Wrong analog input mapping for BeagleBone

According to https://github.com/CircuitCo/BeagleBone-Black/raw/master/BBB_SRM.pdf Page 105 these are the right mappings:
P9_36 -> AIN5
P9_35 -> AIN6
This commit is contained in:
Pablo Ruggia 2015-08-27 19:59:26 -07:00
parent 79c9657807
commit 69e299a451
1 changed files with 2 additions and 2 deletions

View File

@ -119,8 +119,8 @@ var analogPins = map[string]string{
"P9_37": "AIN2",
"P9_38": "AIN3",
"P9_33": "AIN4",
"P8_36": "AIN5",
"P8_35": "AIN6",
"P9_36": "AIN5",
"P9_35": "AIN6",
}
// BeagleboneAdaptor is the gobot.Adaptor representation for the Beaglebone