Giter Site home page Giter Site logo

theslowgrowth / wunderkiste Goto Github PK

View Code? Open in Web Editor NEW
1.0 1.0 1.0 12.3 MB

A portable music player for children

License: Other

Makefile 0.20% C 96.17% C++ 2.56% Awk 0.01% Python 0.15% Assembly 0.92%
children hardware mp3-player music-player rfid rfid-rc522

wunderkiste's People

Contributors

theslowgrowth avatar

Stargazers

 avatar

Watchers

 avatar

Forkers

doityoursynth

wunderkiste's Issues

Wiki copy action doesn't copy images

When the wiki is updated after a merge on "master", only "*.md" files are copied to the Wiki, images are not included.

Images should be included as well.

"Internal error" during playback

While playing music, sometimes an "internal error" is triggered so that the status LED shows the "internal error" pattern. It seems related to #1 as it typically occurs at the transition from one file to another. Probably caused by incorrect handling of mp3 decoder return codes.

Add CI checks

e.g. Travis CI - use settings from Electrosmith Daisy - libdaisy.

Add "pause" and "resume"

Enter pause when pressing both buttons at the same time.
Resume when pressing any button while paused.

Automatically split bottom/top boards before gerber export

Currently the gerber files include both the top and bottom boards in one single set of gerber files. This is not supported by most PCB fabs. Using python scripting we could try to remove components and traces from the Kicad pcb files prior to the export like this:

import pcbnew

def isAllowed(position):
    return position.y > 160

pcb = pcbnew.LoadBoard("Wunderkiste.kicad_pcb")

for module in pcb.GetModules():
    ref = module.GetReference()
    print("- Module: " + ref)
    p = module.GetPosition()
    if not isAllowed(p):
        pcb.Delete(module)

pcb.Save("Wunderkiste_topOnly.kicad_pcb")

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.