Not working at all for me
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!
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
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...
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.
Have tried with DELAY but no output. Hardware is ok, https://github.com/Seytonic/Duckduino-microSD works.