Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
flasher.h
00001 #ifndef MBED_FLASHER_H 00002 #define MBED_FLASHER_H 00003 00004 #include "mbed.h" 00005 00006 class Flasher //クラスの生成 00007 { 00008 public: //外部から自由にアクセスできる関数 00009 Flasher(PinName pin); 00010 void flash(int n); 00011 00012 private: //外部から自由にアクセスできない関数 00013 DigitalOut _pin; //デジタル出力の宣言 00014 }; 00015 00016 #endif
Generated on Sat Aug 6 2022 03:16:24 by
1.7.2