summaryrefslogtreecommitdiff
path: root/include/settings.h
blob: b8068c774ff430639bb97b02eaeea2d1fbc2a227 (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
#pragma once

// OLED
const int OLED_WIDTH = 128;
const int OLED_HEIGHT = 64;
const int OLED_ADDR = 0x3C;

const int SCL_PIN = 10;
const int SDA_PIN = 8;

// RGB LED
const int RED_PIN = 9;
const int GREEN_PIN = 7;
const int BLUE_PIN = 5;

// MOTORS
const int EN12 = 40;
const int IN1 = 38;
const int IN2 = 36;

const int EN34 = 39;
const int IN3 = 37;
const int IN4 = 35;

// const int EN34 = 13;
// const int IN3 = 7;
// const int IN4 = 5;

// BUZZER
const int BUZZER_PIN = 13;