-
Posts
170 -
Joined
-
Last visited
Content Type
Profiles
Forums
Gallery
Everything posted by mikezang
-
I want to know where I can download LDCC (Lego DCC) firmware source, does anyone help me? LDCC is used to control Lego train.
-
How to check if locomotive is on a curve track?
mikezang replied to mikezang's topic in LEGO Train Tech
Thanks a lot, though I used a bush to fix axle, but your idea is better. Now my own bogie has a rotation sensor to check velocity, a vertical axle to another rotation on the front of locomotive to check if train on curve, then there is a light sensor to check IR from RCX for proximity. On the back of train, there is a train motor and a motorized uncoupled with touch sensor for coupling or un coupling. On the middle of train, there is it a RCX. This train will run automatic by brickOS program, it will forward in specific velocity even on curve, It will pause if found objects in front of train on straight track until objects removed, it will uncouple car and couple car after sometimes. I will show you when I finish it. -
Is this axle 7 is too long in PF train motor set?
mikezang replied to mikezang's topic in LEGO Train Tech
Yeah, it works, but it looks like too short. But I still don't why LEGO SHOP packed 7L with motor set... -
Yesterday I received two sets of PF train motor, but I found the axle 7 is too long so that I can't attach Motorbogie, Ornament. Then I tried axle 6 but it seems like too short, what can I do?
-
Thanks a lot! Is this can be used with PF motors?
-
I want to buy some PF wheels which has axle hole, I googled but no any results, does anyone give me suggestion, where can I buy such wheels as Black Train Wheel With O-Ring?
-
How to check if locomotive is on a curve track?
mikezang replied to mikezang's topic in LEGO Train Tech
Is it possible to put a part on axle of train bogie plate, when bogie plate is rotated, that part is also in rotation? -
How to check if locomotive is on a curve track?
mikezang replied to mikezang's topic in LEGO Train Tech
Is there any figure or image for all of your idea? -
Thanks for your advise .
- 12 replies
-
How to check if locomotive is on a curve track?
mikezang replied to mikezang's topic in LEGO Train Tech
Can you explain for detail? Do you have any figure to illustrate it? I am interested in that. -
How to check if locomotive is on a curve track?
mikezang replied to mikezang's topic in LEGO Train Tech
This is what i wondered, I tried it but no successful... -
Great! you fund a bug in my layout, I just modified it, not it is ok as below:
- 12 replies
-
How to check if locomotive is on a curve track?
mikezang replied to mikezang's topic in LEGO Train Tech
Because I am using RCX and I only have touch, light or rotation sensors... -
Thanks for all of your answer.
- 12 replies
-
So I can just use a regular controller connect to this layout without any modification ?
- 12 replies
-
I am planning a project that will be a layout as below, but when I check the electric, td2.0 program told me this layout has a short circuit, I am not sure if this is correct, can you check it for me?
- 12 replies
-
I want to know if someone know how to check if a locomotive is on a curve track? One way is to use a axle to instead of bogie pin, then put a rotation sensor around that axle so that curve track can be checked. Does anyone have any more simple way to check locomotive on curve track?
-
I just pried the back plates both of light sensor and wire connector. Though separate was very difficult, at the moment, this light sensor is good. I found LEGO don't use solder for their wires to electric plates, this is why they used a thinker wire insulator. Next I have to replace this bad wire with a soft one by soldering, i am confident for electric plate, but I am not good at soldering skills, I am afraid of tiny point on the circuit board! Do you have any suggestion or tips?
-
I have a nqc program as below, it used RCX IR and light sensor as proximity sensor, it is very perfect. // proximity.c #define THRESH 50 #define MSG 255 task main() { int oldValue; SetSensorType(SENSOR_1, SENSOR_TYPE_LIGHT); SetSensorMode(SENSOR_1, SENSOR_MODE_RAW); SetTxPower(TX_POWER_HI); while (true) { oldValue = SENSOR_1; start Send; if (abs(SENSOR_1 - oldValue) > THRESH) { PlaySound (SOUND_CLICK); } stop Send; } } task Send() { while (true) { SendMessage(MSG); } } because I want to use brickOS to control my train, how can I convert it to brickOS? I tried but not successful, does anyone help me?