aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/machine/board_esp-c3-32s-kit.go
blob: 09385aa3d863e0464a5a2bf9760c7c360f242e07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
//go:build esp_c3_32s_kit

package machine

// See:
//  * https://www.waveshare.com/w/upload/8/8f/Esp32-c3s_specification.pdf
//  * https://www.waveshare.com/w/upload/4/46/Nodemcu-esp-c3-32s-kit-schematics.pdf

// Digital Pins
const (
	IO0  = GPIO0
	IO1  = GPIO1
	IO2  = GPIO2
	IO3  = GPIO3
	IO4  = GPIO4
	IO5  = GPIO5
	IO6  = GPIO6
	IO7  = GPIO7
	IO8  = GPIO8
	IO9  = GPIO9
	IO18 = GPIO18
	IO19 = GPIO19
)

const (
	LED_RED   = IO3
	LED_GREEN = IO4
	LED_BLUE  = IO5

	LED = LED_RED

	LED1 = LED_RED
	LED2 = LED_GREEN
)

// I2C pins
const (
	SDA_PIN = NoPin
	SCL_PIN = NoPin
)