I hereby claim:
- I am devdsp on github.
- I am devdsp (https://keybase.io/devdsp) on keybase.
- I have a public key whose fingerprint is 4FAB 9EF0 22FE 9941 C516 C179 D948 E348 19E3 6475
To claim this, I am signing this object:
| #define ENC_MASK B10000100 | |
| #define ENC_STATE0 B00000000 | |
| #define ENC_STATE1 B10000000 | |
| #define ENC_STATE2 B10000100 | |
| #define ENC_STATE3 B00000100 | |
| const byte PIN_ENC_A = 2; | |
| const byte PIN_ENC_B = 7; | |
| const byte PIN_ENC_P = 8; |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/perl | |
| use strict; | |
| use warnings; | |
| use AnyEvent::I3 qw(:all); | |
| my $i3 = i3(); | |
| $i3->connect->recv or die "Error connecting to i3"; | |
| my $output = undef; |
| #!/usr/bin/python | |
| import json | |
| from ftdi import * | |
| import math | |
| import time | |
| usleep = lambda x: time.sleep(x/1000000.0) | |
| def start(): |
| devdsp: | |
| name: Adam Thomas | |
| twitter: dev_dsp |
| #!/usr/bin/env python | |
| from PythonMagick import Image, Color | |
| from math import atan2, pi, pow,sqrt | |
| img = Image('128x128', 'white') | |
| xo = img.columns() / 2 | |
| yo = img.rows() / 2 | |
| for x in range(img.columns()): | |
| for y in range(img.rows()): |
| #!/usr/bin/perl | |
| use strict; | |
| use warnings; | |
| my ($minx,$miny,$maxx,$maxy); | |
| while(<>) { | |
| chomp; | |
| foreach my $cmd (split/;/) { |
| #include <string.h> | |
| #include <Ethernet.h> | |
| #include <SPI.h> | |
| #include <HttpClient.h> | |
| #include <EthernetClient.h> | |
| byte mac[] = { 0xDE, 0xAD, 0xBE, 0xE0, 0xFE, 0xED }; | |
| char server[] = "morphia.mhv"; |
| #include <TinyWireM.h> | |
| #define HMC5883L 0x1E //0011110b, I2C 7bit address of HMC5883 | |
| void pulse(int n){ | |
| while(n-- > 0) { | |
| digitalWrite(1,HIGH); | |
| delay(1); | |
| digitalWrite(1,LOW); | |
| delay(1); | |
| } |
| #include <Wire.h> | |
| void setup() | |
| { | |
| Wire.begin(); | |
| } | |
| void loop() | |
| { | |
| Wire.beginTransmission(0x21); | |
| Wire.write("A"); |