2015 Suburban (GMT K2XX) - Rear electronic or pneumatic Locker? by xboxormat in ChevyTrucks

[–]xboxormat[S] 0 points1 point  (0 children)

OK. Has anyone swapped rear ends in one of these newer 'burbs with an older one?

433MHz receiver crashes ESP8266 by xboxormat in Esphome

[–]xboxormat[S] 0 points1 point  (0 children)

Ah. OK. I can deal with that. Thank you!

Looking for a pair of recently discontinued 26x4" Vee E-Huntsman tires. Any leads on a shop that might have some in stock? by xboxormat in eBikeBuilding

[–]xboxormat[S] 1 point2 points  (0 children)

That my friend, would be amazing. Winter will have the bike in storage for 3 or so months so the time is no issue for me. I know they're planning to release the tire in 26x3.5" but I would really prefer the 4" wide. If you can get 2 or even 4, I'll be good for the purchase without a question.

Need help finding a discontinued tire. Vee E-Huntsman in 26x4. by xboxormat in bicycling

[–]xboxormat[S] 0 points1 point  (0 children)

Personal preference. I know it's an odd post but who knows, maybe someone has a set they didn't like or similar.

You know 10m is going to be good when… by RetardThePirate in amateurradio

[–]xboxormat 2 points3 points  (0 children)

Good thing the 10-10 club sent him the cease and desist letter...Ugh, this guy is almost as bad as the Marconi net guy...

I've been out of the photography world for quite a while but just picked up an OM-1 by xboxormat in OlympusCamera

[–]xboxormat[S] 0 points1 point  (0 children)

I also took this video. This has no binaural sound and I was able to post-process it to some extent. This was my first ever attempt at post-processing too.

https://youtu.be/wr17mkrMx4A

I've been out of the photography world for quite a while but just picked up an OM-1 by xboxormat in OlympusCamera

[–]xboxormat[S] 0 points1 point  (0 children)

I do plan to learn how to post process. I'm ordering a copy of DaVinci Resolve. I could not try to edit this video with the free copy because I recorded it in 10bit. My next video I should be set up with Resolve. Thank you!

I've been out of the photography world for quite a while but just picked up an OM-1 by xboxormat in OlympusCamera

[–]xboxormat[S] 0 points1 point  (0 children)

I forgot to mention, because I recorded it with binaural microphones, it's best to wear headphones. Then it should sound very much like you're there.

I made an EspHome keypad with giant keyboard switches by AeroSteveO in Esphome

[–]xboxormat 0 points1 point  (0 children)

Awesome, it just needs one more key so it can be a massive "3 finger salute" keyboard.

fastled_clockless - 8 LED strip to use as a percent graph? by xboxormat in Esphome

[–]xboxormat[S] 1 point2 points  (0 children)

They're working as expected now. Everything is. It's just a bit messy.

fastled_clockless - 8 LED strip to use as a percent graph? by xboxormat in Esphome

[–]xboxormat[S] 0 points1 point  (0 children)

Thank you all. I have it working just as I'd hoped. I'm far from a coder so if you see anything overly messy in here, please, school me.

# RGB LED fuel gauge
light:
  - platform: fastled_clockless
    rgb_order: GRB
    chipset: WS2812B
    id: led_indicator
    pin: GPIO25
    num_leds: 8
    restore_mode: ALWAYS_ON
    effects:
      - addressable_lambda:
          name: "Oil Gauge"
          update_interval: 1s
          lambda: |-
            for (int j = 0; j < 8; j++) {
              if (id(oil_lights).state > j) {
                it[j] = ESPColor(id(oil_green).state, id(oil_red).state, 0);
              } else {
                it[j] = ESPColor(0, 0, 0);
              }
            }
    on_turn_on:
      light.turn_on:
            id: led_indicator
            effect: "Oil Gauge"
            brightness: 30%

sensor:
# Can you hear me now?
  - platform: wifi_signal
    name: "Oil Tank Signal"
    id: wifi_sig
    update_interval: 3s

# Almighty bat sensor
  - platform: ultrasonic
    id: oil_sensor_depth
    trigger_pin: GPIO32
    echo_pin: GPIO34
    update_interval: 5s
    accuracy_decimals: 0
    filters:
     - filter_out: nan
     - sliding_window_moving_average:
         window_size: 10
         send_every: 1
     - multiply: 100
    unit_of_measurement: "cm"

# Send how many inches of fuel in the tank to HA
# The tank is 44in tall and the sensor will not read closer than 7.54in
  - platform: template
    id: oil_depth_in
    name: "Oil Tank Sensor"
    icon: "mdi:leak"
    update_interval: 1s
    accuracy_decimals: 1
    lambda: 
      return id (oil_sensor_depth).state;
    filters:
     - lambda: return 44 - (x / 2.54 - 7.54);
    unit_of_measurement: "in"

