Git Product home page Git Product logo

temporizador-arduino's People

Contributors

jeremias-cuello avatar

Watchers

 avatar

temporizador-arduino's Issues

Error en la función prenderNumero()

void prenderNumero(int numero[]){
  for(int i = pin_ini; i < pin_ini + 7; i++){
    digitalWrite(i, numero[i-2]);
  }
}

En la línea digitalWrite(i, numero[i-2]); funcionará, pero estará mal cuando quieran cambiar la constante pin_ini. Porque el segundo parametro de digitalWrite() se debió colocar numero[i - pin_ini] para que funcionara para cualquier valor de pin_ini, asi como esta funcionará porque pin_ini = 2, pero funcionará mal cuando cambien el valor de pin_ini.
La intención de colocar numero[i - pin_ini] justamente cuando en el primer ciclo del for i = pin_ini es la de que los elementos de numeros se puedan acceder desde el 0 hasta el 6. Porque i - pin_ini = 0 pero luego i irá incrementando entonces se accederan a todos los elementos de numeros desde el primero hasta el ultimo.

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.