Archive for November, 2010

SMTPClient updating this weblog at Sun Nov 28 21:10:49 2010

Sunday, November 28th, 2010

This weblog entry has been updated by the SMTPClient of the mBed

Netduino and Arduino Ethernet shield

Wednesday, November 24th, 2010

Well, got it working. An Arduino Ethernet Shield with a W5100. Without any modification to the hardware (also the INT not connected). Got to get used to that .NET Framework. Some strange things are happening. When a compile fails, the last good compile is put in the Netduino. So I made a blink-example, and after that a Ethernet example, but that didn’t compile well, so the blink-example kept beeing uploaded to the board. Will have to do a very good study of the C language that is used. Now several shields are working. LCD-keypad shield, Servo-shield and now the Wiznet ethernet shield.

netduino_eth.jpg

NetDuino

Saturday, November 20th, 2010

An Arduino with a Atmel AT91SAM7X512 ARM processor. Getting a bit busy at the moment with .NET Micro Framework.

image.gif

LPCXpresso LPC1114

Saturday, November 20th, 2010

Won on ElektorLive, a LPCXpresso with LPC1114.

pg_10a1.jpg

DS18B20 and mBeduino

Sunday, November 14th, 2010

Nice combination if you get started with the mBed.

DS18B20.jpg

hyp_temp.jpg

mBeduino + servo

Sunday, November 14th, 2010

With the www.ge-th.com version 4 I/O board.

mbed_servo.jpg

Tweeting with mBeduino

Sunday, November 14th, 2010

mBeduino Tweeting. And using the LCD Keypad Shield. I see different TextLCD.h files, there are .h-files with the R/W for the LCD used, and there are .h- files where no R/W is used, so you must skip that entry in the configuration of the LCD.

mbeduino_tweet.jpg

tweet.jpg

mBeduino, LCD, Ethernet, SD-card running…

Saturday, November 13th, 2010

//works on the mbeduino…

#include “mbed.h”
#include “TextLCD.h”
#include “SDFileSystem.h”

TextLCD lcd(p12, p26, p24, p30, p22, p23, p11);
//           rs, rw,  e,   d0,  d1,  d2,  d3
SDFileSystem sd(p5, p6, p7, p8, “sd”); //p8 is the SD-card select

DigitalOut lcd_blanc(p25); //LCD_Blanc

int main() {

    lcd_blanc = 1;
    lcd.printf(”Bens HobbyCorner”);
    lcd.locate(0, 1);

    FILE *fp = fopen(”/sd/foo.txt”, “w”);
    if(fp == NULL) {
        error(”Could not open file for write\n”);
    }
    fprintf(fp, “Hello SD Card World!!”);
    fclose(fp);

    lcd.printf(”Sayonara World!!”);
}

with Arduino LCD Keypad Shield…

Friday, November 12th, 2010

mBeduino with Arduino LCD Keypad Shield…

LCDx.jpg

LCD.JPG

mBeduino

Friday, November 12th, 2010

This is the mBeduino. A baseboard for the mBed with RJ45, USB, power, SD-card, CAN-driver, EEPROM (I2c) and Goldcap. Bought one in Japan, it arrived as a DIY-packet. Took me half an hour to put all parts on it. It has also sockets for Arduino Shields. Got a working HTTPserver running at the moment. On one of the pictures the mBeduino with a LCD Keypad Shield from DFRobot.

P1000416.jpg

mbeduino01.jpg

mbeduino02.jpg

mbeduino03.jpg

mbeduinox_400.jpg