27 lines
815 B
C
27 lines
815 B
C
|
/**
|
||
|
* SSD1306xLED - Drivers for SSD1306 controlled dot matrix OLED/PLED 128x64 displays
|
||
|
*
|
||
|
* @created: 2014-08-12
|
||
|
* @author: Neven Boyanov
|
||
|
*
|
||
|
* This is part of the Tinusaur/SSD1306xLED project.
|
||
|
*
|
||
|
* Copyright (c) 2016 Neven Boyanov, Tinusaur Team. All Rights Reserved.
|
||
|
* Distributed as open source software under MIT License, see LICENSE.txt file.
|
||
|
* Please, as a favor, retain the link http://tinusaur.org to The Tinusaur Project.
|
||
|
*
|
||
|
* Source code available at: https://bitbucket.org/tinusaur/ssd1306xled
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#ifndef SSD1306XLED8X16_H
|
||
|
#define SSD1306XLED8X16_H
|
||
|
|
||
|
// ============================================================================
|
||
|
|
||
|
void ssd1306_string_font8x16xy(uint8_t x, uint8_t y, const char ch[]);
|
||
|
|
||
|
// ============================================================================
|
||
|
|
||
|
#endif
|