1
0
mirror of https://github.com/hybridgroup/gobot.git synced 2025-04-26 13:48:49 +08:00
hybridgroup.gobot/platforms/jetson/jetson_pin_map.go

33 lines
385 B
Go
Raw Normal View History

2021-08-01 15:27:57 +09:00
package jetson
var gpioPins = map[string]int{
"7": 216,
"11": 50,
"12": 79,
"13": 14,
"15": 194,
"16": 232,
"18": 15,
"19": 16,
"21": 17,
"22": 13,
"23": 18,
"24": 19,
"26": 20,
"29": 149,
"31": 200,
"32": 168,
"33": 38,
"35": 76,
"36": 51,
"37": 12,
"38": 77,
"40": 78,
2021-08-01 15:27:57 +09:00
}
2022-10-22 20:08:55 +09:00
// pin to pwm channel (pwm0, pwm2)
var pwmPins = map[string]int{
"32": 0,
"33": 2,
2022-10-22 20:08:55 +09:00
}