All Projects → junwha0511 → LiquidCrystal_I2C_Hangul

junwha0511 / LiquidCrystal_I2C_Hangul

Licence: other
아두이노 16x2 LCD 한글 출력 라이브러리

Programming Languages

C++
36643 projects - #6 most used programming language

Projects that are alternatives of or similar to LiquidCrystal I2C Hangul

picoLCD
Example code for interfacing with a LCD with a Raspberry Pi Pico
Stars: ✭ 25 (+56.25%)
Mutual labels:  lcd16x2, lcd20x4
OpenLCD
An open source serial LCD (HD44780) controller based on the ATmega328.
Stars: ✭ 28 (+75%)
Mutual labels:  lcd16x2, lcd20x4
Arduino-Debug
On-target sketch debugger for Arduino
Stars: ✭ 20 (+25%)
Mutual labels:  arduino-library
WiFiConnect
WiFi connection manager for ESP32 and ESP8266 with OLED support
Stars: ✭ 28 (+75%)
Mutual labels:  arduino-library
OpenWeather
Arduino library to fetch weather forecasts from OpenWeatherMap
Stars: ✭ 88 (+450%)
Mutual labels:  arduino-library
Grove LoRa 433MHz and 915MHz RF
No description or website provided.
Stars: ✭ 26 (+62.5%)
Mutual labels:  arduino-library
SparkFun CAN-Bus Arduino Library
No description or website provided.
Stars: ✭ 132 (+725%)
Mutual labels:  arduino-library
discord-arduino-bot
Easy to discord control your arduino with commands
Stars: ✭ 13 (-18.75%)
Mutual labels:  arduino-library
MAX31855
Arduino library for 14-bit MAX31855 K-thermocouple to digital converter
Stars: ✭ 20 (+25%)
Mutual labels:  arduino-library
EthernetENC
Ethernet library for ENC28J60. This is a modern version of the UIPEthernet library. EthernetENC library is compatible with all Arduino architectures with Arduino SPI library with transactions support. Only include EthernetENC.h instead of Ethernet.h
Stars: ✭ 58 (+262.5%)
Mutual labels:  arduino-library
SensorFusion
A simple implementation of some complex Sensor Fusion algorithms
Stars: ✭ 101 (+531.25%)
Mutual labels:  arduino-library
Adafruit TSL2591 Library
This is an Arduino library for the TSL2591 digital luminosity (light) sensors.
Stars: ✭ 46 (+187.5%)
Mutual labels:  arduino-library
SparkFun VL53L1X Arduino Library
A library for the laser based VL53L1X Time Of Flight distance sensor capable of detecting a target 4m away!
Stars: ✭ 57 (+256.25%)
Mutual labels:  arduino-library
arduino-dataflash
Support for Atmel Dataflash for the Arduino
Stars: ✭ 23 (+43.75%)
Mutual labels:  arduino-library
HCSR04
Arduino library for HC-SR04, HC-SRF05, DYP-ME007, BLJ-ME007Y, JSN-SR04T ultrasonic ranging sensor
Stars: ✭ 27 (+68.75%)
Mutual labels:  arduino-library
frt
Lightweight, easy-to-use wrapper around the Arduino_FreeRTOS_Library
Stars: ✭ 18 (+12.5%)
Mutual labels:  arduino-library
BMP180 Breakout Arduino Library
Arduino libraries for the BMP180 pressure sensor breakout board
Stars: ✭ 30 (+87.5%)
Mutual labels:  arduino-library
Somfy Remote Lib
Emulate a Somfy remote using a 433.42 MHz transmitter.
Stars: ✭ 43 (+168.75%)
Mutual labels:  arduino-library
SparkFun TB6612FNG Arduino Library
No description or website provided.
Stars: ✭ 40 (+150%)
Mutual labels:  arduino-library
HomeSpan
HomeKit Library for the Arduino-ESP32
Stars: ✭ 410 (+2462.5%)
Mutual labels:  arduino-library

LiquidCrystal_I2C_Hangul : LCD 한글 출력 라이브러리

Introduction

이 라이브러리는 I2C 통신을 사용하는 16x2 LCD 또는 20x4 LCD에서 한글을 출력할 수 있는 라이브러리입니다.

This library is a library that prints hangul(Korean) on 16x2 LCD or 20x4 LCD that uses I2C comunication.

Getting started

from Arduino Library Manager

Arduino IDE -> 스케치(Sketch) -> 라이브러리 포함하기(Include Library) -> 라이브러리 관리(Library Manager)에서 'LiquidCrystal_I2C_Hangul'을 검색하여 간편하게 설치할 수 있습니다.

from zip file from Github

현재 Repository에서 Releases 창의 마지막 Release를 다운로드 하여, Arduino IDE -> 스케치(Sketch) -> 라이브러리 포함하기(Include Library) -> .ZIP 라이브러리 추가 메뉴를 통해 라이브러리를 설치할 수 있습니다.

Documentation: Standard API

LiquidCrystal_I2C_Hangul 라이브러리에서는 기존 LiquidCrystal_I2C 라이브러리에 포함된 함수들을 지원합니다.

This Library supports the functions in 'LiquidCrystal_I2C' also.

https://www.arduino.cc/reference/en/

Documentation: Non-Standard API

한글 출력을 위해 다음과 같은 함수를 지원합니다.

  • printHangul(wchar_t* txt, byte firstPoint, byte len): 첫번째 인자로 wchar_t형의 한글 문자열을 입력하세요. 두번째 인자는 글자가 시작하는 위치(0~15), 세번째 인자는 글자의 길이입니다.

    ※ 공백 문자 및 특수문자는 지원되지 않습니다.(print 함수를 사용해주세요)

    ※ 'ㅡ'형 문자는 좌우 1칸을, 'ㅣ'형 문자는 좌우 2칸을 사용합니다.

  • setDelayTime(int t): 글자가 출력되는 속도를 설정합니다. (기본값: 1000ms)

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].