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.
IO3714.h
00001 00002 #ifndef MBED_IO3714_H 00003 #define MBED_IO3714_H 00004 00005 #include "mbed.h" 00006 00007 class IO3714 { 00008 public: 00009 IO3714(PinName mosi, PinName sclk, PinName clr_n, PinName stb_n); 00010 void write(unsigned int data); 00011 private: 00012 SPI _spi; 00013 DigitalOut _clr_n; 00014 DigitalOut _stb_n; 00015 00016 }; 00017 00018 #endif
Generated on Sun Aug 14 2022 23:45:52 by
1.7.2