This file contains hidden or 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
int count = 0; | |
int position = 1; | |
PImage sky; | |
void setup() { | |
fullScreen(); | |
} | |
void draw() { | |
count++; |
This file contains hidden or 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
######################################################################### | |
# Wifiscanner.py - A simple python script which records and logs wifi probe requests. | |
# Author - D4rKP01s0n | |
# Requirements - Scapy and Datetime | |
# Inspiration - Tim Tomes (LaNMaSteR53)'s WUDS https://bitbucket.org/LaNMaSteR53/wuds/ | |
# Reminder - Change mon0 (around line 65) to your monitor-mode enabled wifi interface | |
######################################################################### | |
from datetime import datetime |
This file contains hidden or 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
// NOTE: no coil_write mapping yet | |
const int dataPin = 13; | |
const int latchPin = 14; | |
const int clockPin = 12; | |
int numOfRegisters = 4; | |
byte registerState[4]; | |
This file contains hidden or 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 pathfinder.*; | |
Graph[] gs = new Graph[4]; | |
PImage[] graphImage = new PImage[4]; | |
int start[] = new int[4]; | |
int end[] = new int[4]; | |
float nodeSize[] = new float[4]; | |
int graphNo = 0; | |
int algorithm; |
This file contains hidden or 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
/** | |
* This little program runs in the Arduino, one that is plugged | |
* to a computer with a USB cable. This cable will be our "serial" | |
* connection. In the computer we will run the P5 sketch that will | |
* tell the Arduino through "serial" when to do its thing. | |
* | |
* 1. Load this program into your Arduino. | |
* 2. Load the Processing sketch, change the "serial port" in the P5 code to point to the correct Arduino. | |
* 3. Run the processing sketch. | |
* 4. Buzzzzzz |