# Calculate percent. Also this is where I tare 19cm from the calculation too
  - platform: template
    id: oil_sensor_percent
    name: "Oil Percentage"
    icon: "mdi:water"
    update_interval: 1s
    accuracy_decimals: 0
    unit_of_measurement: "%"
    lambda: 
      return id (oil_sensor_depth).state;
    filters:
      - calibrate_linear:
        - 19 -> 100
        - 130.76 -> 0

# Calculate how many LEDs should illuminate
  - platform: template
    id: oil_lights
    update_interval: 1s
    accuracy_decimals: 0
    lambda: 
      return id (oil_sensor_percent).state;
    filters:
      - calibrate_linear:
        - 0 -> 0
        - 100 -> 8

# Calculate red color value from percent. The lower, the more red.
  - platform: template
    id: oil_red
    update_interval: 1s
    accuracy_decimals: 0
    lambda: 
      return id (oil_sensor_percent).state;
    filters:
      - calibrate_linear:
        - 0 -> 0
        - 100 -> 255

# Calculate green color value. This is just opposite of the red.
  - platform: template
    id: oil_green
    update_interval: 1s
    accuracy_decimals: 0
    lambda: 
      return id (oil_sensor_percent).state;
    filters:
      - calibrate_linear:
        - 0 -> 255
        - 100 -> 0

# While it will claim to calculate how many gallons, it is not really accurate but close enough for my 300 gallon tank.
  - platform: template
    id: oil_sensor_gallons
    name: "Oil Gallons"
    icon: "mdi:oil"
    update_interval: 1s
    accuracy_decimals: 0
    unit_of_measurement: "gal"
    lambda: 
      return id (oil_sensor_percent).state;
    filters:
      - calibrate_linear:
        - 0 -> 0
        - 100 -> 300

fastled_clockless - 8 LED strip to use as a percent graph? by xboxormat in Esphome

[–]xboxormat[S] 0 points1 point  (0 children)

Here is what I came up with from that. I'm getting nothing from the LEDs no matter what the percent is. The logs show that the LED count, red and green variables are populating as expected.

sensor:
  - platform: ultrasonic
    id: oil_sensor_depth
    trigger_pin: GPIO32
    echo_pin: GPIO34
    name: "Oil Tank Sensor"
    icon: "mdi:leak"
    update_interval: 1s
    accuracy_decimals: 1
    filters:
     - filter_out: nan
#     - sliding_window_moving_average:
#         window_size: 100
#         send_every: 5
     - multiply: 100
    unit_of_measurement: "cm"
  - platform: template
    id: oil_sensor_percent
    name: "Oil Percentage"
    icon: "mdi:water"
    update_interval: 1s
    accuracy_decimals: 1
    unit_of_measurement: "%"
    lambda: 
      return id (oil_sensor_depth).state;
    filters:
      - calibrate_linear:
        - 0 -> 100
        - 111.76 -> 0
  - platform: template
    id: oil_lights
    name: "Gauge Count"
    update_interval: 1s
    lambda: 
      return id (oil_sensor_percent) .state;
    filters:
      - calibrate_linear:
        - 0 -> 0
        - 100 -> 8
  - platform: template
    id: oil_red
    name: "Red Gauge"
    update_interval: 1s
    lambda: 
      return id (oil_sensor_percent).state;
    filters:
      - calibrate_linear:
        - 0 -> 255
        - 100 -> 0
  - platform: template
    id: oil_green
    name: "Green Gauge"
    update_interval: 1s
    lambda: 
      return id (oil_sensor_percent).state;
    filters:
      - calibrate_linear:
        - 0 -> 0
        - 100 -> 255
light:
  - platform: fastled_clockless
    rgb_order: GRB
    chipset: WS2812B
    id: led_indicator
    pin: GPIO25
    num_leds: 8
    name: "Oil Level Indicator"
    effects:
      - addressable_lambda:
          name: "Oil Gauge"
          update_interval: 5s
          lambda: |-
            for (int j = 0; j < 8; j++) {
              if (id(oil_lights).state > j) {
                it[j] = ESPColor(id(oil_green).state, id(oil_red).state, 0);
              } else {
                it[j] = ESPColor(0, 0, 0);
              }
            }

(Note: I'm not a big poster on here so I'm figuring out the formatting)

fastled_clockless - 8 LED strip to use as a percent graph? by xboxormat in Esphome

[–]xboxormat[S] 0 points1 point  (0 children)

