Skip to content

Instantly share code, notes, and snippets.

View maxdee's full-sized avatar
💭
all my cool stuff is on gitlab now

MaxD / supermedia_art maxdee

💭
all my cool stuff is on gitlab now
View GitHub Profile
@bbx10
bbx10 / esp-wunderground.ino
Created October 29, 2015 15:05
ESP8266 get weather from Weather Underground
/****************************
The MIT License (MIT)
Copyright (c) 2015 by bbx10node@gmail.com
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
@fdemmer
fdemmer / artnet.py
Created November 29, 2013 12:29
send an art-net udp packet (ArtDMX)
#!/usr/bin/env python
import socket
import struct
class ArtNet(object):
PORT = 6454 # 0x1936
def __init__(self, port=PORT):
self._socket = None