Tedd OKANO / Mbed 2 deprecated SC16IS750_test

Dependencies:   mbed SC16IS750

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main.cpp Source File

main.cpp

00001 #include    "mbed.h"
00002 #include    "SC16IS750.h"
00003 
00004 SC16IS750   bridge( p28, p27, 9600 );    //  SDA, SCL, Baud(option), I2C_Address(option)
00005 
00006 int main() {
00007 
00008     bridge.send_str( "NXP Semiconductors" );
00009     
00010     while ( 1 )
00011         ;
00012 }