I purchased Adafruit FT232H Breakout - General Purpose USB to GPIO+SPI+I2C from Amazon
- First, check if device is detected
$ lsusb
Bus 003 Device 018: ID 0403:6014 Future Technology Devices International, Ltd FT232H Single HS USB-UART/FIFO IC
#!/bin/bash | |
# From https://gist.github.com/ryancdotorg/84275935f0b82578d8c222e2e915fc78 | |
# built binaries at https://ryanc-musl-bins.s3.amazonaws.com/SHA256SUMS.html | |
set -eo pipefail | |
set -x | |
export BUILD_SCRIPT_DATE="$(date -r "$0" -Iseconds)" | |
PV_VERSION=1.8.5 |
I purchased Adafruit FT232H Breakout - General Purpose USB to GPIO+SPI+I2C from Amazon
$ lsusb
Bus 003 Device 018: ID 0403:6014 Future Technology Devices International, Ltd FT232H Single HS USB-UART/FIFO IC
""" | |
Tested on Linux with python 3.7 | |
Must have portaudio installed (e.g. dnf install portaudio-devel) | |
pip install pyqtgraph pyaudio PyQt5 | |
""" | |
import numpy as np | |
import pyqtgraph as pg | |
import pyaudio | |
from PyQt5 import QtCore, QtGui |
#!/usr/bin/env python2 | |
""" | |
Author: takeshix <[email protected]> | |
PoC code for CVE-2014-0160. Original PoC by Jared Stafford ([email protected]). | |
Supportes all versions of TLS and has STARTTLS support for SMTP,POP3,IMAP,FTP and XMPP. | |
""" | |
import sys,struct,socket | |
from argparse import ArgumentParser |