Skip to content

Instantly share code, notes, and snippets.

View damp11113's full-sized avatar
❤️
Love open source

Dharm Pimsen damp11113

❤️
Love open source
View GitHub Profile
@damp11113
damp11113 / adrod 13.ino
Last active August 29, 2022 08:23
adrod 13
/*
* Created by damp11113
*
* This example code is in github https://gist.github.com/damp11113/62af5256702c661086f8ae6d2bb6716e
*/
#include <Wire.h>
#include <LiquidCrystal_I2C.h>
int lcdColumns = A5;
int lcdRows = A4;
@damp11113
damp11113 / devtools.js
Created April 9, 2022 01:58
inspect-element-for-android
(function() {
var script = document.createElement('script');
script.src = "//cdn.jsdelivr.net/npm/eruda";
document.body.appendChild(script);
script.onload = function() {
eruda.init()
}
})();