Code Monkey home page Code Monkey logo

Comments (4)

jschuenke1 avatar jschuenke1 commented on August 21, 2024

OK so I see how to address particular LED's using the fill command. Is there a way to make the startLED a parameter so it can be incremented in a do loop?

from rpi-ws2812-server.

tom-2015 avatar tom-2015 commented on August 21, 2024

not at this moment unfortunately
if you don't have too much LEDs you can just copy/paste I think

from rpi-ws2812-server.

tom-2015 avatar tom-2015 commented on August 21, 2024

you can do this now with {0} which will be replaced by loop index and extra parameter can be added to the loop = step.

do
     fill 1,FF0000,{0},1
loop 10,2

this is the same as:

for (i=0;i<10;i+=2){
     fill 1,FF0000,i,1
}

if you have a nested loops you can increase the {0} to {1}:

do
    do
          fill 1,FF0000,{1},1
    loop 10,2
loop

To create complicated animations it's better to run the ws2812svr as a system service listening on a TCP port and send commands to it with external program like python,C# or shell script.

Create png files with each pixel the color for the led you want and load them with the readpng command in a loop is another possibility. The newest version can read entire png/jpg files with a delay between rendering each pixel line.

from rpi-ws2812-server.

jschuenke1 avatar jschuenke1 commented on August 21, 2024

from rpi-ws2812-server.

Related Issues (20)

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.