pattern v3

Fork of PATTERN by Projet robot

Pattern.h

Committer:
fab16
Date:
2017-03-18
Revision:
1:601c2fa986bf
Parent:
0:42a271a32851

File content as of revision 1:601c2fa986bf:

#include "m3pi.h"
#include "mbed.h"

class Pattern 
{ 
    
     protected:
         float vitesse;
         
    public :
         Pattern();
        ~Pattern();
        void carre();
        void triangle();
        void rectangle();
        void etoile();
    
};