Creating an array of Classes

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Signal.cpp Source File

Signal.cpp

00001 #include "Signal.h"
00002 
00003 uint32_t Signal::getValue(void){
00004     
00005     return Value;
00006     
00007     }
00008     
00009 void Signal::setValue(uint32_t a){
00010     
00011     Value = a;
00012     
00013     }