Welcome, Guest |
You have to register before you can post on our site.
|
Forum Statistics |
» Members: 117
» Latest member: vapormo
» Forum threads: 124
» Forum posts: 471
Full Statistics
|
Online Users |
There are currently 25 online users. » 0 Member(s) | 24 Guest(s) Yandex
|
Latest Threads |
Is anybody still here?
Forum: General Discussion
Last Post: MisterAcoustic
2025-02-23, 10:00 PM
» Replies: 3
» Views: 524
|
Shapr3D and Plasticity
Forum: 3D Printing Software
Last Post: MisterAcoustic
2023-05-31, 11:29 PM
» Replies: 0
» Views: 1,457
|
NewRegTestPost
Forum: General Discussion
Last Post: RegTest
2023-03-10, 12:36 AM
» Replies: 0
» Views: 1,520
|
Upgrade Complete!
Forum: News and Announcements
Last Post: Administrator
2023-02-26, 09:42 PM
» Replies: 0
» Views: 1,693
|
Site Upgrade
Forum: News and Announcements
Last Post: Administrator
2023-02-26, 09:33 PM
» Replies: 4
» Views: 5,270
|
Air Sled Appliance Mover!...
Forum: Community Project Showcase
Last Post: MisterAcoustic
2023-02-26, 09:31 PM
» Replies: 4
» Views: 11,565
|
Display Issues
Forum: News and Announcements
Last Post: Administrator
2022-10-31, 10:45 PM
» Replies: 1
» Views: 2,608
|
Site Email Address Change
Forum: News and Announcements
Last Post: Administrator
2022-08-21, 12:23 PM
» Replies: 1
» Views: 2,945
|
Email Issues!
Forum: News and Announcements
Last Post: Administrator
2022-08-21, 12:12 PM
» Replies: 3
» Views: 5,201
|
You Know You Want a Revol...
Forum: General Discussion
Last Post: Mooselake
2022-08-20, 12:55 PM
» Replies: 6
» Views: 9,517
|
|
|
Kudo3D Forum Added! |
Posted by: Administrator - 2018-06-24, 06:43 PM - Forum: News and Announcements
- No Replies
|
 |
Hi All,
I've just added a new forum for users of the new Kudo3D Bean resin printer. Someone else had started a Facebook group, but to say that I'm not a fan of Facebook would be a dramatic understatement - so I decided to offer an alternative place for discussion. I'm a backer of the kickstarter campaign for the Bean, and they are slowly trickling out to backers around the world. I hope we can get a lively group going here.
Enjoy!
|
|
|
Object Tracking with PixyCam |
Posted by: mimicRobots - 2018-06-23, 10:55 PM - Forum: Project Showcase
- No Replies
|
 |
