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.
Revision 0:e403d7000b50, committed 2014-03-25
- Comitter:
- screamer
- Date:
- Tue Mar 25 16:48:28 2014 +0000
- Child:
- 1:0d638a762bfd
- Commit message:
- Initial revision
Changed in this revision
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/PN532.lib Tue Mar 25 16:48:28 2014 +0000 @@ -0,0 +1,1 @@ +http://mbed.org/teams/components/code/PN532/#26c1b3b6c192
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp Tue Mar 25 16:48:28 2014 +0000
@@ -0,0 +1,40 @@
+#include "mbed.h"
+#include "PN532_SPI.h"
+#include "snep.h"
+#include "NdefMessage.h"
+
+Serial pc(USBTX, USBRX);
+
+uint8_t ndefBuf[128];
+
+int main()
+{
+ wait(2);
+
+ pc.printf("Initializing - ");
+ SPI spi(D11, D12, D13);
+ PN532_SPI pn532spi(spi, D10);
+ SNEP nfc(pn532spi);
+ pc.printf("Done\r\n");
+
+ while (1) {
+ pc.printf("Sending message - ");
+ NdefMessage message = NdefMessage();
+ message.addTextRecord("mbed NFC shield");
+ message.addUriRecord("http://www.seeedstudio.com");
+ int messageSize = message.getEncodedSize();
+ if (messageSize > sizeof(ndefBuf)) {
+ pc.printf("ndefBuf is too small\r\n");
+ while (1) {
+ }
+ }
+ message.encode(ndefBuf);
+ if (0 >= nfc.write(ndefBuf, messageSize)) {
+ pc.printf("Failed\r\n");
+ } else {
+ pc.printf("Success\r\n");
+ }
+
+ wait(3);
+ }
+}
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mbed.bld Tue Mar 25 16:48:28 2014 +0000 @@ -0,0 +1,1 @@ +http://mbed.org/users/mbed_official/code/mbed/builds/7d30d6019079 \ No newline at end of file
Seeed NFC Shield V2.0