ネットワークアップデート機能とか、Pachubeへの情報登録とかの処理を追加しています

Dependencies:   Terminal EthernetNetIf Pachube TextLCD mbed ConfigFile FirmwareUpdater

geigercounter_sbm_20.h

Committer:
abe00makoto
Date:
2011-05-17
Revision:
0:a62f36392b9b

File content as of revision 0:a62f36392b9b:

#ifndef MBED_GEIGERCOUNTER_CI_3BG_H
#define MBED_GEIGERCOUNTER_CI_3BG_H
#include "geigercounter.h"


class Geigercounter_SBM_20:public Geigercounter{

public:

Geigercounter_SBM_20(PinName pin,PinName spin):Geigercounter(pin,spin){}

float getusv(){

   return (float)getcpm()/132.0;
}

};


#endif