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.
main.cpp
00001 /* Program Example 12.7: Ethernet write 00002 */ 00003 #include "mbed.h" 00004 #include "Ethernet.h" 00005 Ethernet eth; // The Ethernet object 00006 char data[]={0xB9,0x46}; // Define the data values 00007 int main() { 00008 while (1) { 00009 eth.write(data,0x02); // Write the package 00010 eth.send(); // Send the package 00011 wait(0.2); // wait 200 ms 00012 } 00013 } 00014
Generated on Thu Jul 14 2022 21:14:05 by
1.7.2