bad_ducky icon indicating copy to clipboard operation
bad_ducky copied to clipboard

Not working at all for me

Open sn0ball opened this issue 7 years ago • 4 comments

Hi, I'm having an issue in that I can't even run a hello world test. When monitoring, i get the mode, language and payload questions but when I unplug and plug it back in I'm getting nothing. It's being recognised as a usb input device on windows 7 64bit but I just can't seem to run any script. My transcript is below. I typed "a" left the language blank "NEW1.TXT"

` Available modes: m => management mode a => auto-disarm mode c => continuous delivery mode

Current mode: c

Current language:

Current payload: NEW1.TXT

Input mode:

Input language:

Input payload:

Get ready to have some fun :) `

Can you suggest any troubleshooting that I can do? It doesn't work on another windows 7 box or linux for me either. Thanks for creating such a great project!

sn0ball avatar Apr 30 '18 02:04 sn0ball

Hi, Can you add the following code at the end of the management functiion:

  mode = readConfig("mode.cfg");
  payload = readConfig("exec.cfg");
  lang = readConfig("lang.cfg");
  Serial.print("Current mode: ");
  Serial.println(mode);
  Serial.print("Current language: ");
  Serial.println(lang);
  Serial.print("Current payload: ");
  Serial.println(payload);

And copy here the output

nodauf avatar May 10 '18 10:05 nodauf

Sorry for not replying you earlier... Can you please give us content of your payload, (your NEW1.TXT file) and content of all CFG files from SD card? You can try to delete all CFG files and use demo scripts from the repo. Just type en for language when prompted...

mharjac avatar May 14 '18 11:05 mharjac

I ran into a similar problem, I solved it with a DELAY 1000 as the first command of every script I am using now. maybe you need to increase this value or may you also can reduce, but this works for me.

rowkois avatar Jun 02 '18 13:06 rowkois

Have tried with DELAY but no output. Hardware is ok, https://github.com/Seytonic/Duckduino-microSD works.

underwoodblog avatar Sep 06 '19 18:09 underwoodblog