Welcome to our community

Be apart of something great, join today!

How to convert eCWPK to dCWPK

int pin = 13; // LED PIN

const int stbPin = A1; // stb trigger input ( RESET )
const int A20Pin = A2; // Axx pin output


int x = 10;
int y = 10;
int done = 0;


void setup()
{

Serial.begin(9600);
pinMode(LED_BUILTIN, OUTPUT);
pinMode(stbPin, INPUT);
pinMode(A20Pin, OUTPUT);
pinMode(13, OUTPUT); // setup glitch point
delay(2000); // time to glitch begin after stb start
digitalWrite(pin, HIGH); // glitch ON
delay(1000); // wait 1000 = 1 second left
digitalWrite(pin, LOW); // glitch OFF

}




void loop()
{

if (digitalRead(stbPin) == HIGH && done == 0 && x <= 2000 && y <=1000 )
{
Serial.write("STB POWERED ON ...\n");

// Begin Glitch
Serial.write("Delay_X: ");
Serial.print(x);
Serial.write(" ");
digitalWrite(A20Pin, HIGH);
delay(x);
digitalWrite(A20Pin, LOW);

x = x+5;

digitalWrite(LED_BUILTIN, HIGH); // turn the LED on (HIGH is the voltage level)
delay(500); // 1 seconde de delai
digitalWrite(LED_BUILTIN, LOW); // turn the LED off by making the voltage LOW
delay(5000); // wait for 5 seconds

}

}
Hi Man , this glitch is for Sti 7105 or 7111 ?
 
You are all scammers, you collect information from other members and then say you know and charge a fortune, only to not respond after receiving the amounts. Instead of helping, they keep it a secret and then take it to the cemetery.
 
Back
Top