E-Paper Device (EPD) based MiniNote module, powered by mbed on LPC1114FBD48. Shared in public domain with enclosure in 3D step format, hardware interface compatible with microBUS interface. Anyone can contribute on this project.

Dependencies:   mbed _24LCXXX

E-Badge MiniNote Project on mbed/NXP LPC1114 platform

main.cpp

Committer:
allankliu
Date:
2014-06-09
Revision:
2:bb9f154ea2f4
Parent:
0:33994cfad0c2
Child:
3:1fa000d4da94

File content as of revision 2:bb9f154ea2f4:

#include "mbed.h"
#include "ssd1606.h"
//#include "Ebadge.h"
#include "_24LCXXX.h"
#include "rom_image.h"

#define STX 0x02
#define ETX 0x03
#define DISPWIDTH       172
#define DISPHEIGHT  72
#define DISPBPP     2
#define DISPBUFSIZE DISPWIDTH * DISPHEIGHT * DISPBPP / 8

// naked LPC1114 on breadboard, install LED pin28, pasive piezo-buzzer pin1
DigitalOut myled(dp28);  // LED ... P0_7 (pin 28)
Serial uart(dp16, dp15); // UART .. P1_7: TX (pin 16), P1_6: RX (pin 15)
//PwmOut pwm(dp1);         // PWM ... P0_8: CT16B0_MAT0 (pin1); sorry, blocking SPI!  


uint16_t xmtptr;
uint16_t xmtsize;

//SSD1306 display(dp2,dp4,dp5,dp6,dp10);
// SSD1606(cs, rst, dc, clk, busy, data);
SSD1606 epd(P0_6,P0_3,P2_0,P1_9,P1_10,P1_11);

I2C i2c(P0_5, P0_4);
_24LCXXX nvmem(&i2c, 0x50);

//enum EEPROM::TypeEeprom T24C256;
//EEPROM fram2(P0_5,P0_4,0xA0,T24C256);

char c = '0';
unsigned char sbuf[128];

void setup() {
    //pwm.period(0.001);  // PWM period 1ms (1kHz)   
    uart.baud(115200);  // Baud rate
    //uart.puts("E-Badge MiniNote LPC1114 Demo Start.\n\r");
    //nvmem.write(0x10,0x55);
    epd.initialize();
    epd.clear();
    epd.update();
    epd.rom_image(gImage_one);

/*  
    epd.test_image(TEST_BLK);
    wait(3);
    epd.test_image(TEST_GREY2);
    wait(3);
    epd.test_image(TEST_GREY1);
    wait(3);
    epd.test_image(TEST_WHT);
    wait(3);
*/  
    nvmem.byte_write(0,1);
    nvmem.byte_write(1,2);
    nvmem.byte_write(2,3);
    nvmem.byte_write(3,4);
}

void loop() {
        if (uart.readable()) {
            c = uart.getc();
            uart.putc(c);
            }
}

int main() {
    setup();
    
  while(1) {    // repeat (period 1sec)
        loop();
    }       
}