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

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

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

// RGB LED
const int RED_PIN   = 2; 
const int GREEN_PIN = 4; 
const int BLUE_PIN  = 6;

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


const int EN34 = 13;
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 = 3;