Polarlicht Posted September 12, 2021 Posted September 12, 2021 One thing the reviewers haven't shown is if they model can be seperated into sections for transport, as shown on the box or instr. Quote
howitzer Posted September 12, 2021 Posted September 12, 2021 Review from New Elementary is up, and has some interesting analysis on the new tread links: https://www.newelementary.com/2021/09/lego-technic-review-42131-cat-d11t-bulldozer.html Quote
Jim Posted September 12, 2021 Posted September 12, 2021 13 hours ago, 2GodBDGlory said: Does anyone have good images of the new track link and linear actuator yet? I'm working on the 2021 update to my book, and I'd like to include those. @Jim, do you think your review will have such images? Thanks I have two pics. Will post the review tomorrow evening btw. I still need to shoot some pics. Quote
Ngoc Nguyen Posted September 13, 2021 Posted September 13, 2021 @Jim Do the photos in the review have blue backgrounds Quote
Jim Posted September 13, 2021 Posted September 13, 2021 3 hours ago, Ngoc Nguyen said: @Jim Do the photos in the review have blue backgrounds Yes. I tried blue for a change. I really like the contrast, but like black it scratches easily. Quote
Polarlicht Posted October 2, 2021 Posted October 2, 2021 I did take a look in the C+ app today, any i don't see the set in it. Will there be an update? Quote
ScT Posted October 2, 2021 Posted October 2, 2021 My Control+ app updated yesterday, on iOS. It now has the Bulldozer and a "Debug" option that i'd not noticed before. Also found that Proshop in Norway is selling this for 3800 nok, which is about €380. Interesting... Quote
howitzer Posted October 2, 2021 Posted October 2, 2021 Now also available for ordering (delivery in few weeks) here in Finland for 373,90€. The same store has the Liebherr for 319,90. Quote
Maaboo the Witch Posted October 2, 2021 Author Posted October 2, 2021 The Android version still doesn't have the CAT's profile. Quote
M_longer Posted October 2, 2021 Posted October 2, 2021 3 hours ago, Maaboo35 said: The Android version still doesn't have the CAT's profile. All people who bought & built it already has beuatiful paperweights :) Quote
Gimmick Posted October 2, 2021 Posted October 2, 2021 1 hour ago, M_longer said: All people who bought & built it already has beuatiful paperweights :) No :) Quote
efferman Posted October 2, 2021 Posted October 2, 2021 1 hour ago, Gimmick said: No :) Ok, all android users. Quote
Gimmick Posted October 2, 2021 Posted October 2, 2021 4 hours ago, efferman said: Ok, all android users. It would frustrate 'normal customers' of course. But not because it's not usable, but because they don't know about PU... Quote
eric trax Posted October 3, 2021 Posted October 3, 2021 3rd october. There's still no Control+ update for android users. Price - $449.99 Lego You're joke last two years. Quote
AVCampos Posted October 3, 2021 Posted October 3, 2021 I made a short program in Pybricks to control the Cat from a LEGO PU remote. Although it lacks the app's niceties such as tilt information, route drawing and especially proportional control, I found physical buttons more pleasant to use and it switches functions a lot faster (not to mention the calibration only takes a few seconds). @kbalage's tutorial for the buggy and Zetros was invaluable for this! In the program, I set the remote's +/- buttons to directly control the treads. The red buttons control the active function. Pressing the green button cycles through the four functions, and the remote's LED indicates which one is active: Blue: blade lift Green: ripper Yellow: ladder Red: blade tilt White: function switching in progress # Basic imports from pybricks.pupdevices import Motor, Remote from pybricks.parameters import Port, Direction, Stop, Button, Color from pybricks.tools import wait # Initialise the motors motor_left = Motor(Port.A, positive_direction=Direction.COUNTERCLOCKWISE) motor_right = Motor(Port.B) motor_function = Motor(Port.C, positive_direction=Direction.COUNTERCLOCKWISE) motor_change = Motor(Port.D) SPEED_CHANGE = 720 # Speed for the function shifting motor def reset_selector(): """Moves the function selector to the first position""" # Run the motor backwards until it hits the physical limit in the shifting mechanism motor_change.run_until_stalled(-SPEED_CHANGE, then=Stop.HOLD) # Since the angle that hits the limit is a little over a 90º position of the selector, get the nearest multiple of 90º rounded_angle = round(motor_change.angle() / 90, 0) * 90 # Run the motor to the precise multiple of 90º motor_change.run_target( speed=SPEED_CHANGE, target_angle=rounded_angle, then=Stop.HOLD, wait=True) def set_led(angle): """Sets the colour of the remote's LED based on the selector's angle""" if angle == 0: colour = Color.BLUE elif angle == 90: colour = Color.GREEN elif angle == 180: colour = Color.YELLOW elif angle == 270: colour = Color.RED else: colour = Color.WHITE # This should never happen, but just in case remote.light.on(colour) # Connect to the remote remote = Remote(timeout=None) remote.light.on(Color.WHITE) # Set the selector to the first position, and mark it as zero reset_selector() motor_change.reset_angle(0) chosen_angle = 0 set_led(chosen_angle) # Now we can start driving! while True: # Check which buttons are pressed. pressed = remote.buttons.pressed() # Set the left tread to the left buttons speed_left = 0 if Button.LEFT_PLUS in pressed: speed_left += 100 if Button.LEFT_MINUS in pressed: speed_left -= 100 # Set the right tread to the right buttons speed_right = 0 if Button.RIGHT_PLUS in pressed: speed_right += 100 if Button.RIGHT_MINUS in pressed: speed_right -= 100 # Set the selected function to the red buttons speed_function = 0 if Button.RIGHT in pressed: speed_function += 100 if Button.LEFT in pressed: speed_function -= 100 # Process the green button if Button.CENTER in pressed: # The mechanism is shifting, let the user know this remote.light.on(Color.WHITE) chosen_angle += 90 # Move the function selector to the next function if chosen_angle > 270: # If we're already at the last function and the selector is physically blocked from turning 360º, we need to turn back chosen_angle = 0 reset_selector() # We can't use run_target() here because it always chooses the shortest path, which would be to turn forward from 270º to 360º instead of back from 270º to 0º else: # Normal case: just turn the selector to the desired position motor_change.run_target( speed=SPEED_CHANGE, target_angle=chosen_angle, then=Stop.HOLD, wait=True) # The selector is at the desired position; tell the user the good news set_led(chosen_angle) # Wait for the user to be release the green button while Button.CENTER in remote.buttons.pressed(): wait(10) # Apply the selected speed to the thread and function motors motor_left.dc(speed_left) motor_right.dc(speed_right) motor_function.dc(speed_function) # Wait wait(10) Quote
1gor Posted October 3, 2021 Posted October 3, 2021 1 hour ago, Ngoc Nguyen said: Reject C+, return to PF That crossed my mind; ladies and gentleman why do complain; if you are ready (and have patience to save this amount of money) to spent €450 then you could have some patience for app Quote
Jim Posted October 3, 2021 Posted October 3, 2021 @AVCampos Sweet! Nice work and thanks for sharing Quote
Bartybum Posted October 4, 2021 Posted October 4, 2021 8 hours ago, 1gor said: That crossed my mind; ladies and gentleman why do complain; if you are ready (and have patience to save this amount of money) to spent €450 then you could have some patience for app SURELY you realise how ridiculous this logic is, right? Quote
Al Ex Posted October 4, 2021 Posted October 4, 2021 @ABCampos thanks, the idea with LED function indicator is very clever Quote
Maaboo the Witch Posted October 4, 2021 Author Posted October 4, 2021 20 hours ago, eric trax said: 3rd october. There's still no Control+ update for android users. Price - $449.99 Lego You're joke last two years. 4th October. There's still no Control+ update for Android users. Price £419.99. TLG, get it together. Needless to say I would be extremely pissed if I'd bought this thing on Day One. Quote
Jim Posted October 4, 2021 Posted October 4, 2021 13 minutes ago, Maaboo35 said: 4th October. There's still no Control+ update for Android users. Price £419.99. TLG, get it together. Needless to say I would be extremely pissed if I'd bought this thing on Day One. You already seem pissed while not buying it The update arrived! Now it’s time to start complaining about the app itself. Quote
TeamThrifty Posted October 4, 2021 Posted October 4, 2021 1 minute ago, Jim said: You already seem pissed while not buying it The update arrived! Now it’s time to start complaining about the app itself. Ain't that the truth... again... Personally, i'm really looking forward to getting this set at xmas. And just to be a rebel, i like C+... playing with programming it myself is an important step into the modern world by TLG. Blending the digital with physical is fantastic. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.