Showing posts with label MakerED. Show all posts
Showing posts with label MakerED. Show all posts
Wednesday, December 2, 2015
123DCircuits and Digispark for Easy Cheap Projects
I have been working with ATTINY chips for some time. When I saw the low cost Digispark that has one on board, I had have 1.
I have developed this project that utilizes the ease of programming with 123D Circuits and the cost of digispark. It is very similar to the standalone ATTINY circuits posted several years ago but has been simplified, to make it easier to program and easier to manufacture. Check out the instructions bellow.
PCB manufacturing tutorial
123D Tutorial 1
123D Tutorial 2
123D Tutorial 3
123D Tutorial 4
123D Arduino project
123D ATTINY without Digispark
Software install - new version
software install - old version
Chinese Digisparks
Real Digispark
Labels:
Arduino,
attiny,
attiny45,
Design Technology,
electronics,
Maker space,
MakerED
Wednesday, July 1, 2015
Autodesk Inventor and the 3D Printed Car
Written Tutorial Part 1 -Modeling the moving car
Written Tutorial Part 2 - Inventor assembly of moving car
Written Tutorial Part 3 - Slic3r set up
Moving Car Video Tutorials
Stationary Car Video Tutorials
Labels:
3D Printing,
Design Technology,
drafting,
Fab Learn,
inventor,
Maker space,
MakerED
Sunday, April 19, 2015
Wrought Iron Design Project
Labels:
Design Technology,
Maker space,
MakerED,
Metal,
Wrought Iron
Saturday, April 11, 2015
How to build Quridor
This is a step by step guide on how to build your own Quridor board game. the project requires 3 board feet of material and the instructions are for a beginner wood worker. any comments on the plans please e-mail info@theprojectinventory.com I am always looking to improve the process.
Quridor is an amazing board game that relies on spacial reasoning and strategy. this project makes a great gift or an excellent decoration piece. the game can be played by 2-4 people for ages 3+
find plans here
Quridor
check out these video links on how i made it starting with video 1
video 2
video 3
video 4
video 5
video 6
video 7
video 8
video 9
video 10
video 11
video 12
video 13
video 14
video 15
finished
Friday, September 26, 2014
Trinket Back-up Sensor
Recently I purchased some Trinket 5V boards from ADAFRUIT. They are a great little board for Learning about electronics and they use the Arduino IDE for programming. With a price tag of $9 in Canada they make a great substitution for the Arduino board and its $30 price tag.
I have put together a great little project using the Trinket and a HC-SR04 distance sensor. All this is a simple back-up sensor. If there is a safe amount of space it displays a green light, as you approach a yellow and then red light are displayed.
Code:
int ECHOPIN = 3; // Pin to receive echo pulse
int TRIGPIN = 4; // Pin to send trigger pulse
int LED1 = 0;
int LED2 = 1;
int LED3 = 2;
void setup(){
pinMode(ECHOPIN, INPUT); // sets echo pin to recive pulse from range finder
pinMode(TRIGPIN, OUTPUT); //sets trigger pin so range finder can start pulse
pinMode(LED1,OUTPUT);
pinMode(LED2,OUTPUT);
pinMode(LED3,OUTPUT);
}
void loop (){
digitalWrite(TRIGPIN, LOW);
delayMicroseconds(2);
digitalWrite(TRIGPIN, HIGH);
delayMicroseconds(10);
digitalWrite(TRIGPIN, LOW);
float distance = pulseIn(ECHOPIN, HIGH);
distance= distance/58;
if(distance >= 100){
digitalWrite(LED1, HIGH);
digitalWrite(LED2, LOW);
digitalWrite(LED3, LOW);
delay(100);
}
if(distance <= 75 && distance >=50 ){
digitalWrite(LED2, HIGH);
digitalWrite(LED1, LOW);
digitalWrite(LED3, LOW);
delay(100);
}
if(distance <= 49.9 && distance >=25 ){
digitalWrite(LED3, HIGH);
digitalWrite(LED1, LOW);
digitalWrite(LED2, LOW);
delay(100);
}
if(distance <= 24.5 && distance >=15){
digitalWrite(LED3, HIGH);
digitalWrite(LED1, HIGH);
digitalWrite(LED2, HIGH);
delay(500);
digitalWrite(LED3, LOW);
digitalWrite(LED1, LOW);
digitalWrite(LED2, LOW);
delay(500);
}
if(distance <= 14.5){
digitalWrite(LED3, HIGH);
digitalWrite(LED1, HIGH);
digitalWrite(LED2, HIGH);
delay(100);
digitalWrite(LED3, LOW);
digitalWrite(LED1, LOW);
digitalWrite(LED2, LOW);
delay(100);
}
}
I have put together a great little project using the Trinket and a HC-SR04 distance sensor. All this is a simple back-up sensor. If there is a safe amount of space it displays a green light, as you approach a yellow and then red light are displayed.
Code:
int ECHOPIN = 3; // Pin to receive echo pulse
int TRIGPIN = 4; // Pin to send trigger pulse
int LED1 = 0;
int LED2 = 1;
int LED3 = 2;
void setup(){
pinMode(ECHOPIN, INPUT); // sets echo pin to recive pulse from range finder
pinMode(TRIGPIN, OUTPUT); //sets trigger pin so range finder can start pulse
pinMode(LED1,OUTPUT);
pinMode(LED2,OUTPUT);
pinMode(LED3,OUTPUT);
}
void loop (){
digitalWrite(TRIGPIN, LOW);
delayMicroseconds(2);
digitalWrite(TRIGPIN, HIGH);
delayMicroseconds(10);
digitalWrite(TRIGPIN, LOW);
float distance = pulseIn(ECHOPIN, HIGH);
distance= distance/58;
if(distance >= 100){
digitalWrite(LED1, HIGH);
digitalWrite(LED2, LOW);
digitalWrite(LED3, LOW);
delay(100);
}
if(distance <= 75 && distance >=50 ){
digitalWrite(LED2, HIGH);
digitalWrite(LED1, LOW);
digitalWrite(LED3, LOW);
delay(100);
}
if(distance <= 49.9 && distance >=25 ){
digitalWrite(LED3, HIGH);
digitalWrite(LED1, LOW);
digitalWrite(LED2, LOW);
delay(100);
}
if(distance <= 24.5 && distance >=15){
digitalWrite(LED3, HIGH);
digitalWrite(LED1, HIGH);
digitalWrite(LED2, HIGH);
delay(500);
digitalWrite(LED3, LOW);
digitalWrite(LED1, LOW);
digitalWrite(LED2, LOW);
delay(500);
}
if(distance <= 14.5){
digitalWrite(LED3, HIGH);
digitalWrite(LED1, HIGH);
digitalWrite(LED2, HIGH);
delay(100);
digitalWrite(LED3, LOW);
digitalWrite(LED1, LOW);
digitalWrite(LED2, LOW);
delay(100);
}
}
Labels:
Arduino,
attiny45,
electronics,
Maker space,
MakerED,
Trinket
Friday, September 27, 2013
3 Drawer Shelf
Last year my wife was looking for some wood work projects that involved some skill but were light on materials. This shelf is the result. This project allows students to learn a variety of joinery, cutting and finishing techniques and the end product is something a student can be proud of. My brother, who is also a tech ed teacher (starting to notice a pattern) drew up this set of plans to go with it.
Labels:
Design Technology,
Maker space,
MakerED,
wood work,
woodwork
Thursday, September 26, 2013
HC-SR04 and Arduino
This is a simple tutorial on using the popular and affordable HC-SR04 Range finder. The sensor is very simple to use, no libraries needed. Follow this tutorial to build a simple back up sensor for a car, or modify it to work with a sumo robot.
HC-SR04 Tutorial
Labels:
Arduino,
electronics,
HC-SR04,
Maker space,
MakerED
Monday, September 24, 2012
Stand alone Arduino LED Cube
LED cubes have been one of the most popular projects for my students, but we were all ways building them with an attached Arduino UNO attached which can get pricy. This one is based off my 12 LED display and THIS instructable. Total cost is around $10 making this one of my more affordable Arduino projects. If you are making this cube, follow the instructible exercise for building the 3X3X3 stack of LED's and add their libraries to your arduino library folder. For everything else, work off of the attached eagle files. Enjoy!!
Sunday, January 15, 2012
Programing the ATTINY 45/85 & 44/84 and building a Attiny 4LED display
I have been working with Arduino for several years now. The biggest problem I have had is the cost of take home projects for students. The Arduino boards themselves are inexpensive but building simple circuits with the AtMega 328 is not. I stumbled across the High-Low Tech page and was very interested in their Attiny programming. I went through the several post on the subject and compiled them in to a written tutorial that students can follow to program an ATTINY 45/85 or 44/84. Not all the technical data is there, but the steps for programming are.
In the last post I went over bread boarding a 4 LED display using an Arduino. This activity now correlates to a simple 4 led display. You will find attached the Fritzing file for the ATINY 45 display as well as Fritzing diagrams for programming both the ATTINY 45/85 and 44/84
Note: I this procedure only works with the Arduino Duemilanove board. If there are any corrections that will make it work with an uno board please not them in the comments.
Note if using the UNO board and Arduino 0022 or 0023 use This for step 1 in the tutorial
Programming Instructions
Fritzing 45-85
Fritzing 44-84 Updated!
Fritzing 4 LED display
Inkscape 4 LED Silk screen
Working display code
Trouble shooting:
If you can not get your codes to upload with Arduino 0022 or 0023 with an uno board try the fix at http://www.sirmc.net/view/2002/
If you are using nano arduino you can check out the soultion at http://jedahan.com/2012/01/15/arduino-code.html , Thanks Jonathan!
Labels:
Arduino,
attiny,
attiny44,
attiny45,
electronics,
Maker space,
MakerED
Monday, September 26, 2011
How To Make A PCB (H-Bridge for Arduino)
This is the first of my tutorial for the October BCTEA conference where I will be presenting on Arduino. This tutorial kills two bird with one stone. firstly it explains the process of using toner transfer and a t-shirt press to make PCBs. Second it goes through the process of building the H-Bridge circuit that I use when teaching automated sumo robots. The rest of the sumo tutorials will be coming soon.
This is the first time I put something together entirely with Google docs. So we will see how it goes.
Click here for the Tutorial.
Eagle Schmatic
Eagle Board
This is the first time I put something together entirely with Google docs. So we will see how it goes.
Click here for the Tutorial.
Eagle Schmatic
Eagle Board
Labels:
Arduino,
electronics,
Maker space,
MakerED,
robotics
Wednesday, September 14, 2011
Simple Long board, no vacume required
Always looking for that quick project to grab the kids attention and get them in to wood work, but don't have the money to by expensive tools. Here is a great little package on how to make a long board at relativity low cost. It is a simple jig that is easy to use. You can make the long board from high end plywood instead of hard to find verniers.
Get the project here!
Tuesday, August 30, 2011
Drafting and Angry Birds
I was surfing around the internet the other day with no real point. It is summer vacation so i can do that! I stumbled across a blog entry about paper craft angry birds on the little plastic Man blog. I thought to myself " I teach kids. Kids like Angry Birds. I will get the kids to layout and make their own Angry Birds."
I modified the layout from the Little Plastic Man blog so they have a full set of dimensions and so there is no colour. The plan is to give the students the new dimension drawings and have them layout and colour their own Angry Birds. To make it a little more fun I will have some kids make the pigs and prop them up in a card castle. The students will have to flick their birds and try to knock down the pigs. We will see how it goes.
Download the dimension drawings Yellow Bird Red Bird Blue Bird White Bird Pig Old Pig King Pig
Friday, April 29, 2011
Dog Tags

