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

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

const int SDA_PIN = D2;
const int SCL_PIN = D1;

// RGB LED
const int RED_PIN   = D6; 
const int GREEN_PIN = D5; 
const int BLUE_PIN  = D0;

// MOTORS
const int IN1 = D7;
const int IN2 = D8;

const int IN3 = D3;
const int IN4 = D4;

// BUZZER
const int BUZZER_PIN = A0;