sorens_sous_vide by soren.torp

This sketch is missing a short description

Embed This Sketch

Use the following HTML code to embed the sketch code above in your blog or website.

<iframe style="height: 510px; width: 100%; margin: 10px 0 10px;" allowTransparency="true" src="https://codebender.cc/embed/sketch:86168" frameborder="0"></iframe>

Embed The Serial Monitor

You can also embed the Serial Monitor section! Just use this HTML code.

<iframe style="height: 510px; width: 100%; margin: 10px 0 10px;" allowTransparency="true" src="https://codebender.cc/embed/serialmonitor" frameborder="0"></iframe>

  • 2017-04-17 Jiří Myšička

    Anybody got the same errors knowing the solution, please?

    Looks like your project uses header files or libraries that do not exist in our system, in your personal libraries or in your sketch. More info

    (sketch file) sorens_sous_vide.ino:88:5: error: no matching constructor for initialization of 'PID'
    PID pid(&input, &output, &setpoint, PID_P, PID_I, PID_D, DIRECT, UPDATE_INTERVAL);
    ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    (library file) PID_v1/PID_v1.h:18:5: note: candidate constructor not viable: requires 7 arguments, but 8 were provided
    PID(double*, double*, double*, // * constructor. links the PID to the Input, Output, and
    ^
    (library file) PID_v1/PID_v1.h:5:7: note: candidate constructor (the implicit copy constructor) not viable: requires 1 argument, but 8 were provided
    class PID
    ^
    (sketch file) sorens_sous_vide.ino:116:1: error: function definition is not allowed here
    { buttonGND.poll();
    ^
    (sketch file) sorens_sous_vide.ino:137:1: error: function definition is not allowed here
    {
    ^
    (sketch file) sorens_sous_vide.ino:145:1: error: function definition is not allowed here
    {
    ^
    (sketch file) sorens_sous_vide.ino:154:2: error: expected '}'
    }
    ^
    (sketch file) sorens_sous_vide.ino:97:1: note: to match this '{'
    {
    ^
    5 errors generated.