![](/media/cache/profiles/c8ecfaea0b7e3aa83b017a786d53b9e8.50x50_q85.jpg)
Save IR data
wwChipSelect.h@0:decd8d14cc06, 2011-08-31 (annotated)
- Committer:
- halfpitch
- Date:
- Wed Aug 31 15:50:30 2011 +0000
- Revision:
- 0:decd8d14cc06
Rev.A
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
halfpitch | 0:decd8d14cc06 | 1 | //Nest Egg Inc. |
halfpitch | 0:decd8d14cc06 | 2 | //http://nestegg.jp/ |
halfpitch | 0:decd8d14cc06 | 3 | //White Wizard Board SPI Chip Select Code |
halfpitch | 0:decd8d14cc06 | 4 | //Auther : Yoshinari kou |
halfpitch | 0:decd8d14cc06 | 5 | //2010/10/03 |
halfpitch | 0:decd8d14cc06 | 6 | |
halfpitch | 0:decd8d14cc06 | 7 | #include "mbed.h" |
halfpitch | 0:decd8d14cc06 | 8 | |
halfpitch | 0:decd8d14cc06 | 9 | class wwChipSelect |
halfpitch | 0:decd8d14cc06 | 10 | { |
halfpitch | 0:decd8d14cc06 | 11 | private: |
halfpitch | 0:decd8d14cc06 | 12 | DigitalOut ChipSelect; |
halfpitch | 0:decd8d14cc06 | 13 | public: |
halfpitch | 0:decd8d14cc06 | 14 | wwChipSelect(PinName); //constructor |
halfpitch | 0:decd8d14cc06 | 15 | void wwCSwrite(int); |
halfpitch | 0:decd8d14cc06 | 16 | }; |