-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNotes.txt
50 lines (50 loc) · 2.13 KB
/
Notes.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/**************************************************************************************
* Basic Voltage Glitcher
*************************************************************************************/
/* - Designed with GroundStudio Jade Nano+ in mind, should work with any Atmega328p.
* - Used MOS Module based on IRF520N, should support a lot of Voltage and Amperage.
* - Customizable settings to control the length of the glitch in microseconds.
* - Customizable code before and after the glitch.
* - Easy use by sending commands through Serial. Easy to integrate in Scripts.
*/
/**************************************************************************************
* ------------------------------ Mechanical Design ------------------------------
*
* (Arduino) (MOS Module) (Power Source)
* PIN 9 --> SIG
* GND --> GND
* 5v --> VCC
* GND <-- GND(-)
* Vin <-- VCC(+)
* V+ --> Target Vin
* V- --> Target GND
*************************************************************************************/
/*
* ----- Glitch Command -----
* Send with: Glitch()
* What it does: Perform the glitch.
*
* ----- Set Pre Command -----
* Send with: SetPre(<value>)
* What it does: Set the wait time before the glitch in microseconds.
*
* ----- Get Pre Command -----
* Send with: GetPre()
* What it does: Print the configured value of the wait time before the glitch.
*
* ----- Set Glitch Command -----
* Send with: SetGlitch(<value>)
* What it does: Set the wait time of the glitch in microseconds.
*
* ----- Get Glitch Command -----
* Send with: GetGlitch()
* What it does: Print the configured value of the wait time of the glitch.
*
* ----- Set Post Command -----
* Send with: SetPost(<value>)
* What it does: Set the wait time after the glitch in microseconds.
*
* ----- Get Post Command -----
* Send with: GetPost()
* What it does: Print the configured value of the wait time after the glitch.
*/