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

Dependencies:   Terminal EthernetNetIf Pachube TextLCD mbed ConfigFile FirmwareUpdater

Committer:
abe00makoto
Date:
Mon Jun 06 19:56:43 2011 +0000
Revision:
1:1eb67d074bed
Parent:
0:a62f36392b9b
add set_time function. for fist use mbed

Who changed what in which revision?

UserRevisionLine numberNew contents of line
abe00makoto 0:a62f36392b9b 1 #ifndef MBED_GEIGERCOUNTER_CI_3BG_H
abe00makoto 0:a62f36392b9b 2 #define MBED_GEIGERCOUNTER_CI_3BG_H
abe00makoto 0:a62f36392b9b 3 #include "geigercounter.h"
abe00makoto 0:a62f36392b9b 4
abe00makoto 0:a62f36392b9b 5
abe00makoto 0:a62f36392b9b 6 class Geigercounter_SBM_20:public Geigercounter{
abe00makoto 0:a62f36392b9b 7
abe00makoto 0:a62f36392b9b 8 public:
abe00makoto 0:a62f36392b9b 9
abe00makoto 0:a62f36392b9b 10 Geigercounter_SBM_20(PinName pin,PinName spin):Geigercounter(pin,spin){}
abe00makoto 0:a62f36392b9b 11
abe00makoto 0:a62f36392b9b 12 float getusv(){
abe00makoto 0:a62f36392b9b 13
abe00makoto 0:a62f36392b9b 14 return (float)getcpm()/132.0;
abe00makoto 0:a62f36392b9b 15 }
abe00makoto 0:a62f36392b9b 16
abe00makoto 0:a62f36392b9b 17 };
abe00makoto 0:a62f36392b9b 18
abe00makoto 0:a62f36392b9b 19
abe00makoto 0:a62f36392b9b 20 #endif