Skip to content

Commit

Permalink
Wrong analog input mapping for BeagleBone
Browse files Browse the repository at this point in the history
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
  • Loading branch information
pruggia committed Aug 28, 2015
1 parent 79c9657 commit 69e299a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions platforms/beaglebone/beaglebone_adaptor.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 69e299a

Please sign in to comment.