Skip to content

Instantly share code, notes, and snippets.

View bassdread's full-sized avatar

bassdread

  • UK
View GitHub Profile
@bassdread
bassdread / .pre-commit-config.yaml
Created June 28, 2018 11:59
Example .pre-commit-config.yaml
# See http://pre-commit.com for more information
# See http://pre-commit.com/hooks.html for more hooks
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
sha: v0.9.2
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
- id: check-json
@bassdread
bassdread / monitor.ino
Created November 28, 2016 20:14
Arduino code for reading a TSL2561 and a ds18S20
#include <OneWire.h>
#include <Adafruit_Sensor.h>
#include <Adafruit_TSL2561_U.h>
int DS18S20_Pin = 3;
OneWire ds(DS18S20_Pin);
Adafruit_TSL2561_Unified tsl = Adafruit_TSL2561_Unified(TSL2561_ADDR_FLOAT, 12345);
void setup() {
@bassdread
bassdread / servo.ino
Created August 30, 2016 17:59
Simple servo code to control a gong
#include <Servo.h>
Servo myservo;
String inputString = ""; // a string to hold incoming data
boolean stringComplete = false; // whether the string is complete
void setup()
{
@bassdread
bassdread / gist:83b9b912e6a409d5baf2e357dda484c0
Created July 10, 2016 15:26
Error when trying to setup connection to Maplin Arm
>>> s = MaplinRobot()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "maplinrobot.py", line 26, in __init__
self.rctl = usb.core.find(idVendor=self.usb_vendor_id, idProduct=self.usb_prod_id) #Object to talk to the robot
File "/Library/Python/2.7/site-packages/usb/core.py", line 1263, in find
raise NoBackendError('No backend available')
usb.core.NoBackendError: No backend available
# fix
@bassdread
bassdread / sd_mapper.py
Created April 4, 2016 12:07
Fetch stats about a service's response time from Server Density.
import json
import requests
from datetime import datetime, timedelta
import serial
from time import sleep
from copy import deepcopy
DEVICE_PATH = "/dev/tty.usbmodem1421"
token = "YOUR_TOKEN"
// NeoPixel Ring simple sketch (c) 2013 Shae Erisson
// released under the GPLv3 license to match the rest of the AdaFruit NeoPixel library
#include <Adafruit_NeoPixel.h>
#ifdef __AVR__
#include <avr/power.h>
#endif
// Which pin on the Arduino is connected to the NeoPixels?
// On a Trinket or Gemma we suggest changing this to 1
#include <DHT.h>
#include <Wire.h>
#include <Adafruit_Sensor.h>
#include <Adafruit_BMP085.h>
#define DHTPIN 2
#define DHTTYPE DHT22
DHT dht(DHTPIN, DHTTYPE);
int LDR_Pin = A0;
import json
import requests
from datetime import datetime, timedelta
import serial
from time import sleep
DEVICE_PATH = "/dev/YOUR_DEVICE"
token = "YOUR TOKEN"
subject_id = "SERVICE ID FROM Server Density"
@bassdread
bassdread / website_monitor.ino
Created February 20, 2016 20:41
Basic code to control 8 bit shift register
/*
Adafruit Arduino - Lesson 4. 8 LEDs and a Shift Register - Brightness
*/
int latchPin = 5;
int clockPin = 6;
int dataPin = 4;
int outputEnablePin = 3;
byte leds = 0;
@bassdread
bassdread / alert_disk_failure.py
Created February 19, 2016 09:37
Yo when a disk fails smartctl asscessment
#!/usr/bin/python
import collections
from datetime import datetime
import json
import sys
try:
from pySMART import Device
except ImportError: