I'm literally thunderstruck by the multiple layers, scales and magnitudes of awesome creative work of Lego engineering, coding, video production and editing, writing and presentation. This video should have many many more views. Brilliant work, sir!
Having to refill the colors seems like the main downside of this. With how long it seems to take it would be nice if you could just set and forget and not keep checking on it. You could extend the color ‘hopper’, and modify it so you can see the height of each color stack with tick marks for every 10 plates. Then the program could print out the number of each color that is needed in the current design and you’d know up to what tick mark you need to fill each color at minimum to complete the ‘print’ without needing a refill. The program could also prompt the user for how many of each color they have and do two passes on the image: first for each pixel compute a ‘difference’ value for each available color, then in the second pass always first greedily assign colors to those remaining unplaced pixels with the lowest ‘difference’ to the colors, tracking the remaining colors you’d have and always assigning the next lowest ‘difference’ color that also is still available. This should result in the final design never using more of a color than what you have, while still looking as ‘close’ as possible to the desired image. A neat side effect of this is that you could effectively choose palettes - eg. If you only specifying counts for various black/grey/white plates then the final design it outputs would be completely greyscale. Same if you only input counts for blue tones. You could also include dithering as a means to better approximate colors and better handle not having enough of a color.
Yes, this might be the first time I cared about the aesthetics of my code and I am liking it lol 😄. Looking forward to the next video too! Finally getting some upgrades in with Dave.
What if the program could tell you the number of peices of each color it needs before starting? Like a heads up. "You will need to refill black 2 times and gray once"
If you wanted to speed it up, you could have the pick and place be able to grab more tiles at a time and have each stack be able to dispense tiles onto a belt. Then the dispensers could queue up the next strip of tiles while the gantry is placing it, and you reduce the number of gantry trips
This is utterly amazing! As others pointed out, the synergy of all your skills makes this video one of the best lego videos I've seen in a while. Keep it up!
Through the whole era of 32-bit Windows, the icons came in 32x32 pixel flavor. It would be fun to see some classic icons getting revived in LEGO. Winamp anyone?
Wow! congratulations mate!! you did a truly amazing job designing and building this machine from scratch! your skills at robotics and coding were wonderful to watch! well done! :)
Hello. I am an old fan and you probably dont remember me but I suggested a few ideas for you and you actually built them.(for example chess playing robot, arcade). I just wanted to say congratulations on already hitting almost 250k subscribers and still uploading videos. You blew up. Hope to see more. Big fan.
Hey! Thank you for watching my videos! I appreciate it! I do remember going back into the comments to your comment about the chess machine after making it. Your early support meant a lot, and it’s awesome to see you still here. Can’t wait to share more projects with you!
The reason making the image smaller makes it all blurry is because it (probably) uses bilinear interpolation when resizing the image. With whatever software you are resizing, you can probably change this method to use nearest neighbor in stead, nearest neighbor will simply use a single color from the original and use that, there's no average. This achieves basically the same as what you did, but you don't have to reinvent the wheel.
I actually thought the scaled image at 8:25 looked better than the eventual result. Anti-aliasing by grey pixels helps to smooth the lines while keeping the correct shapes, and the machine has grey 1x1s to use. Look at it from further away and the “ugly, washed-out image” looks better than the wrong-shaped sharper-coloured version. Darn, now I have to build the whole machine myself to get that result I prefer :)
i have a suggestion to make a pixel art with good quality u can divide the picture into 4 part each 32 * 32 and then create those 4 parts and join them together . if you repeat this process again and again you can have a 1024 * 1024 pixel art EDIT- Subscribed after watching this video
@@CreativeMindstorms you can make a smaller version 256 *256 that will also be good and more amazing you can achieve this by upgrading the size of the portrait like form 32 to 64 and then to 128 and then to 256 this would also be good and you can also create a video on it
How about adjusting the machine so it preloads the colours in the programmed order. So instead of going to get the studs everytime, it loads 10 studs at a time.
Multiple placing heads could multiply speed as well, they could be mounted on the same y axis actuator and place pixels simultaniously but 3 or 4 rows/columns apart
As a Mindstorms collector I'm a little biased when it comes to the awesomeness of Mindstorms creations, but I'll say it anyway: "You, and your creations, are awesome!".
Cool project! To capture how a human would draw things like a sunflower at this scale vs. the garbled mess you get from downscaling, you need an ai trained on pixel art. There are stable diffusion models that do this. You could even train your own on lego-colored 32x32 images specifically. Another idea: You could use the full range of lego colors if you simply do multiple passes. You could even go so far and make the software plan ahead and ask for stacks of specific colors in whatever slot it wants, so you don't have to interrupt so often to refill a single color.
so i guess the next logical step is too add a z-axis to the bed and make it a 3d printer, you could use a voxelizer algorhithm and combine it with meshy ai
Would it be feasible to have the arm pick a complete strip of legos of one color and put them on the board? So it saves time of returning to the supply for every single pixel. It also saves you time to watch over it for the refills because you only have to refill it when all the colours are empty.
Hey, I really liked this! And I want to build it in real life myself, and I was just wondering if its possible to get some more photos or some 3d design/render if you got that. Ty
Love this video, subscribed to your channel because of it. Next step - 3D building robot, that builds in the Y-axis/Z-axis (up?), you can do it I know you've got the talent! I know many have suggested it already, but felt I should chime in as well.
Why is your GIMP in dutch? I live in the Netherlands but I didn't expect you to have it in dutch. (at 8:20 you can see in the right-top corner the scaling menu is in dutch) edit: Your windows is also dutch, look at the taskbar search box on 10:00.
When downscaling to 32x32 you can choose the most frequent value instead of the center value to avoid the smudged colors. This happens when accidentally choosing colors in beteween two colors since they've most likely had some kind of blending in between in the original image.
Would it be faster if you had a smaller hopper on the brick delivery unit, fill it with one colour, and then deliver a bunch without repeated trips back to the brick supply?
Fantastic! It's be even cooler if it could stage all the tiles for a given row somehow, to avoid the back-and-forth travel. And pop off the 16x16 tiles and replace them. And a pony!
This is very cool, I have a slight love-hate thing going on with how you get pink tiles in the finished 'print' that look like jpeg artifacts (or I suppose more like a gif with a very limited colour palette) but I've made favicons for websites in the past and I know how hard it is to work with so few pixels. I actually think the 'printed' physical Lego versions look even better than the on-screen previews. The whole thing looks very professional, like Lego could sell it as a Lego 3D Printer kit or something.
Thank you for that! Working with few colors and pixels is indeed hard to do. I also tried making the saturation of the colors a higher priority when deciding the closest color, but it unfortunately didn't help with getting rid of the pink and green pixels. Thank you for commenting and leaving your thoughts!
@@CreativeMindstorms If RUclips could convert goodwill into revenue, you'd be a multi-millionaire by now, based on what I've seen of your video vibes. :)
Yeah I'm still waiting for that day! Otherwise it has all been for nothing! Jokes aside, I'm just truly thankful for all the positive reactions and I hope to make someone's day too after they made my day 😄
When it comes to pick&place-machines for PCB manufacturing (what this most closely reminds me of), there is the problem of rotation - is there any problem with studs beeing ever so slightly rotated so it will "crash" with the niegbour when about to be placed, or have you worked around that?
I haven't come across that problem even once, since the pixels come out aligned and when I go to place them, I start moving down about 2mm away from the neigbours, then move it against the neigbours before pressing it down properly. That has worked great for me.
Hi!! This is so awesome! I've been wanting to get into making cool lego machines and stuff like this but I don't known literally anything lol, where would I start and where can I learn how to do all this stuff from starting with 0 knowledge?
Honestly, the way I go about it, is simply pick a project and start by searching online for the problems you encounter. You should divide it up into smaller problems and solve them one by one. You could start out with a tutorial that gets you done with even 1% of the project and improve from there.
I know it makes sense to check the image first but it’d be fun to not see a preview at all… Type something in, go out for a couple of hours and come back and see what produced. Maybe add some code that crops the image to fill the space but still without seeing it ☺️
This triggers so many memories, lol.
Yes
It is YOU!
It indeed does
HI JK!
Kiivbhu
Good choice of making it a fox. Very good. Yes.
Consider this a tribute. Whether that is true we're not going to discuss 😄
Wow!
Is that the popular minecraft youtuber and modder Fundy minecraft?
@@CreativeMindstormswow so thats cool
Fundy!
I'm literally thunderstruck by the multiple layers, scales and magnitudes of awesome creative work of Lego engineering, coding, video production and editing, writing and presentation. This video should have many many more views. Brilliant work, sir!
Thank you so much sir! I appreciate everyone watching and I thank you for taking your time to write a nice and thoughtful comment!
Well, if you play in a mindstorm, there is a good chance you might get thunderstruck
Having to refill the colors seems like the main downside of this. With how long it seems to take it would be nice if you could just set and forget and not keep checking on it.
You could extend the color ‘hopper’, and modify it so you can see the height of each color stack with tick marks for every 10 plates.
Then the program could print out the number of each color that is needed in the current design and you’d know up to what tick mark you need to fill each color at minimum to complete the ‘print’ without needing a refill.
The program could also prompt the user for how many of each color they have and do two passes on the image: first for each pixel compute a ‘difference’ value for each available color, then in the second pass always first greedily assign colors to those remaining unplaced pixels with the lowest ‘difference’ to the colors, tracking the remaining colors you’d have and always assigning the next lowest ‘difference’ color that also is still available.
This should result in the final design never using more of a color than what you have, while still looking as ‘close’ as possible to the desired image. A neat side effect of this is that you could effectively choose palettes - eg. If you only specifying counts for various black/grey/white plates then the final design it outputs would be completely greyscale. Same if you only input counts for blue tones.
You could also include dithering as a means to better approximate colors and better handle not having enough of a color.
That's really well thought out! If I am going to upgrade this machine, I will definitely try this!
E
@@jesmay.09Can you make your reply russian?
That or hear me out, have enough of each single color in stock to print a 32x32 flat color image of only that color, so 1024 of each color
Love the machine! Excellent work, yet again! 💯
8 likes and no comments?????? :(
Thank you man! I appreciate it!
Hello!!!
Not only does your LEGO skill keep improving, your video making has also become really good! This video will do well 😉
I hope so lol. I'll try to keep improving 😊
PuzzLego is here?!?!
@@CreativeMindstorms i called it😆😆😆😆
@puzzLEGO yup, lol!
Puzzlego why have u been absent for 1 month
This video is so incredibly high quality, both in terms of content and design. Well done!
Thank you so much! That means a lot! I tried experimenting a bit with the style and hope it turned out good.
@@CreativeMindstorms it turned out more than good, you're pretty underrated i think you deserve absolutely more subs😅
As soon as I saw this in my notifications, I also thought of the Bricasso. Glad you took it to the next level!
Yes, me too! Bricasso is still the pixelart-robot-king in my opinion though 😅
Will you ever come back to youtube
9:45 That's just awesome detail, I really love that :)
I can't wait for your next video, Dave will definitely like it! Really nice project as always!!
Yes, this might be the first time I cared about the aesthetics of my code and I am liking it lol 😄. Looking forward to the next video too! Finally getting some upgrades in with Dave.
The video is nicely edited, it flows really well.
Thank you! It took some time 😄.
Very impressing! Your dedication and humourous joy are really a pleasure to watch. Kepp doing what you like!
Thank you! That made my day 😊
What if the program could tell you the number of peices of each color it needs before starting? Like a heads up. "You will need to refill black 2 times and gray once"
Love how you can still hear the dutch accent, Maar goed bedacht en gemaakt!
If you wanted to speed it up, you could have the pick and place be able to grab more tiles at a time and have each stack be able to dispense tiles onto a belt. Then the dispensers could queue up the next strip of tiles while the gantry is placing it, and you reduce the number of gantry trips
this is an incredible RUclips video and incredible lego creation. awesome work!
Thank you for that! I appreciate it!
This is utterly amazing! As others pointed out, the synergy of all your skills makes this video one of the best lego videos I've seen in a while. Keep it up!
Oh wow thank you for that! I'll try my best!
The fact you can remove the boards and keep the print just makes it better
Thats awesome. Also you should use a raspberry pi running an ai locally for dave, so you can bring him anywhere.
Deffo Dutch, hoi! Toffe shiz. Ideas filling my head haha. Kga m'n plotter weer uit de kast halen. Subbed.
Through the whole era of 32-bit Windows, the icons came in 32x32 pixel flavor. It would be fun to see some classic icons getting revived in LEGO. Winamp anyone?
Oh that would actually be cool!
That's very impressive!
Keep up the good work!
Thank you, I'll try!
*the WONDERFUL world of NOT PLANNING AHEAD and just IMPROVISING” so relatable 😭
So true
Haha yess! It is honestly the best too!
Wow! congratulations mate!! you did a truly amazing job designing and building this machine from scratch! your skills at robotics and coding were wonderful to watch! well done! :)
Thank you so much mate! I appreciate it!
Hello. I am an old fan and you probably dont remember me but I suggested a few ideas for you and you actually built them.(for example chess playing robot, arcade). I just wanted to say congratulations on already hitting almost 250k subscribers and still uploading videos. You blew up. Hope to see more. Big fan.
Hey! Thank you for watching my videos! I appreciate it! I do remember going back into the comments to your comment about the chess machine after making it. Your early support meant a lot, and it’s awesome to see you still here. Can’t wait to share more projects with you!
Cool idea! ❤
Wonderful and inspiring. Will show this to my 10 year old. With young guns like you, there is still hope in this world. Godspeed to you.
Thank you for that! Glad you liked it!
love the 'no waste' art that you can take appart and start over.
If you attached this machine to Dave and then Dave would be a Lego pixel art machine and make hands for Dave to place the pixels
This might just be the most impressive thing I've ever seen done with Lego, great job!
Thank you so much! I appreciate you watching and commenting!
RESPECT! You're a damn GOOD maker! Keep it up brother, you'll be excelling! Love from Germany!
Danke schön!
@CreativeMindstorms Ja bitte gern! Habe ja auch nur Tatsachen geschrieben!
Its impresive what you do and the low suscriptors you have, you should have millions ,grate creativity and talent, thanks for this kind of content.
Thank you for that! Welcome to the channel!
The reason making the image smaller makes it all blurry is because it (probably) uses bilinear interpolation when resizing the image. With whatever software you are resizing, you can probably change this method to use nearest neighbor in stead, nearest neighbor will simply use a single color from the original and use that, there's no average. This achieves basically the same as what you did, but you don't have to reinvent the wheel.
I actually thought the scaled image at 8:25 looked better than the eventual result. Anti-aliasing by grey pixels helps to smooth the lines while keeping the correct shapes, and the machine has grey 1x1s to use. Look at it from further away and the “ugly, washed-out image” looks better than the wrong-shaped sharper-coloured version.
Darn, now I have to build the whole machine myself to get that result I prefer :)
i have a suggestion to make a pixel art with good quality u can divide the picture into 4 part each 32 * 32 and then create those 4 parts and join them together . if you repeat this process again and again you can have a 1024 * 1024 pixel art
EDIT- Subscribed after watching this video
I would need a million lego pieces, but sure that would be cool! Oh and also: it would take over 3000 hours for this machine to complete it!
@@CreativeMindstorms you can make a smaller version 256 *256 that will also be good and more amazing
you can achieve this by upgrading the size of the portrait like form 32 to 64 and then to 128 and then to 256 this would also be good and you can also create a video on it
This is impressive! I love it
Thank you!
How does this video not have a million views already? Your ingenuity, simply amazing!
Thank you for that! I'm still very grateful for even 10%!
This is awesome. You are so talented!
Thank you!
How about adjusting the machine so it preloads the colours in the programmed order. So instead of going to get the studs everytime, it loads 10 studs at a time.
Heck, load the whole image while it's building! Definitely do get inspiration from bead printing robots!
@denisedtd I haven't even considered that. That might be a lot faster!
Multiple placing heads could multiply speed as well, they could be mounted on the same y axis actuator and place pixels simultaniously but 3 or 4 rows/columns apart
Also, can't image generators output directly in 32x32 pixels?
@Leon1904ffhhsus No, AI isn't great at following rules yet, so more often than not, it gets worse.
I love your videos! They're always so helpful and informative.
Thank you for saying this!
It's been a few months since I last checked my subscriptions. Dang your channel has grown! Keep it up!!
Yep! It's been a wild year!
really cool build keep it going!
Thanks, I'll try!
Incredible build and video dude, love it!
Thank you so much!
Really nice. You might as well have it make even larger artwork in pieces.
Those images couldn't be cuter. Incredible.
As a Mindstorms collector I'm a little biased when it comes to the awesomeness of Mindstorms creations, but I'll say it anyway: "You, and your creations, are awesome!".
Thanks a lot Paul! I appreciate your bias 😄
I really like the build, considering that it may be pretty hard to make pixel art out of lego. I also like how you tease dave getting new features.
Thank you!
Will you ever post the code and build instructions?
I will not make build instructions, but I am setting up a GitHub repository where you can download the code.
The code is now available for Download on GitHub:
github.com/CreativeMindstorms/AI-LEGO-PixelArt-Robot
this is.
AWESOME! keep up the great work! new sub
I would like to say.
THANK YOU! Welcome to the channel!
Cool project! To capture how a human would draw things like a sunflower at this scale vs. the garbled mess you get from downscaling, you need an ai trained on pixel art. There are stable diffusion models that do this. You could even train your own on lego-colored 32x32 images specifically.
Another idea: You could use the full range of lego colors if you simply do multiple passes. You could even go so far and make the software plan ahead and ask for stacks of specific colors in whatever slot it wants, so you don't have to interrupt so often to refill a single color.
Those are some good suggestions! If I ever make a version 2, I will definitely take a closer look at them!
so i guess the next logical step is too add a z-axis to the bed and make it a 3d printer, you could use a voxelizer algorhithm and combine it with meshy ai
Yeah that would be cool!
Would it be feasible to have the arm pick a complete strip of legos of one color and put them on the board? So it saves time of returning to the supply for every single pixel. It also saves you time to watch over it for the refills because you only have to refill it when all the colours are empty.
Yeah I think that would save a lot of time. I guess I haven't thought enough about time when I started. Thank you for the suggestion!
@@CreativeMindstorms I also only realised it until I saw it in action. Looking forward to the next version 😅. Great work!
My 4 year old son LOVES this video, we are looking forward to more videos!
Thank you for that! I appreciate it. I'm also looking forward to making more videos! Have a nice day!
Nice Vid I like making stuff out of Lego like small Lego printers but your stuff is on a whole other level.
Thank you. It is great to hear that you're making your own machines out of Lego! I don't hear it that often anymore unfortunately 😊
you should hook up dave to the pixel art maker, and randomly, dave just makes whatever he wants.
Hey, I really liked this! And I want to build it in real life myself, and I was just wondering if its possible to get some more photos or some 3d design/render if you got that. Ty
Thanks! Unfortunately, I don't. I encourage you to design your own machine! 😊
Awesome stuff, love the video and the printer is so cool.
Thank you! I appreciate it!
Love this video, subscribed to your channel because of it. Next step - 3D building robot, that builds in the Y-axis/Z-axis (up?), you can do it I know you've got the talent! I know many have suggested it already, but felt I should chime in as well.
Thank you! Yes indeed, others have suggested it. Maybe I should try it!
Omg the beat part at 3:15 was amazing!
Why is your GIMP in dutch? I live in the Netherlands but I didn't expect you to have it in dutch. (at 8:20 you can see in the right-top corner the scaling menu is in dutch)
edit: Your windows is also dutch, look at the taskbar search box on 10:00.
I think it was just the default settings 😊
Incredible work sir, you deserve all the views and the subs. And you inspire me for my future Lego Mindstorms builds too ❤
Thank you for that! I wish you good luck with all your future Lego Mindstorms builds!
This was soooooooooooo worth it. I wish I had one. but, I didn't even know that dave was gone!
Awesome! Yeah Dave was gone in shorts, but he's back!
When downscaling to 32x32 you can choose the most frequent value instead of the center value to avoid the smudged colors. This happens when accidentally choosing colors in beteween two colors since they've most likely had some kind of blending in between in the original image.
Hmmm yeah that might have been a good way to go about it.
With the realization of ones own potential and self-confidence in ones ability, one can build a better world.
Very Cool Work keep up the cool ideas!
Thank you! I'll try!
Now this is some phenomenal content. I'm totally in! Easiest sub ever
Thank you! Welcome to the channel!
@@CreativeMindstormsYo Can you make a 3D one? That’d be amazing! 🤩 also I love your channel!! 😊
Would it be faster if you had a smaller hopper on the brick delivery unit, fill it with one colour, and then deliver a bunch without repeated trips back to the brick supply?
I hadn't even thought about that. I think so!
Completely impressed here...congrats dude!
Thank you so much! I appreciate it!
I immediately heard you were Dutch 😂 Love your vid!
Very cool build. All it needs are some bigger magazines for storing the 1x1 pixels so you can let it run unsupervised for longer.
that can probably just be changed afterwards
impressive, could you make a video how you set up the connection to you PC and python with the lego brick interested in doing some ting similar :D
Thanks! I use the Python library called ev3_dc. If you search for it online, you should be able to find the documentation.
how about just make a 3d printer with legos
WE NEED TO SEE IT!
done before lol
Was about to say impossible… never knew he did iy
He already did it
@@lorenzotimmerman nah I mean that builds 3d objects with legs kinda like this does but 3d
You should make a video selling those little cool unique art work ?
could you also ask dallE to generate a 32x32 image? That would skip the step of scaling. Maybe you could also have it only use lego colors.
I tried, but it is unfortunately very bad at following rules, so it turns out worse.
Hi, can you describe exactly how you make this division in 8:48? What program or tool do you use, or what functions?
It's a simple Python script:
def pixelate_image(original_image, imgSize):
height, width = original_image.shape[:2]
rows, cols = imgSize, imgSize
# Calculate the size of each square
row_size = height // rows
col_size = width // cols
# Create a copy of the original image to apply pixelation
pixelated_image = np.zeros((rows, cols, 3), dtype=np.uint8)
for i in range(0, height, row_size):
for j in range(0, width, col_size):
center_pixel_color = original_image[i + row_size // 2, j + col_size // 2]
pixelated_image[i//row_size, j//col_size] = center_pixel_color
return pixelated_image
@@CreativeMindstorms Thank you for your reply, after the weekend I will try to figure it out.
definitely worth it. amazing work man
Thank you!
Fantastic! It's be even cooler if it could stage all the tiles for a given row somehow, to avoid the back-and-forth travel. And pop off the 16x16 tiles and replace them. And a pony!
Will you be sharing the build instructions for the machine as well? Since I'd love to build this with my kids.
I would, but I don't make any building instructions since that takes a lot of time. I did share the code if you want to build your own machine!
This is very cool, I have a slight love-hate thing going on with how you get pink tiles in the finished 'print' that look like jpeg artifacts (or I suppose more like a gif with a very limited colour palette) but I've made favicons for websites in the past and I know how hard it is to work with so few pixels. I actually think the 'printed' physical Lego versions look even better than the on-screen previews. The whole thing looks very professional, like Lego could sell it as a Lego 3D Printer kit or something.
Thank you for that! Working with few colors and pixels is indeed hard to do. I also tried making the saturation of the colors a higher priority when deciding the closest color, but it unfortunately didn't help with getting rid of the pink and green pixels. Thank you for commenting and leaving your thoughts!
Now make it so you can ask Dave and he will send a print to the machine:)
This guy is basically the redstone engineer of legos.
dat heb je BRILJANT gedaan!
Dankjewel!
Now make a 3D printer
He already made one (four actually)
@@fuchsorsolya6722 yeah, but one which uses lego as fillament
He could stack the pixels
Yes
You need more recognition from your work, your friend.
Thank you! I'm happy with how well this has been received!
@@CreativeMindstorms Your channel never fails to make me smile. Great job!
Thank you! That made my day!
Really incredible man!!👏👏
Thank you!
Great work! Thank you for sharing this creation!
Thank you for watching and commenting!
@@CreativeMindstorms Six seconds of my effort to comment, compared to six months of your life to create the thing worth commenting on. :)
Guess that makes us even now! 😉
@@CreativeMindstorms If RUclips could convert goodwill into revenue, you'd be a multi-millionaire by now, based on what I've seen of your video vibes. :)
Yeah I'm still waiting for that day! Otherwise it has all been for nothing! Jokes aside, I'm just truly thankful for all the positive reactions and I hope to make someone's day too after they made my day 😄
Just brilliant in every respect! 🎉
Thank you!
Love the machine. Whats the appropriate build time for each pixel art piece?
Thank you! These two pieces took around 3-3.5 hours.
When it comes to pick&place-machines for PCB manufacturing (what this most closely reminds me of), there is the problem of rotation - is there any problem with studs beeing ever so slightly rotated so it will "crash" with the niegbour when about to be placed, or have you worked around that?
I haven't come across that problem even once, since the pixels come out aligned and when I go to place them, I start moving down about 2mm away from the neigbours, then move it against the neigbours before pressing it down properly. That has worked great for me.
Super awesome project! :-D
Thanks!
Any chance of a build guide or rough parts list? Would love to reproduce it
No, I unfortunately don't make any building instructions. I encourage you to make your own machine!
Make so Dave controls all of your Lego builds and you add him to every one and you can tell main Dave to print something on this and he does it.
This is so cool, thank you for the good video!
Thank you for watching!
This Machine is so cool. Can you make that it can write Something?❤
Thank you! Probably!
Incredible! 3d printer next? 🤔
Thanks! I made one with a 3D pen before, but maybe one with Lego would be cool!
This is absolutely brilliant
Thank you!
Hi!! This is so awesome! I've been wanting to get into making cool lego machines and stuff like this but I don't known literally anything lol, where would I start and where can I learn how to do all this stuff from starting with 0 knowledge?
Honestly, the way I go about it, is simply pick a project and start by searching online for the problems you encounter. You should divide it up into smaller problems and solve them one by one. You could start out with a tutorial that gets you done with even 1% of the project and improve from there.
hey you say last or not what you will do video about dave
Super cool I love this machine. :D
Thank you :D
this is absolutely incredible!!!
Thank you!
I know it makes sense to check the image first but it’d be fun to not see a preview at all…
Type something in, go out for a couple of hours and come back and see what produced.
Maybe add some code that crops the image to fill the space but still without seeing it ☺️
Luckily, it is possible to close your eyes and leave the room! 😊
Man that is beautiful!!!
Thank you!