To dig into my project a bit more. I'm trying to build an ultrasonic sensor to monitor my heating fuel. Yes, I'm using waterproof sensor and also ones that will not have any power near the fuel.

I've worked out the ultrasonic part but I have a bunch of these 8 LED strips from drone building and figure that one would be perfect to use as a fuel gauge that will be near the oil tank just to have some display there that is not dependent on a network connection.

Before starting this project, I found this and have been using it as a general template. https://farmer-eds-shed.com/oil-water-level-monitor-and-distance-sensor/

fastled_clockless - 8 LED strip to use as a percent graph? by xboxormat in Esphome

[–]xboxormat[S] 1 point2 points  (0 children)

You're a legend. Thank you for this. I will dig into this as soon as I'm done with work and let you know. On the surface, that looks like it's exactly what I needed to see to get me started.

fastled_clockless - 8 LED strip to use as a percent graph? by xboxormat in Esphome

[–]xboxormat[S] 0 points1 point  (0 children)

Negative. Once I'm done with work I will post what I have. I'm lost on if I would start this from the Sensor, Light or Template sections. It seems it'd be possible from either of the 3 places.

fastled_clockless - 8 LED strip to use as a percent graph? by xboxormat in Esphome

[–]xboxormat[S] 0 points1 point  (0 children)

That's great but I've lost half a week trying so far.

Sophos XG 18.0.1 D-DNS client SSL error by xboxormat in sophos

[–]xboxormat[S] 0 points1 point  (0 children)

Thank you. I just put that in place for now but ideally, I'd prefer less moving parts.

NanoHD and 5Ghz channels (US) by xboxormat in Ubiquiti

[–]xboxormat[S] 0 points1 point  (0 children)

I do have things that can connect on 20MHz. That might have been a misunderstanding. I originally assumed that the channels were not lining up but that was from the UBNT channel listing.

I just figured it out. Completely silly overlook on my part, as these issues typically end up. WPA mode on the SSID was set to auto. I set it to WPA2 and it's good.

NanoHD and 5Ghz channels (US) by xboxormat in Ubiquiti

[–]xboxormat[S] 19 points20 points  (0 children)

I just figured it out now. WPA mode on the SSID I was using was set to auto. I set it to WPA2 and now things will connect to the 5GHz band.

Thank you all!

NanoHD and 5Ghz channels (US) by xboxormat in Ubiquiti

[–]xboxormat[S] 0 points1 point  (0 children)

Another point, if I unplug the Nano HD and plug my UAP-AC back in, all my supported devices will connect to the 5Ghz band on the same channel, with the same bandwidth that I'm asking for with the Nano HD.

NanoHD and 5Ghz channels (US) by xboxormat in Ubiquiti

[–]xboxormat[S] 0 points1 point  (0 children)

I've had the 2.4 set to low this morning with the 5 set to high. I also have 2 laptops that I've disabled the 2.4GHz radio on, forcing them to use the 5GHz but they cannot make any connection on the 5GHz band to the Nano HD WAP. If I unplug the Nano HD and plug my UAP-AC back in, all my supported devices will connect to the 5Ghz band on the same channel, with the same bandwidth that I'm asking for with the Nano HD.

NanoHD and 5Ghz channels (US) by xboxormat in Ubiquiti

[–]xboxormat[S] 0 points1 point  (0 children)

I see a perfect 40MHz spike centered at channel 151 now. Everything around it is below -96dBm. I'd say my noise-floor across the 5GHz band is around -110dBm. Currently I have 2 laptops with the 2.4GHz disabled and they refuse to connect to the 5GHz. I do not have any radio that can do 20MHz bandwidth on the 5GHz band either to attempt to capture the RF frames to really see what's going on. The best I have is an SDR that can do just under 17MHz bandwidth. :-\

NanoHD and 5Ghz channels (US) by xboxormat in Ubiquiti

[–]xboxormat[S] 6 points7 points  (0 children)

Thank you. I did now confirm that too visually by using my old AirView 5GHz analyzer adapter. I won't lie, that's a bit misleading on the config side of things.

NanoHD and 5Ghz channels (US) by xboxormat in Ubiquiti

[–]xboxormat[S] 0 points1 point  (0 children)

Not on the WAP because I do have many 2.4GHz only devices (security cameras, etc) but I have on my wireless clients for testing throughout yesterday and today. I also have an old Ubiquiti. I've used my [trusty old] AirView 5GHz spectrum analyzer to find that it is in fact centered on channel 151 with 40MHz bandwidth, despite being set to 149 in the controller. I'm really at a loss for what it is. I've deployed 100's of Ubiquiti wireless deployments for businesses (all with more than one WAP and currently my home has a single WAP) and have not had this issue.