summaryrefslogtreecommitdiff
path: root/include/settings.h
blob: 1910ed7df1d9277bbb01f999977602dcba91a1d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#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;