The Military Dog Tags are a quick and easy beginner project for the metal shop that
teaches, layout, marking, filing, sanding, and letter stamping.
Link:
Dog Tags
Balancing Man

The Balancing Man is a great hand tools based metalworking project. This project introduces the basics of metal layout and hand tool usage. How you build the project and what types of metal you use can be changed, so feel free to experiment. The plans you see here are just basic guidelines on how to make this project. However it is possible to go more in depth and talk about the physics behind the project. The Balancing man is a low cost project that makes a great gift and is fun to play with.
Link:
Balancing Man
pdf drawing
Metal DVD Ends
Anyone that has a collection of Books, CD’s DVD’s or Video Games, knows that unless
you have the right amount sitting on the shelf, the ones on the end always fall over. To
solve this problem we have the “DVD Ends” these small end plates come in handy when
trying to organize your media.
This project is a blending of the Plasma cutter and the arc welder, and is very quick to do
with both Junior and advanced students.
Link:
DVD ends
Thursday, April 28, 2011
ROV student project
Have you ever wanted your own submarine? The Beatles sure did. This is a great design project for students. they have to use AutoDesk Inventor to design a ROV (remote operated vehicle)The goal of this project is to complete a ROV that can complete a task. The task normally consists of moving things, but obstacle courses and racing are also possible. This project consists of 5 parts, design, construction, testing, refining, and competing.
These projects work very well with grade 10 -12 students. It covers all of the fundamentals of Autodesk Inventory and design.
ROV design files
Simple Drill Press Vice

I love buying new tools. There is just one problem, they always end up costing me money. So i decided to make all of my own tools instead of giving my money to the man.
This vice is a great project for senior or junior students. It was designed by my wife and myself. I drew it up in inventor and have been making it with my students for a year now. It is pretty simple. students will be using welding equipment, hacksaw, drill press and the lathe to make the vice. All of the operations are pretty simple.
Sorry that there are no play by play instructions for this one, but there comes a time where students have to figure things out on their own, with a fare bit of help from yours truly.
The link:
Drill Press Vice
Wood Basket Ball Game

This is a great little project. The hop was designed by a colleague with a little help from a similar toy seen in a store. I wrote up the plans to use with my grade 8 Tech ed classes. They really enjoy it and we always have a little tournament on the last day.
Subscribe to:
Posts (Atom)












