Skip to content

Instantly share code, notes, and snippets.

#!/usr/bin/python
import thread
import sys
import time
import Adafruit_BBIO.GPIO as GPIO
def gpio_test(pin):
while True:
#!/usr/bin/python
import thread
import sys
import time
import Adafruit_BBIO.GPIO as GPIO
def gpio_test(pin):
while True:
[Dialer Defaults]
Init1 = ATZ
Init2 = ATQ0 V1 E1 S0=0 &C1 &D2 +FCLASS=0
Init5 = AT+CGDCONT=1,"IP","claro.com.br"
Modem Type = Analog Modem
ISDN = 0
New PPPD = yes
Phone = *99#
Modem = /dev/ttyUSB0
Username = claro
#include <errno.h>
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <unistd.h>
#include <linux/i2c-dev.h>
#include <sys/ioctl.h>
#include <sys/types.h>
#include <sys/stat.h>
#!/usr/bin/python
from Adafruit_I2C import Adafruit_I2C
from time import sleep
ms5611 = Adafruit_I2C(0x77,2)
#reset
ms5611.writeList(0x1e,[])
sleep(2/1000.0)
@murilopontes
murilopontes / beaglebone-gy86.py
Created July 5, 2014 23:12
Beaglebone GY-86 driver
#!/usr/bin/python
from Adafruit_I2C import Adafruit_I2C
from time import sleep
import math
mpu6050 = Adafruit_I2C(0x68,2) # ADC 16bit
hmc5883 = Adafruit_I2C(0x1e,2) # ADC 12bit
ms5611 = Adafruit_I2C(0x77,2) # ADC 24bit
#!/usr/bin/python
from Adafruit_I2C import Adafruit_I2C
from time import sleep
import math
import numpy as np
from collections import deque
import sys
import matplotlib.pyplot as plt
import matplotlib.animation as animation
import threading
import time
from gps import *
class GpsPoller(threading.Thread):
def __init__(self):
threading.Thread.__init__(self)
self.session = gps(mode=WATCH_ENABLE)
def get_s(self):
return self.session
#!/bin/bash
apt-get -y install easy-rsa
make-cadir /teste4
cd /teste4
source vars
./clean-all
./build-dh
#
#Simple example on how to send and receive data to the Mbed over USB (on Linux) using pyUSB 1.0
#
import os
import sys
import usb.core
import usb.util
from time import sleep