This is the vcdMaker demo project. See http://vcdmaker.org for details. vcdMaker is supposed to help engineers to debug their applications and systems. It transforms text log files into the VCD format which can be easily displayed as a waveform.

Dependencies:   mbed vcdLogger vcdSignal

Committer:
ketjow
Date:
Sat Feb 20 20:48:44 2016 +0000
Revision:
1:446154224f92
Parent:
0:9a59cffaafad
Child:
2:a13cde5c679c
vcdMaker Demo release 1.0

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ketjow 1:446154224f92 1 /*!
ketjow 1:446154224f92 2 @file light.hpp
ketjow 1:446154224f92 3
ketjow 1:446154224f92 4 The header of the light sensor signal class.
ketjow 1:446154224f92 5
ketjow 1:446154224f92 6 @par Full Description
ketjow 1:446154224f92 7 The header of the light sensor signal class.
ketjow 1:446154224f92 8
ketjow 1:446154224f92 9 @if REVISION_HISTORY_INCLUDED
ketjow 1:446154224f92 10 @par Edit History
ketjow 1:446154224f92 11 @li [0] wojciech.rynczuk@wp.pl 20-JAN-2015 Initial file revision.
ketjow 1:446154224f92 12 @endif
ketjow 1:446154224f92 13
ketjow 1:446154224f92 14 @ingroup Signal
ketjow 1:446154224f92 15
ketjow 1:446154224f92 16 @par Copyright (c) MMXV Wojciech Rynczuk
ketjow 1:446154224f92 17
ketjow 1:446154224f92 18 Distributed under MIT License
ketjow 1:446154224f92 19
ketjow 1:446154224f92 20 */
ketjow 1:446154224f92 21
ketjow 0:9a59cffaafad 22 #include "mbed.h"
ketjow 0:9a59cffaafad 23 #include "signal.hpp"
ketjow 0:9a59cffaafad 24
ketjow 0:9a59cffaafad 25 class Light : public AnalogIn, public Signal
ketjow 0:9a59cffaafad 26 {
ketjow 0:9a59cffaafad 27 public:
ketjow 0:9a59cffaafad 28 Light(const string& name, const PinName pin, Logger& logger);
ketjow 0:9a59cffaafad 29
ketjow 0:9a59cffaafad 30 void PrintState();
ketjow 0:9a59cffaafad 31 float m_LightPrev;
ketjow 0:9a59cffaafad 32 float m_LightCurr;
ketjow 0:9a59cffaafad 33 };