Hackaday.io Hackaday.io
Projects
Recently Updated Most Likes Newest Project Lists
Discover Contests Courses Stack
More
Courses Tutorials Events Hackerspaces Hackaday.com Tindie Marketplace
Sign up Log in
Close
0%
0%

davedarko

Web developer and arduino tinkering, LEDs blinking sci-fi nerd - "I'm a peacock, you gotta let me fly"

Berlin, Germany, Europe, Earth
Following Follow me
Send a private message
Similar accounts worth following
49.2k Followers
362 Following
115 Projects
2.5k Likes
  • Projects 115
    • View All
  • Contributions 27
    • View All
  • Lists 1
    • View All
  • Pages 74
    • View All
  • Following 3527
    • View All
  • Bits 274
davedarko
Send a private message

Who I Am

Landed on my feet at -removed company name- when I was thrown out of university. My dad is responsible for my interest in electronics. I saw smoke and things exploded and I heard him cursing... didn't know it wasn't supposed to be that way but it was interesting to watch :)

Why I'm on Hackaday.io

Follow me on Mastodon!

arduino javascript php mysql mqtt ESP12 ESP8266 led Blinking game boy LAMEBOY
  • GitHub
  • OSHpark
  • YouTube
  • Instagram
  • mastodon

This user joined on 03/24/2014.

Hackaday Prize Collaboratorium: 1

My Projects

3.8k
85
29
98
Space Invaders inspired PCB art thing
Project Owner Contributor

LED handheld

davedarkodavedarko

895
18
0
20
inofficial conference badge for 35c3
Project Owner Contributor

Penghicorn

davedarkodavedarko

5.4k
74
24
74
whowhow. whowhow. - formally known as purple rider
Project Owner Contributor

K.I.T.T. - KNIGHT RIDER badge/brooch

davedarkodavedarko

9.6k
410
18
102
30ml jam jars turned into beautiful LED displays - nixietube like looking without the higher voltage fuzz
Project Owner Contributor

Fixietube - Fake Nixie Tube displays

davedarkodavedarko

  • The 2017 Hackaday Prize
23.3k
191
16
149
fully portable ESP12 project with battery charging and power muxing
Project Owner Contributor

LAMEBOY - another ESP12 handheld

davedarkodavedarko

829
27
5
35
We're going for it now, 612 LEDs, 51 of them controlled by a single IS31FL3733 chip
Project Owner Contributor

LEDodecahedron

davedarkodavedarko

View all 115 projects

Projects I Contribute To

  • The 2017 Hackaday Prize
418.5k
1.9k
155
1.4k
Pi Zero-based open-source mobile phone (that you can assemble for 50$ in parts)
Project Owner Contributor

ZeroPhone - a Raspberry Pi smartphone

aryaArya

  • Tindie
7k
434
7
255
A place for Tindie sellers and the community to meet and stretch their legs
Project Owner Contributor

Tindie Dog Park

tindieTindie

12.6k
504
88
140
Hackaday Europe SuperCon // Belgrade, Serbia // April 9 2016
Project Owner Contributor

Hackaday | Belgrade

aleksandar-bradicAleksandar Bradic

5.2k
218
44
132
[ an open-access peer-reviewed journal ]
Project Owner Contributor

Hackaday Journal of What You Don't Know

aleksandar-bradicAleksandar Bradic

5.9k
403
44
94
Official hackaday.io API project
Project Owner Contributor

Hackaday API

ivan-lazarevicIvan Lazarevic

21.4k
144
80
91
A contest to create awesome, useful square inch boards. Entries are closed.
Project Owner Contributor

The Square Inch Project

alphaninjaalpha_ninja

View all 27 projects

My Lists

Simple Add-on badges

SAO / Simple Add-on badges

Curated by davedarko

39
3

