Ford 3000 battery

I don't use my tractor that often. Probably 2 days every 3 months. I will always disconnect the battery before storing it. Do you think a good battery can stand not being used for 3 months?

What if it died, how can I charge it?

reddit.com
u/lazyenergetic — 2 days ago
▲ 0 r/KiCad

Why the routing tools don't obey to the keep out area?

I'm confused. here is the KiCad routing tools plugin configuration. in the second photo, I'm showing pin 2 was auto routed but still used the F copper layer. I mill my pcbs and do the assembly and I'm trying to only solder the pins from the bottom.

what am I missing?

https://preview.redd.it/ts1ef0xrsmjh1.png?width=774&format=png&auto=webp&s=50f5153310d697dc519c0896619ac7618fe55a8e

https://preview.redd.it/xyk6o2ttsmjh1.png?width=590&format=png&auto=webp&s=55279551c5f949e7ba05e69eb5e73cb64b81cb4a

reddit.com
u/lazyenergetic — 4 days ago

Solar power for a barn

The barn is about 500ft from the electricity pole and meter, and I would probably need electricity there for lights and light power tools but unfortunately, I will also need to run a small air compressor probably once per month. running the compressor can only be during the full sun days, I don't think it I would need to run it at night.

I have plenty of space and I can install as many panels as I need, I can also install the panels on poles and design an electronic board so the panels can follow the sun.

Now the cost, do you think I can get this solution running with a small battery or solar here isn't worth it and I need to extend a power cable there " although it won't be cheap, as I will need to dig 500ft"

Thanks

reddit.com
u/lazyenergetic — 10 days ago

Endoscope camera for CNC Zeroing.

I'm thinking about using endoscope camera for my CNC to easily zero X and Y since I mill PCBs.

Have you seen anyone mounting it on the spindle collet itself? of course once I get the zero then I can remove it.

I can't be the first one to think about it.

reddit.com
u/lazyenergetic — 15 days ago

Electronics gadgets for a CNC machine

Hi

I built my CNC machine 3 years ago and it is working great. I'm also good with electronics and microelectronics, what are electronic gadgets/additions that I can add to my machine?

I thought about a camera that can be mounted as a bit so I can zero my machine with higher accuracy.

Did anyone have an idea about what else to add?

reddit.com
u/lazyenergetic — 26 days ago

Where to find deals?

I bought Reolink system a year ago from Cotsco and it was an amazing price. I need to install another system but can't find any good deals anywhere

Are you aware of anyone having good deals on Reolink?

Thanks

reddit.com
u/lazyenergetic — 26 days ago

How to stream/copy recordings to another computer?

I'm looking into Reolink and so far, it looks like the brand I want buy. now I want to install it in a vacation house, the DVR will be in a utility room, and I know I can always access it via the mobile or computer app. but what if I want copy the recordings of one camera " not all" to my house computer/server? is that possible?

Obviously, there is internet in the vacation house.

reddit.com
u/lazyenergetic — 1 month ago
▲ 2 r/CAIRO

الف مبروك لاسبانيا

زى منتا شوفت كدا. الارجنتين وصلت للنهاءى بالفساد بس.

مبسى بالسلامه كدا على المعاش. ويبقى مارادونا هوا البطل.

الارجنتين لعبت زفت.

reddit.com
u/lazyenergetic — 1 month ago

Why can't I drag a body in a component?

I created a body called A, then right click and chose to create a component from a body. all good.

then I have another body called B. I want it to be in the same component, but when I drag it, it doesn't go to the component I created earlier.

reddit.com
u/lazyenergetic — 1 month ago
▲ 4 r/CAIRO

يارب فرنسا تطلع خسرانه وتخرج

والله من قلبى.

ذنب بلاد أفريقيا كلها اللى شافت المر معاهم.

reddit.com
u/lazyenergetic — 1 month ago

VL6180X weird measurements

MCU is ESP32, ToF is VL6180X

If the object is about 7cm I get. which is wrong.

Light: 0.00 lux


Distance: 38 mm

but if I'm closer than that, I get errors

Light: 0.00 lux


Distance: 0 mm


Light: 0.00 lux


Unknown reading error code: 12

Light: 0.00 lux


Unknown reading error code: 12


Light: 0.00 lux

Unknown reading error code: 11


Light: 0.00 lux


Unknown reading error code: 11

I used this program"

#include <Wire.h>
#include <Adafruit_VL6180X.h>


// Create the sensor object
Adafruit_VL6180X vl = Adafruit_VL6180X();


void setup() {
  // Start serial communication at 115200 baud
  Serial.begin(9600);
  while (!Serial) { 
    delay(1); // Wait for serial port to connect (needed for native USB)
  }
  
  Serial.println("Initializing VL6180X sensor...");


  // Initialize I2C communication on default ESP32 pins (SDA: 21, SCL: 22)
  Wire.begin(21, 22);


  // Initialize the sensor
  if (!vl.begin()) {
    Serial.println("Sensor not found! Check your wiring connections.");
    while (1); // Halt execution if sensor initialization fails
  }
  Serial.println("VL6180X found and ready!");
}


void loop() {
  // Read ambient light levels
  float lux = vl.readLux(VL6180X_ALS_GAIN_1);
  Serial.print("Light: "); 
  Serial.print(lux); 
  Serial.println(" lux");


  // Read range distance in millimeters
  uint8_t range = vl.readRange();
  uint8_t status = vl.readRangeStatus();


  if (status == VL6180X_ERROR_NONE) {
    Serial.print("Distance: "); 
    Serial.print(range); 
    Serial.println(" mm");
  } else {
    // Handle the exact Adafruit library error codes if measurement fails
    if  (status >= VL6180X_ERROR_SYSERR_1 && status <= VL6180X_ERROR_SYSERR_5) {
      Serial.println("System error");
    }
    else if (status == VL6180X_ERROR_ECEFAIL) {
      Serial.println("ECE failure");
    }
    else if (status == VL6180X_ERROR_NOCONVERGE) {
      Serial.println("No target detected (Max Convergence)");
    }
    else if (status == VL6180X_ERROR_RANGEIGNORE) {
      Serial.println("Signal to Noise / Range ignored");
    }
    else {
      Serial.print("Unknown reading error code: ");
      Serial.println(status);
    }
  }
  
  Serial.println("--------------------");
  delay(500); // Wait 500ms before the next reading
}"
reddit.com
u/lazyenergetic — 1 month ago

Can I do it DIY or no?

I have experience cutting metal, drilling and painting. beginner in welding. my main problem is welding.

I have the tools for the work and a welding machine, and I use it, but the end result doesn't look that great.

Everything else in this gate is doable.

Do you think if I practice welding, Can I reach a level to be able to make a gate like this? or this is not a DIY thing?

https://preview.redd.it/9lf2kxcpanbh1.png?width=616&format=png&auto=webp&s=b3ee10dddb66b71153b53e2062d16731d14b70ef

reddit.com
u/lazyenergetic — 1 month ago

Half effect sensnor weird behavior

This A3144, when I turn the circuit on the LED is off. Once I get a magnet near it, The LED is on but it stays on even if I remove the magnet.

The only way to turn it off is to get the magnet near it again.

It act as a latching switch. Any clue?

u/lazyenergetic — 2 months ago

This stepper drive says 5 to 24v but no

If I connect anything higher than 5v to the first port at the top PUL+ and DIR+, it doesn't work. 5v or 3.3 works fine.

In all cases, good to know and I can provide the 5v but I wonder if I'm missing something.

Thoughts?

u/lazyenergetic — 2 months ago

Shop that know how to service Mazda

I'm really struggling to find a mechanic shop who knows how to service Mazda. I don't want go to the dealership.

Do you.know anyone here in Houston who know how to service this car?

reddit.com
u/lazyenergetic — 2 months ago

How to find compatibility of cameras and DVR?

Hi,

I bought a Reolink DVR and it has 8 cameras and all good. I still have another 8 ports free.

While shopping online for another Reolink wide angle camera 180 degrees. I searched the user manual but no mention of compatibility with DVR.

Yes, DVR and PoE camera are both Reolink. but does it mean they are compatible by default?

reddit.com
u/lazyenergetic — 2 months ago
▲ 1 r/CAIRO

ايه توقعاتكم لمصر فى كاس العالم؟

هل زى من عشر سنين هنطلع من اول مباره ولا هنكمل شويا؟

reddit.com
u/lazyenergetic — 3 months ago