Skip to content

Instantly share code, notes, and snippets.

View jaeoh2's full-sized avatar
๐Ÿ˜ƒ

Jaeoh Lee jaeoh2

๐Ÿ˜ƒ
View GitHub Profile
@jaeoh2
jaeoh2 / main.js
Created November 5, 2021 06:17
Javascript 7 segment LAB Timer using Arduino and Keyes IR Obstacle Avoidance Sensor Module.
const express = require('express');
const app = express();
const five = require('johnny-five');
const board = new five.Board();
app.get('', (req, res) => {
res.sendFile(__dirname + '/timer.html');
});
@jaeoh2
jaeoh2 / gprmc.py
Last active May 2, 2025 21:42
NMEA GPRMC Python Parser
#!/usr/bin/env python3
import sys
import time
import serial
import threading
class GPSRMC(object):
def __init__(self, dev='/dev/ttyUSB0', timeout=0.5, interval=0.1):