This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
import thread | |
import sys | |
import time | |
import Adafruit_BBIO.GPIO as GPIO | |
def gpio_test(pin): | |
while True: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
import thread | |
import sys | |
import time | |
import Adafruit_BBIO.GPIO as GPIO | |
def gpio_test(pin): | |
while True: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
apt-get -y install easy-rsa | |
make-cadir /teste4 | |
cd /teste4 | |
source vars | |
./clean-all | |
./build-dh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
#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 |