Six crescent shaped legs

Dependencies:   mbed

Committer:
sim642
Date:
Tue Jun 21 14:43:44 2016 +0000
Revision:
47:4f418a4b0051
Parent:
7:8dcdb39efc0e
Byte based communication

Who changed what in which revision?

UserRevisionLine numberNew contents of line
sim642 7:8dcdb39efc0e 1 #ifndef SMOOTHER_H
sim642 7:8dcdb39efc0e 2 #define SMOOTHER_H
sim642 7:8dcdb39efc0e 3
sim642 7:8dcdb39efc0e 4 class Smoother
sim642 7:8dcdb39efc0e 5 {
sim642 7:8dcdb39efc0e 6 public:
sim642 7:8dcdb39efc0e 7 virtual float smooth(float value) = 0;
sim642 7:8dcdb39efc0e 8 };
sim642 7:8dcdb39efc0e 9
sim642 7:8dcdb39efc0e 10 #endif // SMOOTHER_H