Skip to content

Instantly share code, notes, and snippets.

View arnans's full-sized avatar

Arnan (Roger) Sipitakiat arnans

View GitHub Profile
@arnans
arnans / tlic-support-policy.md
Last active April 3, 2026 23:33
tlic support policy website

นโยบายการให้ความช่วยเหลือของ TLIC

รวดเร็วขึ้น ชัดเจนขึ้น และมีประสิทธิภาพยิ่งขึ้น


ช่องทางการติดต่อหลัก

ช่องทาง เหมาะสำหรับ
@arnans
arnans / test.html
Last active March 27, 2023 01:21
Link to wokwi
https://wokwi.com/projects/360311886067116033
@arnans
arnans / lcd ex.c
Created December 23, 2022 02:35
Arduino LCD 16x2 sample code
#include <LCD_I2C.h>
LCD_I2C lcd(0x27, 16, 2); // Default address of most PCF8574 modules, change according
void setup()
{
lcd.begin(); // If you are using more I2C devices using the Wire library use lcd.begin(false)
// this stop the library(LCD_I2C) from calling Wire.begin()
lcd.backlight();
}