My Pages

  • getting the pico usb host example compiled correctly

    12/01/2022 at 19:51 • 3 comments

    I couldn't find the picoprobe with openOCD until I flashed it with a pre compiled picoprobe.uf2 file instead of compiling it myself. If it works, it works - I guess.

    found the related issue where I got the working picoprobe.uf2 got from: https://github.com/raspberrypi/openocd/issues/71
    Basically pointing to this site where you can download the probe firmware:

    https://www.raspberrypi.com/documentation/microcontrollers/raspberry-pi-pico.html#debugging-using-another-raspberry-pi-pico


    So apparently there's a tinyusb bug that will break the usb hid example and throw something like this at you:

    assertion "ep->active" failed: file "~/Projects/pico/pico-sdk/lib/tinyusb/src/portable/raspberrypi/rp2040/hcd_rp2040.c", line 164, function: hw_trans_complete

    This has something to do with the debug mode and you need a flag to run cmake first before compiling:

    PICO_SDK_PATH=~/Projects/pico/pico-sdk cmake .. -DCMAKE_BUILD_TYPE=Release
    make -j8

    I have yet to find out what the difference between -j8 and -j4 means but hey, that up their worked.

    link that helped: https://github.com/raspberrypi/pico-sdk/issues/649

    video that helped: 

  • Building openOCD for picoprobe on M1 mac

    12/01/2022 at 12:35 • 0 comments

    Had some trouble compiling the openOCD version for the picoprobe on the M1 macbook. This is based on a thread on github and the official guides, plus some blog posts that basically copied from each other.  

    https://github.com/raspberrypi/openocd/issues/7 

    #install additional brew libraries
    brew install libtool automake texinfo wget gcc pkg-config libusb
    
    # some path magic so compilers know where to look for stuff 
    export PATH="$(brew --prefix)/opt/texinfo/bin:$PATH"
    
    # download openocd files with picoprobe branch
    git clone https://github.com/raspberrypi/openocd.git \
      --branch picoprobe --depth=1
    
    cd openocd
    ./bootstrap
    
    # this enables the picoprobe and deactivates other modules that fail to compile otherwise
    CAPSTONE_CFLAGS="-I$(brew --prefix)/include" \                      
      ./configure --prefix="$(brew --prefix)"  \
      --enable-picoprobe --disable-presto --disable-werror --disable-openjtag
    
    make -j4
    
    # this will probably overwrite your current installation
    # and will break openjtag
    make install
    
    # optionally remove the installation folder
    cd ~/git
    rm -rf openocd
    
    

  • burning firmware onto an ST-Link to burn firmware onto anything else

    06/07/2021 at 18:37 • 0 comments

    at least I'm trying to find that out. The clones from aliexpress are supposed to be only able to program st chips. But I want to use it to program some SAMD-21 chips. Never done that as well. So this is a link drop first. Figuring it out for MAC OS.

    install open-OCD via homebrew

    for unlocking the stm for new firmware go here

    https://hackaday.io/project/162597-st-link-clone-repurposing/log/156668-programming

    install new firmware called cmsis-dap

    https://mvdlande.wordpress.com/2015/10/05/cmsis-dap-on-a-cheap-st-link-v2-mini-adapter/

    get this file

    https://raw.githubusercontent.com/x893/CMSIS-DAP/master/Firmware/STM32/hex/CMSIS-DAP-STLINK21.hex

    install with this line

    openocd -f interface/stlink.cfg -f target/stm32f1x.cfg -c "init" -c "halt" \
    
        -c "flash write_image ./CMSIS-DAP-STLINK21.hex" -c "shutdown"


    doing this to flash arturos latest keyboard firmware, had to install arm gcc first. Brew doesn't work as it's not trusted. Downloading here helped.

    https://developer.arm.com/tools-and-software/open-source-software/developer-tools/gnu-toolchain/gnu-rm/downloads

    to compile arturos fine firmware, you need to add the ARM stuff to your path, otherwise you compile and wonder why he wont find "gcc-arm-none-eabi" again. 

    export PATH="$PATH:/Applications/ARM/bin/"

View all 74 pages

Things I've Built

Tampermonkey scripts for hackaday.io

Some annoying things like the feedback button and design stuff. https://gist.github.com/davedarko/f6ef86c89c4d1df4cd36

Batman LED caps

Put a cap on a strawhat LED and you will get a small batman projector.

IKEA Expedit LED plug

Throw in some WS2812 LEDs and snap it on the crossings.

PiMac

3D printed case for the raspberry pi in a not so common but very known shape. Inspired by http://hackaday.com/2014/01/16/hackintosh-mac-pro-replica-using-a-trash-can/

Fubarino Contest: Game Boy Printer

A little library for the gameboy printer for an easy intergation into arduino sketches. Cross the serial streams (watchout Egon) on startup, it will print the had url. http://hackaday.com/2013/12/17/fubarino-contest-game-boy-printer/

Projects I Like & Follow

3.7k
57
7
48
Step-by-Step guide on how Lithium Battery charger circuit works and full assitance for DIY protect charger through USB port.
Project Owner Contributor

DIY Protected Lithium Battery Charger (TP4056)

