- 5
- 26 692
LRS Maker
เข้าร่วมเมื่อ 2 พ.ย. 2011
Simple bearing removal trick
Simple trick to easily remove a bad bearing from a pulley without any special tools.
music by:
Rich in the 80s - DivKid
music by:
Rich in the 80s - DivKid
มุมมอง: 189
วีดีโอ
Timelapse Camera Build for my 3D Printer | Affordable & Automated
มุมมอง 3.7K2 ปีที่แล้ว
This video shows you all the details on how I build my timelapse camera for my 3D printer (the Artillery Sidewinder X1) using octolapse. Which is running on a raspberry pi with octoprint. 0:00 Intro 0:43 Hardware 1:50 Design 3:25 Printing the parts 4:57 Hacking the lights 6:32 Cabling 8:59 Assembly 10:29 Octolapse configuration 13:49 Results 15:07 Final thoughts All the models and files can be ...
Sidewinder X1 SKR 1.4 + Raspberry Pi setup inside housing
มุมมอง 11K3 ปีที่แล้ว
You can find the STL file for the subframe here: www.thingiverse.com/thing:4759811
hi can you help me to set my x1 ?? plz
do you can help me, i have sony ezv10 and bambu a1 mini
Yo, where did u find those gimbal mounts?
AliExpress as is all the other stuff
@@LRS_maker thx :)
@@AphaGoodies the one i have is called SmallRig Video Metal Mini Ball Head Cold/Hot Shoe Mount w/ 1/4" Screw Support Bracket for DSLR Camera LED Light Monitor 2059 a.aliexpress.com/_EzLh4zf
@@LRS_maker oh thx. also what software do you use (like octoprint or cura??)
@@AphaGoodies yeah octo
Lovely! Wish I could’ve use such thing on my Bambu Lab printer!
What is that camera?
It's a raspberry pi HQ camera
Over engineered but I love it!
Will you share a diagram?😢
Thanks for this, it answered most of the questions I had. Did you use a wiring diagram or can you share one?
Great work, you just inspired me, thank youe
Thanks for the video maat
So you can't really replace the quality of a good DSLR. I tried to get away with RPI camera a while back but it was a struggle. Also to get @WildRoseBuilds quality timelapses, you need consistent lighting. Your environment is contributing a lot to poor picture quality. Finally really like what you have done with the lights, I think you need brighter lights and then apply post processing filters to get cool images. You are right track.
Where can we get the build?
The link is in the description
So... I'm trying to recreate this with my own flare but I have no experience with arduinos, how do you power them, can I use something a little less expensive?
I'm using a 3euro esp32, which is insanely overpowered for this application but i have them lying around. I just power it with a simple 5v source like a phone charger, it doesn't draw much power
@@LRS_maker I went with a sparkfun. Thanks for sharing this and providing some inspiration!
Amazing!!
I think the reason the edges are blurry is octolapse using aggressive video compression.
The 16mm lens has better quality as well
Great work !! keep it up man!!👍
Good start off for your channel Nice!
I think more light can improve image quality on this camera .
Amazing👍👍
Thanks!
Nice upgrade. Are you planning to add a BLtouch? I also want to add klipper with input shapper to get rid of ringing and ghosting but it seems harder than adding a BLtouch.
BLtouch would be nice, but don't really have too much first layer problems so not a priority. Input shaping is definitely beneficial for this type of printer, but don't see myself having the time to figure it out anytime soon. Do you know any documentation of people who did it for this printer?
Where to get the 3d prit file? <3
Why would you need a Pi when you have a 32-but main board?
What percentage of infill did you use for the bonfire light base? was it 100% infill with natural PLA opaque white
It's more like 15, should be as minimal as possible to let the light through. Best would be 0 but printing might become difficult.
What if you accidentally press the button???
Hey Lars nice set up! Did you have any issues at all powering the Pi off the SKR after all this time?
No issues but you will need to get the dcdc converter to have sufficient power
Did it make a difference in print quality and speed? Also how much did you spend? Thanks in advance.
I have a Sidewinder X1 printer and I want to install SKR 1.4 + Raspberry Pi 4 Please help and I will send you money after trying the printer and it's ok
Wat een MacGyver actie 🤣 De mijne heb ik ernaast staan in een kastje, is prima zo. Ij ga OctoKlipper installeren, dus ik denk niet dat ik een SKR 1.4 nodig heb. Voor automatisch uitschakelen heb ik een Sonoff S20 met een andere firmware zodat ik het via een octopi app besturen kan (Voor het uitschakelen van mijn printer). En daarbij een auto shutdown app voor octoprint zelf.
I thought about something similar but I decided not to because of the WiFi reception, maybe I'll consider it again. One question, have you tried to utilize the integrated official display with something like OctoScreen?
Will this also be possible for the artillery genius?
I don't own one so I don't know if it fits, you might have to redesign the subframe.
Hey, great video, got a few ideas from it. Although I am using Klipper at the moment I am curious on how you has your touchscreen connected to skr 1.4T. Do you a diagram for the cable ? Thanks
There is a TFT output on the SKR board, just connect it to the screen with the existing white ribbon cable. Though you need to change the connector from a 2x4 dupont to a 1x4 in order to fit in the SKR board. I just got four dupont connectors from some breadboard jumper wires and jammed in a piece of paper next to them to make sure they don't fall out
Great Video, describes exactly what i plan to do. Maybe you can go into your Marlin configuration with the Sidewinder in a separate video? :)
Thank you! I do have the config files included in the thingyverse link of the description. I'm not planning on a video, config files are so boring to talk about haha. I can advise you to look at the examples on the official Marlin page for the sidewinder and go from there if you want to reconfigure it yourself, or just use mine. Cheers!
awesome Work :) I'll do the same. Only the firmware is what a struggle with atm.
Hey where did you get the led ring light? Also can you provide the arduinoncode?
I used a neopixel ring with 12 LEDs, you can get them anywhere like aliexpress or a local electronics shop. Sorry for late response, don't receive notifications. Arduino code below:
#include <Arduino.h> #include <Adafruit_NeoPixel.h> #define NEO_CTRL_PIN 16 #define NUM_LEDS 12 Adafruit_NeoPixel strip(NUM_LEDS, NEO_CTRL_PIN, NEO_GRB + NEO_KHZ800); uint16_t hue_array[NUM_LEDS] = {0}; uint16_t hue_array_old[NUM_LEDS] = {0}; uint loop_time_ms = 10; uint cool_down_rate = 10; //hue integers per cycle float spark_chance = 0.3; //spark chance per second per pixel (0 to 1) uint hue_increase_on_spark = 2500; float intensity_spread_factor = 0.2; //spread factor in hue difference per second uint maxhue = UINT16_MAX/6; //corresponds to yellown (~11000) void setup() { Serial.begin(115200); strip.begin(); strip.setBrightness(128); strip.show(); // Initialize all pixels to 'off' } void loop() { delay(loop_time_ms); for(int i=0; i<NUM_LEDS; i++){ hue_array_old[i] = hue_array[i];//store last cycles hue values hue_array[i] -= cool_down_rate;//apply cooldown too the fire if(hue_array[i] > maxhue){//protect against buffer overflows hue_array[i] = 0; } float lhs = esp_random()/float(UINT32_MAX); float rhs = spark_chance*loop_time_ms/1000.0; if(lhs < rhs){//apply sparkchance hue_array[i] += hue_increase_on_spark; } //Serial.print(lhs);Serial.print("\t"); Serial.println(rhs); } for(int i=0; i<NUM_LEDS; i++){//check bounds if(hue_array[i] > maxhue){ hue_array[i] = maxhue; } } for(int i=0; i<NUM_LEDS; i++){//control the intensity spread int neighbour_diff = 0; if(i == 0){ neighbour_diff = hue_array_old[i+1]-hue_array_old[i]+hue_array_old[NUM_LEDS-1]-hue_array_old[i]; }else if(i == NUM_LEDS-1){ neighbour_diff = hue_array_old[0]-hue_array_old[i]+hue_array_old[i-1]-hue_array_old[i]; }else{ neighbour_diff = hue_array_old[i+1]-hue_array_old[i]+hue_array_old[i-1]-hue_array_old[i]; } hue_array[i] += neighbour_diff*(intensity_spread_factor*loop_time_ms/1000); uint32_t rgbcolor = strip.ColorHSV(hue_array[i], 255, 255); //convert hue value to RGB color strip.setPixelColor(i, rgbcolor); //update the pixel value } strip.show(); //push the colors to the neopixel ring }
@@LRS_maker sorry to bother you with this, but when i'm trying to upload this from arduino I can't find the esp_random declaration. Should that be in there too? Arduino isn't happy and keeps giving me an error
@@infernalbird2 no worries, I use an esp32 microcontroller, this is a board specific function. You can replace it with any other function that works on your micro, just google Arduino random function.
@@LRS_maker I got a spark fun red board, I figure it should work very similar? I'll have to watch some videos tonight.
👏