Showing posts with label Kit. Show all posts
Showing posts with label Kit. Show all posts
2016/08/15
Part List Of MakerDolly 1200mm Camera Slider Mechanical Kit
Labels:
Camera,
Dolly,
Kit,
List,
MakerDolly,
Mechanical,
Part,
Slider
2016/07/13
Sketch Displaying Temperature and Humidity on Serial Monitor Using ESP8266 NodeMCU Dev Kit 1.0 and DHT11
Output
Sketch
// Modified by Befun Hung on Jul. 13, 2016 with Arduino IDE supporting ESP8266
// Runs on NodeMCU Dev Kit 1.0 without fails with DHT11 breakout
// Original source code from 14core.com commented out OLED part and correct typos
// "Wiring DHT11, DHT22, with OLED Screen on ESP8266 12E"
// Wiring diagram show data pin of DHT connect D6 (GPIO 12)
// While the sketch define DHTPIN 14 (D5)
// #include <Wire.h>
// #include <Adafruit_GFX.h>
// #include <ESP_Adafruit_SSD1306.h>
#include "ESP8266WiFi.h"
#include "DHT.h"
// #define OLED_RESET 4
// Adafruit_SSD1306 display(OLED_RESET);
// #define DHTPIN 12 // Connected to Pin D6 in NodeMCU
#define DHTPIN 14 // Connected to Pin D5 in NodeMCU
// Uncomment whatever type you're using!
#define DHTTYPE DHT11 // DHT 11
//#define DHTTYPE DHT22 // DHT 22 (AM2302)
//#define DHTTYPE DHT21 // DHT 21 (AM2301)
DHT dht(DHTPIN, DHTTYPE);
/*
byte img [] = {
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1, 0xfc,
0x3f, 0x80, 0x0, 0x0, 0x3, 0xe0, 0x7, 0xc0, 0x0, 0x0, 0x7, 0x80, 0x1, 0xe0, 0x0,
0x0, 0xff, 0x0, 0x0, 0xff, 0x0, 0x3, 0xfe, 0x0, 0x0, 0x7f, 0xc0, 0x7, 0xe2, 0x0,
0x0, 0x4f, 0xe0, 0x7, 0x80, 0x0, 0x0, 0x1, 0xe0, 0xf, 0x0, 0x0, 0x0, 0x0, 0xf0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x70, 0xe, 0x0, 0x0, 0x0, 0x0, 0x78, 0xc, 0x0, 0x0,
0x0, 0x0, 0x30, 0xc, 0x0, 0x0, 0x0, 0x0, 0x30, 0xc, 0x0, 0x0, 0x0, 0x0, 0x30,
0xe, 0x0, 0x0, 0x0, 0x0, 0x70, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x70, 0xf, 0x0, 0x0,
0x0, 0x0, 0xf0, 0x7, 0x80, 0x0, 0x0, 0x1, 0xe0, 0x7, 0xe3, 0x80, 0x1, 0xc7, 0xe0,
0x3, 0xff, 0xc0, 0x3, 0xff, 0xc0, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0x0, 0x20, 0xfc,
0x3f, 0x4, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xf, 0xf0, 0x0, 0x0,
0x0, 0x4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x20, 0x0, 0x0, 0x1f, 0x0, 0x0, 0x20, 0x0, 0x0, 0xe, 0x0,
0x0, 0x70, 0x0, 0x0, 0x0, 0x1, 0x80, 0x70, 0x0, 0x0, 0x0, 0x1, 0x80, 0xf8, 0x0,
0x0, 0x0, 0x3, 0xc0, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xc0, 0xf8, 0x0, 0x0, 0x0, 0x3,
0xc0, 0x70, 0x0, 0x0, 0x0, 0x3, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x1, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
};
*/
void setup() {
Serial.begin(115200);
Serial.println("DHTxx test!");
// dht begin
dht.begin();
// set display
// display.begin(SSD1306_SWITCHCAPVCC, 0x78>>1);
// display.display();
// delay(2000);
// display.clearDisplay();
}
/*
void showTemp(float temp,float hud) {
display.drawBitmap(0, 5, img, 48, 50, 1);
display.setTextSize(1);
display.setCursor(3,0);
display.println("Temperature/Humidity");
display.setTextSize(2);
display.setTextColor(WHITE);
display.setCursor(52,10);
display.print(temp);
display.println("C");
display.setCursor(52,30);
display.print(hud);
display.println("%");
display.setTextSize(1);
display.setCursor(52,50);
display.println("14CORE.COM");
display.display();
display.clearDisplay();
}
*/
void loop() {
delay(2000); // Wait a few seconds between measurements.
float h = dht.readHumidity();
// Serial.print("h= ");
// Serial.println(h);
float t = dht.readTemperature(); // Read temperature as Celsius
// Serial.print("t= ");
// Serial.println(t);
if (isnan(h) || isnan(t)) {
Serial.println("Failed to read from DHT sensor!");
Serial.println();
return;
}
Serial.print("Humidity: "); // show in serial monitor
Serial.print(h);
Serial.print(" %\t");
Serial.print("Temperature: "); // show in serial monitor
Serial.print(t);
Serial.print(" *C \n");
// showTemp(t,h); // show temp
}
2015/04/26
Parts List of Shapeoko 2 Compatible MakerCarve Mechanical Kit
The parts list of Shapeoko 2 compatible MakerCarve mechanical kit is listed with quantity as follows:
1. MDF x 2
2. X/Y Axis Rail Extrusion x 4
3. Z-Axis Rail Extrusion x 1
4. 20x20x527mm Extrusion x 2
5. Motor Mount Plate x 4
6. End Plate x 4
7. Z-Axis Motor Mount Plate x 2
8. Spindle Mount Plate x 1
9. Z-Axis Shim Plate x 1
10. Universal Spindle Mount And Mount Strap x 2
11. Delrin V-Wheel x 20
12. Smooth Idler Wheel x 6
13. M5 Shim Washer x 26
14. 5x16x5 Bearing (625-2RS) x 52
15. Eccentric Nut x 10
16. M5 Flat Washer x 108
17. Delrin Lead Nut x 1
18. M8x200mm Threaded Rod x 1
19. 8x22x7 Flange Bearing (F608-ZZ) x 1
20. M3x12mm, SHCS x 3
21. M3 Flate Washer x 3
22. Wave Disc Spring x 1
23. 3x8mm Nylon Spacer x 6
24. 5x10mm Nylon Spacer x 4
25. Z-Axis Coupler 5mm-8mm x 1
26. M3x50mm Standoff Spacer x 3
27. M3x10mm, Set Screw x 3
28. Fiberglass Belt Clip x 6
29. 3/8"x5/16" #12 Spacer x 10
30. 3/8"x1" #12 Spacer x 6
31. 3/8"x1-1/4" #12 Spacer x 6
32. M5x10mm, BHCS x 4 (Z-Axis Extrusion)
33. M5x12mm, BHCS x 38
34. M5x20mm, BHCS x 18 (Motor Mount Carriage V-Wheel x 12 + Z Assembly Carriage V-Wheel x 4 + Z-Axis Motor Mount x 2)
35. M5x30mm, BHCS x 10 (Motor Mount Carriage Idler x 6 + Spindle Carriage V-Wheel x 4)
36. M5x8mm, SHCS x 6 (Belt Clip)
37. M5x45mm, SHCS x 4 (Universal Spindle Mount Strap)
38. M5x70mm, SHCS x 6
39. M5 Flat Nut x10 (Z-Axis Extrusion x 4 + Belt Clip x 6)
40. M8 Flat Nut x 2 (M8 Threaded Rod)
41. M5 Hex Nut x 26
42. M5 T-Nut x 16 (20x20x527mm Extrusion - MDF And End Plate)
43. Spare Parts Pack x 1 (M5 Flat Washer x 12 + M5 T-Nut x 2)
Update (Jul. 25, 2015) The following is the packing list of MakerCarve mechanical kit:
Update (Nov. 28, 2016) Shapeoko 2 Assembly Video
Shapeoko 2 Works Kit Tutorial - Desktop CNC 3D Carver Router by Inventables
https://www.youtube.com/watch?v=Yy6A3Mif0QY
1. MDF x 2
2. X/Y Axis Rail Extrusion x 4
3. Z-Axis Rail Extrusion x 1
4. 20x20x527mm Extrusion x 2
5. Motor Mount Plate x 4
6. End Plate x 4
7. Z-Axis Motor Mount Plate x 2
8. Spindle Mount Plate x 1
9. Z-Axis Shim Plate x 1
10. Universal Spindle Mount And Mount Strap x 2
11. Delrin V-Wheel x 20
12. Smooth Idler Wheel x 6
13. M5 Shim Washer x 26
14. 5x16x5 Bearing (625-2RS) x 52
15. Eccentric Nut x 10
16. M5 Flat Washer x 108
17. Delrin Lead Nut x 1
18. M8x200mm Threaded Rod x 1
19. 8x22x7 Flange Bearing (F608-ZZ) x 1
20. M3x12mm, SHCS x 3
21. M3 Flate Washer x 3
22. Wave Disc Spring x 1
23. 3x8mm Nylon Spacer x 6
24. 5x10mm Nylon Spacer x 4
25. Z-Axis Coupler 5mm-8mm x 1
26. M3x50mm Standoff Spacer x 3
27. M3x10mm, Set Screw x 3
28. Fiberglass Belt Clip x 6
29. 3/8"x5/16" #12 Spacer x 10
30. 3/8"x1" #12 Spacer x 6
31. 3/8"x1-1/4" #12 Spacer x 6
32. M5x10mm, BHCS x 4 (Z-Axis Extrusion)
33. M5x12mm, BHCS x 38
34. M5x20mm, BHCS x 18 (Motor Mount Carriage V-Wheel x 12 + Z Assembly Carriage V-Wheel x 4 + Z-Axis Motor Mount x 2)
35. M5x30mm, BHCS x 10 (Motor Mount Carriage Idler x 6 + Spindle Carriage V-Wheel x 4)
36. M5x8mm, SHCS x 6 (Belt Clip)
37. M5x45mm, SHCS x 4 (Universal Spindle Mount Strap)
38. M5x70mm, SHCS x 6
39. M5 Flat Nut x10 (Z-Axis Extrusion x 4 + Belt Clip x 6)
40. M8 Flat Nut x 2 (M8 Threaded Rod)
41. M5 Hex Nut x 26
42. M5 T-Nut x 16 (20x20x527mm Extrusion - MDF And End Plate)
43. Spare Parts Pack x 1 (M5 Flat Washer x 12 + M5 T-Nut x 2)
Update (Jul. 25, 2015) The following is the packing list of MakerCarve mechanical kit:
Update (Nov. 28, 2016) Shapeoko 2 Assembly Video
Shapeoko 2 Works Kit Tutorial - Desktop CNC 3D Carver Router by Inventables
https://www.youtube.com/watch?v=Yy6A3Mif0QY
Labels:
2,
Compatible,
Kit,
List,
MakerCarve,
Mechanical,
Parts,
Shapeoko
2015/04/19
Shapeoko 2 Parts List
This is a memorandum about parts use in Shapeoko 2 (Out of Production). Inventables now sales Shapeoko 2 compatible X-Carve and Shapeoko sales Shapeoko 3.
1. Packing List (Included in the Full Kit Received)
2. Mechanical Kit
3. Full Kit
1. Packing List (Included in the Full Kit Received)
2. Mechanical Kit
3. Full Kit
Labels:
Electronics,
Full,
Inventables,
Kit,
List,
Mechanical,
Packing,
Parts,
Shapeoko,
X-Carve
Subscribe to:
Posts (Atom)