diy-guy-chrisDIY GUY Chris

2k
17
9
20
An attempt at a DIY watch focused on low-power, high performance operation
Project Owner Contributor

Time Machine Mk. 8

eric-minEric Min

  • Supplyframe DesignLab: 2023 Hackada…
1.8k
8
2
14
Each line of the breadboard has an LED that glows based on the voltage on that line
Project Owner Contributor

Lightup breadboard

rasmusviil0rasmusviil0

1.4k
8
3
11
Is it a Ghost Sensor? That depends on if there are ghosts. It is definitely an environmental sensor and thermal camera in a 3d-printed case.
Project Owner Contributor

Ghost Sensor

youraveragemakerYourAverageMaker

802
3
4
9
A display module for 3d-printers made out of vintage mil-spec LED display modules
Project Owner Contributor

VinDisplay

michaelMichael

793
13
0
14
Fluffbug but smaller
Project Owner Contributor

Wee Bug

dehipudeʃhipu

777
4
0
2
A hacked OBEGRÄNSAD LED wall lamp, driven by an ESP32
Project Owner Contributor

IKEA OBEGRÄNSAD LED wall lamp + ESP32

ates-goralAtes Goral

605
149
0
8
Fully magnetic equivalent of a kinetic sand art table
Project Owner Contributor

Magnetic Kinetic Art Display

moritz-v-siversMoritz v. Sivers

522
5
6
10
Handheld RISC-V Mini Game Console with OLED Display
Project Owner Contributor

CH32V003 RISC-V Mini Game Console

stefan-wagnerStefan Wagner

446
14
5
10
Minimal quadrupedal robot with gripper
Project Owner Contributor

Miniature quadrupedal robot

kiyotaka-akasakaKiyotaka Akasaka

435
2
0
4
An arm for Astro, a snack dispenser and a cool can dispenser--3 ways to make Astro more useful.
Project Owner Contributor

Astro Robot Accessories

mike-rigsbyMike Rigsby

433
1
0
3
Minimal ATtiny85-based watch with OLED Display
Project Owner Contributor

Dumbwatch V2

masoMaso

249
2
0
2
A custom Feather with SAM L21 microcontroller, paired with wings that let us interactively explore its integrated op amp peripheral.
Project Owner Contributor

Feather Op Amp Lab

joey-castillojoey castillo

213
3
0
4
Basically an all in one Arduboy + Serial Flash with IO broken out onto an edge 0.1" double row header
Project Owner Contributor

ArduPak (formerly Arducart)

sjm4306sjm4306

198
17
0
5
A nixie clock with Dalibor Farny's beautiful R|Z568M Nixie tubes
Project Owner Contributor

Yet another Nixie Clock

sebastianSebastian

121
3
2
4
PineTree Light made with Engineering Student at Sammamish High School
Project Owner Contributor

PineTree - Sammamish High School

stanislas-bertrandStanislas Bertrand

103
1
0
4
A tiny console to take with your keys with only one button.
Project Owner Contributor

Ledboy micro

grossofabiangrossofabian

67
2
2
8
An cute astronaut sitting on your shoulder.
Project Owner Contributor

Astro-chan Badge

dehipudeʃhipu

View all

Share this profile

Share

Bits

Log In/Sign up to comment

Become a Hackaday.io Member

Create an account to leave a comment. Already have an account? Log In.

Sign up with Github
Sign up with Twitter
OR
bruno-js wrote 02/24/2023 at 20:28 • point

very nice projects :)

Will definitely take time to read more about you

  Are you sure? yes | no

davedarko wrote 02/25/2023 at 01:15 • point

ha thanks for the kind words :) most of my projects I see as not finished (yet?) 

  Are you sure? yes | no

Mitsuru Yamada wrote 07/24/2022 at 10:37 • point

Thank you for liking my #PERSEUS-9 homemade mobile 6502 computer!

  Are you sure? yes | no

Craig Hissett wrote 11/17/2021 at 10:56 • point

Thanks for liking my #Pi Pedalboard: Live/Recording Rig project matey!

  Are you sure? yes | no

Xasin wrote 07/20/2021 at 08:22 • point

Aw, thank you for the follow on my project!
I hope to make it one of the more professionally manufactured items on my list.

In that regard, did you ever work with an assembly service?
Some of your projects look like they were, and this is my first try at automated assembly ^^

  Are you sure? yes | no

davedarko wrote 07/20/2021 at 08:40 • point

