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.
Fork of SX1276_GPS by
Revision 0:88d87b1c1f8b, committed 2010-12-18
- Comitter:
- wim
- Date:
- Sat Dec 18 19:44:49 2010 +0000
- Child:
- 1:45e2e7c0754d
- Commit message:
- Initial version
Changed in this revision
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/MCP23017.lib Sat Dec 18 19:44:49 2010 +0000 @@ -0,0 +1,1 @@ +http://mbed.org/users/wim/code/MCP23017/#5696b886a895
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp Sat Dec 18 19:44:49 2010 +0000
@@ -0,0 +1,39 @@
+#include "mbed.h"
+#include "MCP23017.h"
+
+DigitalOut myled1(LED1);
+DigitalOut myled2(LED2);
+
+Serial pc(USBTX, USBRX);
+I2C i2c(p9, p10);
+
+MCP23017 mcp23017 = MCP23017(i2c, 0x40);
+
+int main() {
+
+ pc.printf("Hello World\n");
+
+ // I2C init
+ i2c.frequency(100000);
+
+ // Port A is databus - Output
+ mcp23017.direction(PORT_A, PORT_DIR_OUT);
+ // Port B is controlbus - Output
+ mcp23017.direction(PORT_B, PORT_DIR_OUT);
+
+ myled2 = 1;
+ pc.printf("MPC Init done\n");
+
+ while(1) {
+ myled1 = 1;
+ mcp23017.write(PORT_A, 0xFF);
+ mcp23017.write(PORT_B, 0xFF);
+ wait(0.2);
+
+ myled1 = 0;
+ mcp23017.write(PORT_A, 0x00);
+ mcp23017.write(PORT_B, 0x00);
+ wait(0.2);
+ pc.printf("*");
+ }
+}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mbed.bld Sat Dec 18 19:44:49 2010 +0000 @@ -0,0 +1,1 @@ +http://mbed.org/users/mbed_official/code/mbed/builds/e2ac27c8e93e
