Skip to content

Instantly share code, notes, and snippets.

View ismailuddin's full-sized avatar
🏠
Working from home

I Uddin ismailuddin

🏠
Working from home
View GitHub Profile
@ismailuddin
ismailuddin / ldn-bus-ticker-25022018.py
Created February 25, 2018 10:10
London Bus Ticker (www.scienceexposure.com) with LCD button support
# London Bus arrivals ticker
# Ismail Uddin, 2015
# www.scienceexposure.com
from TfLAPI import *
import Adafruit_CharLCD as LCD
import time
import sys
from multiprocessing import Process
@ismailuddin
ismailuddin / neopixel.ino
Last active April 4, 2020 21:17
Neopixel LED colour control via potentiometer
// Arduino code for Neopixel LED controller
// using a potentiometer and switch button
// (C) Ismail Uddin, 2015
// www.scienceexposure.com
#include <Adafruit_NeoPixel.h>
#define PIN 3
Adafruit_NeoPixel strip = Adafruit_NeoPixel(12, PIN, NEO_GRB + NEO_KHZ800);
int potPin = 2;
@ismailuddin
ismailuddin / neopixel-gemma.ino
Last active November 15, 2015 10:09
Neopixel Gemma
// Arduino code for Neopixel LED controller
// using a potentiometer and switch button
// (C) Ismail Uddin, 2015
// www.scienceexposure.com
#include <Adafruit_NeoPixel.h>
#define PIN 0
Adafruit_NeoPixel strip = Adafruit_NeoPixel(12, PIN, NEO_GRB + NEO_KHZ800);
int potPin = 2;
@ismailuddin
ismailuddin / test.js
Last active September 5, 2015 06:15
Johnny-Five / Node-pixel test
pixel = require("node-pixel");
five = require("johnny-five");
var board = new five.Board();
var randomColor = function (low, high) {
return Math.floor(Math.random() * (high - low) + low);
}
board.on("ready", function() {