Hello friends. I've been working a project off and on to track blocks of a specific color using the pixy cam, particularly the CMU Pixy Cam 5 (http://www.cmucam.org/projects/cmucam5). This camera has been superceded by the Pixy Cam 6, but as far as I can tell all of this material will be applicable to the new camera as well.
A little about the Pixy Cam. It's a super powerful little camera that allows you to identify the location of a color in the frame. My favorite part of the Pixy Cam is that you can select the color you'd like Pixy Cam to track using a small button on the bottom of the camera. Simply place the object in front of the camera and hold the button until the built in LED is the same color as the object, and POOF, you're tracking that color!
The Pixy Cam Arduino library, among other resources, are available at their website (http://www.cmucam.org/projects/cmucam5/w...st_release). The Pixy Cam is set up to power it's own pan/tilt system, and the Arduino library leans toward such a system. This isn't great for mimicArm, so I chose to use the x/y position of the centroid of the object.
The Pixy Cam can detect multiple objects, so for the purposes of this experiment I'm only going to detect whichever block the camera has identified as the first block. Pixy Cam can easily return the x and y coordinates of the object using pixy.blocks[0].x and pixy.blocks[0].y
Through a small amount of manipulation of the provided examples mimicArm will follow a block of a defined color using the code below:
#include <SPI.h>
#include <Pixy.h>
#include <robot.h>
// This is the main Pixy object
Pixy pixy;
void setup()
{
Serial.begin(9600);
Serial.print("Starting...\n");
robotActivate();
robotHome();
pixy.init();
}
void loop()
{
static int i = 0;
int j;
uint16_t blocks;
char buf[32];
//robotMode(arduino);
// grab blocks!
blocks = pixy.getBlocks();
Serial.println(blocks);
// If there are detect blocks, print them!
if (blocks)
{
//Serial.println("got here");
Serial.print("x is \t");
Serial.print(pixy.blocks[0].x);
Serial.print("\ty is \t");
Serial.println(pixy.blocks[0].y);
robotMove(1, pixy.blocks[0].x);
robotMove(2, 127);
robotMove(3, pixy.blocks[0].y);
}
//else robotHome();
delay(20);
}
void robotHome(){
robotMove(1, 127);
robotMove(3, 127);
robotMove(2, 127);
}
|
|
|
Cast Aluminum from 3D Print |
Posted by: MisterAcoustic - 2018-06-19, 11:46 PM - Forum: General 3D Printing
- No Replies
|
 |
Hi All,
I spotted this video, and found it very interesting and informative. If you have questions, like I did, be sure to read the comments - the author answers a lot of questions there.
I particularly liked learning about the investment casting material he's using - combined with melting out a PLA print to form the mold cavity. The process could be simplified for some kinds of objects, and I think adapted to other casting methods besides hot metal.
Check it out:
https://www.youtube.com/watch?v=HVgPM1ojyLw
I don't think I'll get into the metal, but it gets me thinking about things...
Enjoy,
Stan
|
|
|
3D Gloop Kickstarter |
Posted by: MisterAcoustic - 2018-06-06, 10:03 PM - Forum: General 3D Printing
- Replies (1)
|
 |
Hi All,
I was poking around Kickstarter, and found another interesting little project - 3D Gloop.
Basically, if you're having any problems getting your prints to stick to the bed, this seems worth checking out. I'm thinking about getting some just for those occasional problem prints that don't want to stick for whatever reason.
I (along with others) asked a question of the campaign creator about removing prints after they're done. He sent a nice reply, and updated the campaign with a .gif of removing a print. I'm not even a backer yet, so I thought that was cool.
Check it out:
https://www.kickstarter.com/projects/167...2/3d-gloop
Enjoy,
Stan
|
|
|
Welcome mimicRobots! |
Posted by: Administrator - 2018-05-26, 09:55 PM - Forum: News and Announcements
- No Replies
|
 |
Hi All,
I'd like to welcome mimicRobots to our forums! They are finishing up a small but successful kickstarter campaign for their fun and educational trainable robot arm.
As I mention in another post, I had spoken with the proprietor of mimicRobots, Brett several times at the Cincinnati Mini Maker Faire. When I saw the kickstarter, I got in touch with him, and mentioned the Fabric8r.com forums. It turned out that mimicRobots did not have a plan for forums yet, so I offered up some space here for them.
Brett has a good deal of arduino experience, and we look forward to him popping in to our existing forums as well to lend his advice.
mimicRobots now has a dedicated section on the site, currently with three forums - General Discussion, Educator's Corner, and the Project Showcase.
Please join me in welcoming mimicRobots, and hopefully a number of their kickstarter backers soon as well.
|
|
|
mimicArm |
Posted by: MisterAcoustic - 2018-05-16, 06:02 PM - Forum: Robotics
- Replies (2)
|
 |
Hey,
You may know that fabric8r.com is currently based in the Cincinnati, Ohio area. A maker from this area is running a kickstarter project for his educational robots. I've enjoyed talking with him several times at the local mini maker faire.
The robots are not designed for heavy workloads - instead, they are weak for safety. The underlying custom electronics though should support stronger motors if needed (this is what I recall from talking to him - things may have changed, or I might not remember correctly).
Anyway, if you're in Cincinnati, take a chance to support a local, and otherwise check out the offerings and see if they suit you.
Here's the link:
https://www.kickstarter.com/projects/713...n-ai-robot
Stan
|
|
|
SculptGL |
Posted by: MisterAcoustic - 2018-03-04, 12:21 PM - Forum: 3D Printing Software
- Replies (2)
|
 |
Hi All,
I am making progress in my search for useful, inexpensive 3D modeling softwares, especially those that can work with Linux.
I'll post more soon, but I wanted to mention that I got my windows box working, and one of the things I am playing with is Sculptris. Probably most people have heard of that. I had fun and good luck yesterday creating a figure that I may get to print at some point.
Today, looking at something else entirely, I ran across a free, open source, browser-based, and possibly better tool of the same nature - SculptGL.
https://stephaneginier.com/sculptgl/
I have only known about it for a few minutes, but it's looking great. Check it out.
Stan
|
|
|
Another Q3 domain dies |
Posted by: Mooselake - 2018-02-14, 03:43 PM - Forum: General Discussion
- Replies (10)
|
 |
The quintessentialuniversalbuildingdevice.com domain, last used for the ticketing system, has expired. It's looking less likely that Q3 still exists.
We'll know for sure on 4/29/18 if q3dprinter.com, which is used for the online ordering site, disappears too
Kirk
|
|
|
|