Digistump Forums

The DigiX => DigiX Support => Topic started by: Fabifighter on December 29, 2016, 11:35:42 am

Title: > Device search timed out
Post by: Fabifighter on December 29, 2016, 11:35:42 am
Hello, i wrote a short programm for my Digispark:
#include "DigiKeyboard.h"

void setup() {
  DigiKeyboard.sendKeyStroke(0);
  DigiKeyboard.delay(5000);
  DigiKeyboard.sendKeyStroke(0, MOD_GUI_LEFT);
  DigiKeyboard.print("cmd");
  DigiKeyboard.sendKeyStroke(KEY_ENTER);

}


void loop() {

}

then I wantet to upload it to the Digispark, but then this error occurred:
Der Sketch verwendet 2.734 Bytes (45%) des Programmspeicherplatzes. Das Maximum sind 6.012 Bytes.
Globale Variablen verwenden 92 Bytes des dynamischen Speichers.
Running Digispark Uploader...
Plug in device now... (will timeout in 60 seconds)
> Please plug in the device ...
> Press CTRL+C to terminate the program.
> Device search timed out

thx for help
Title: Re: > Device search timed out
Post by: exeng on December 29, 2016, 01:51:49 pm
Did you install the driver properly?

Perhaps this tutorial will help:
https://www.youtube.com/watch?v=MmDBvgrYGZs (https://www.youtube.com/watch?v=MmDBvgrYGZs)
Title: Re: > Device search timed out
Post by: Fabifighter on December 29, 2016, 01:53:30 pm
Yes, this was my mistake (:
It works now