SSD1306 OLED display driver  1.3.1
This library is developed to control SSD1306 i2c/spi OLED display
ssd1306_spi.cpp
1 /*
2  Copyright (C) 2017 Alexey Dynda
3 
4  This file is part of SSD1306 library.
5 
6  This program is free software: you can redistribute it and/or modify
7  it under the terms of the GNU General Public License as published by
8  the Free Software Foundation, either version 3 of the License, or
9  (at your option) any later version.
10 
11  This program is distributed in the hope that it will be useful,
12  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  GNU General Public License for more details.
15 
16  You should have received a copy of the GNU General Public License
17  along with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19 
20 
21 #include "ssd1306_spi.h"
22 #include "ssd1306_spi_hw.h"
23 #include "intf/ssd1306_interface.h"
24 #include "ssd1306_spi_conf.h"
25 #include "lcd/lcd_common.h"
26 
27 int8_t s_ssd1306_cs = 4;
28 int8_t s_ssd1306_dc = 5;
29 
30 void ssd1306_spiInit(int8_t cesPin, int8_t dcPin)
31 {
32 #ifdef SSD1306_SPI_SUPPORTED
33  ssd1306_spiConfigure_hw();
34  ssd1306_spiInit_hw(cesPin, dcPin);
35 #endif
36 }
37 
39 {
40  digitalWrite(s_ssd1306_dc, LOW);
42 }
43 
45 {
46  digitalWrite(s_ssd1306_dc, HIGH);
48 }
49 
50 
void ssd1306_spiDataStart()
Definition: ssd1306_spi.cpp:44
void(* ssd1306_startTransmission)()
int8_t s_ssd1306_cs
Definition: ssd1306_spi.cpp:27
void ssd1306_spiCommandStart()
Definition: ssd1306_spi.cpp:38
int8_t s_ssd1306_dc
Definition: ssd1306_spi.cpp:28
void ssd1306_spiInit(int8_t cesPin, int8_t dcPin)
Definition: ssd1306_spi.cpp:30