+ All Categories
Home > Technology > The MHV Board

The MHV Board

Date post: 14-May-2015
Category:
Upload: alastairdsilva
View: 1,753 times
Download: 0 times
Share this document with a friend
Description:
The MHVBoard is a MetaBoard/Arduino clone. This talk covers (briefly) some of the differences between the two, and looks at some projects that people have completed.
Popular Tags:
16
The MHVBoard Alastair D’Silva http://alastair.d-silva.org http://makehackvoid.com Twitter: @evildeece
Transcript
Page 1: The MHV Board

The MHVBoard

Alastair D’Silvahttp://alastair.d-silva.org

http://makehackvoid.comTwitter: @evildeece

Page 2: The MHV Board

What is it?

• Rapid Prototyping Platform• Based on the Metaboard Arduino Clone– Adds TTL Serial– Faster CPU– More RAM

Page 3: The MHV Board

What can you do with it?

Interact with the real world

Page 4: The MHV Board

What can you do with it?

Make things move

Page 5: The MHV Board

What can you do with it?

Respond to stimuli

Page 6: The MHV Board

What can you do with it?

Play music

Page 7: The MHV Board

What can you do with it?

• Turn lights on & off

Page 8: The MHV Board

What can you do with it?

• Communicate over Radio

Page 9: The MHV Board

What can you do with it?

Create autonomous vehicles

Page 10: The MHV Board

What can you do with it?

• Build robots to do your bidding

http://www.robotliving.com/diy-robot/arduino-tweetbot/

Page 11: The MHV Board

What can you do with it?

• Automate your greenhouse

http://www.instructables.com/image/F33U3RDG1ZGOD3T/Garduino-Upgrade-Now-with-more-Twitter.jpg

Page 12: The MHV Board

Why not an Arduino?

• Cheaper• Faster• Smarter design (simple hardware)• Prototyping area• Designed to teach soldering

Page 13: The MHV Board

Getting Started

What to do first?

Page 14: The MHV Board

Getting Started – Blinking LED/* Blink Turns on an LED on for one second, then off for one second, repeatedly. This example code is in the public domain. */

void setup() { // initialize the digital pin as an output. // Pin 13 has an LED connected on most Arduino boards: pinMode(13, OUTPUT); }

void loop() { digitalWrite(13, HIGH); // set the LED on delay(1000); // wait for a second digitalWrite(13, LOW); // set the LED off delay(1000); // wait for a second}

Page 15: The MHV Board

Want more? Built something cool?Come to Make, Hack, Void and show off your

creation

Page 16: The MHV Board

Credits• Interacting with the real world

– http://www.diymagicmirror.com• Make Things Move

– http://www.oomlout.com• Respond to Stimulus

– http://flipmu.noisepages.com/work/arduinome/– http://www.flickr.com/photos/glacial23/

• Play Sound– http://www.ladyada.net/make/waveshield/

• Turn lights on and off– http://www.makershed.com/ProductDetails.asp?ProductCode=MKJR3

• Communicate over Radio– http://www.australianrobotics.com.au/?q=node/78

• Create Autonomous Vehicles– http://photos.tridgell.net/v/CanberraUAV

• Build Robots to do your Bidding– http://www.robotliving.com/diy-robot/arduino-tweetbot/

• Automate your Greenhouse– http://www.instructables.com/id/Garduino-Gardening-Arduino/

• Why Not an Arduino– http://www.arduino.cc

• Want more?– http://www.flickr.com/photos/angusgr/5406919857/in/photostream/


Recommended