Skip to content

Commit

Permalink
Update Heritance.ino
Browse files Browse the repository at this point in the history
  • Loading branch information
luisllamasbinaburo authored Apr 17, 2018
1 parent 146a1a7 commit 449ebda
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions examples/Heritance/Heritance.ino
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@ enum Input

Input input;

// Declaradas aqui porque vamos a usarlo en nuestra clase
void printMarkup();
void activateTimer();
bool timerExpired();

// Definicion de la red de petri del ejemplo
class MyPetriNet : public PetriNet
{
Expand Down Expand Up @@ -90,6 +95,7 @@ public:
}
};

// Instancia de nuestra re
MyPetriNet petriNet;

void setup()
Expand Down

0 comments on commit 449ebda

Please sign in to comment.