Coder Social home page Coder Social logo

zmaker / arduino_cookbook Goto Github PK

View Code? Open in Web Editor NEW
218.0 218.0 126.0 702.38 MB

gli sketch del nuovo progetto Arduino Cookbook e dei video di YouTube

C++ 7.47% C 89.44% Processing 0.01% Python 0.05% PHP 0.01% HTML 0.01% JavaScript 0.17% Makefile 0.67% Shell 0.01% Lua 0.02% Assembly 0.08% G-code 2.07%

arduino_cookbook's People

Contributors

paoloaliverti avatar zmaker avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

arduino_cookbook's Issues

timer1 parameter nerver used

Bye!
I know you are already aware of this error because I saw it on youtube, I just wanted to remind you to correct it here too for those who do not watch youtube.

The error is the timer1 parameter which is not used in the mytimer function, it would have to replace the fixed parameter 1000 in the if (dt> = 1000)

Thanks and great job

#define errato

#define DHTPIN = 2

così com'è da errore, va omesso l' "=" :)

Reti Neurali - Funzione Derivata Sigmoide

Nel file NeuralNetwork.ino si riporta:

//la signoide e la sua derivata
float sigmoid(float x) {
  return (1/(1 + exp(-x)));
}
float dSigmoid(float x) {
  return (x*(1-x));
}

Non dovrebbe essere:

float dSigmoid(float x) {
return (sigmoid(x)*(1-sigmoid(x)));
}

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.