You had me on the hook with the 29th century holo emitter technology, but the screenshot of the sensor array (sounds so trekkie too) got me :)

I have worked with aisler.net a bit, but have not yet done anything with JLCPCB. Heard lots of good things about makerfabs, since @deʃhipu , @arturo182 and @Brian Lough have worked with them and still do so. None of my projects here have been assembled by anyone other than me :3

  Are you sure? yes | no

danjovic wrote 06/19/2021 at 12:07 • point

Hey Dave, thanks for liking my #MonKlock project!

  Are you sure? yes | no

davedarko wrote 06/19/2021 at 18:03 • point

it's a great project, always a fan of different fonts and concepts for clocks :)

  Are you sure? yes | no

Josh Gadeken wrote 04/10/2021 at 17:29 • point

Thank you for liking and following my #Roomba RPi project!

  Are you sure? yes | no

kristina panos wrote 12/28/2020 at 17:07 • point

Thanks for liking my #bag hacking adventures!

  Are you sure? yes | no

kristina panos wrote 01/26/2020 at 10:15 • point

Thanks for liking my Wild Berry pedal! :D

  Are you sure? yes | no

davedarko wrote 01/26/2020 at 11:29 • point

It has all the things a good project needs: repurposed parts, 3D printed things, mechanical keys and an intriguing case :)

  Are you sure? yes | no

Craig Hissett wrote 11/30/2019 at 20:58 • point

Thanks for liking my #Raspberry Pi Cluster buddy!

  Are you sure? yes | no

Ken Yap wrote 11/27/2019 at 14:43 • point

Thanks for liking #An uninnovative linear LED display 

  Are you sure? yes | no

Patrick Van Oosterwijck wrote 11/11/2019 at 21:23 • point

Hi Dave, thanks for liking my new #PoE-FeatherWing project!

  Are you sure? yes | no

[deleted]

[this comment has been deleted]

davedarko wrote 11/06/2019 at 01:49 • point

Sure thing! I just spotted two nice boards from a competitor in the contest and had to hit like :)

  Are you sure? yes | no

Morning.Star wrote 10/27/2019 at 03:50 • point

Hey Dave, thanks for following dude. :-)

I havent seen you in HC in a long time, hope everythings cool...

  Are you sure? yes | no

davedarko wrote 10/27/2019 at 22:28 • point

must have unclicked you and clicked again :D I'm always super busy with the videos for "element14 presents" and joined a hackerspace some months ago.. hope you get along as well!

  Are you sure? yes | no

Nick Bild wrote 10/14/2019 at 00:49 • point

Thanks for the follow of Light Brakes (https://hackaday.io/project/168007-light-brakes).  Glad you like it!

  Are you sure? yes | no

Jacob Still wrote 06/29/2019 at 19:57 • point

Hey, thanks for taking a look at my project #DIYTIL311 !

  Are you sure? yes | no

PixelDud wrote 04/08/2019 at 19:04 • point

I like what's going on here... Keep up the good work.

  Are you sure? yes | no

Richard Hogben wrote 03/29/2019 at 00:37 • point

Ooh another project like from @davedarko :)

  Are you sure? yes | no

davedarko wrote 03/29/2019 at 11:04 • point

totally unexpected and uncalled for, all that pcb art on that eurorack panel - nice work :D #Mutable Instruments Clouds PCB Panel 

  Are you sure? yes | no

deʃhipu wrote 12/30/2018 at 22:43 • point

Um, so, how did you get 26438 followers?

  Are you sure? yes | no

WooDWorkeR wrote 12/30/2018 at 23:51 • point

i would say he created follow bots

  Are you sure? yes | no

davedarko wrote 12/31/2018 at 16:08 • point

it's the onboarding process, where they ask if you like certain projects and don't mind auto following people.

  Are you sure? yes | no

Eugene wrote 12/29/2018 at 07:21 • point

Thank you for following my StereoPi project! 

(https://hackaday.io/project/162954-stereopi-diy-stereoscopic-camera-with-raspberry)

  Are you sure? yes | no

Richard Hogben wrote 12/15/2018 at 15:13 • point

Thanks for liking the 'Not a Hack' project!

  Are you sure? yes | no

Next

Send a private message to davedarko

Become cool instantly

Create your Hackaday.io profile like davedarko and many others

Going up?

About Us Contact Hackaday.io Give Feedback Terms of Use Privacy Policy Hackaday API

© 2023 Hackaday

Report user as inappropriate

You are about to report the user "davedarko", please tell us the reason.