Category Archives: tECHNOLOGY

Steve’s floor

1 gal. Etch and Clean for Concrete in 4:1 Concentrated

 

 

 

 

80×80 is 6400
225 sq ft  per gallon 28 gallons
6 pails, 5 gallons each

Single coat suggested, but video shows 2 coats

does not mention acid prep

This guy uses a sprayer for large area

 

Common sense fellow

 

 

 

Lights at ceiba

 

Round 480 LED

33,600 Lumens, 240W, 5000K, UFO LED High Bay Sensor Ready Light Fixture, 1000W MH Equal, Black Finish, 277-480V, PLT-12692 | 1000Bulbs.com
https://www.1000bulbs.com/product/226812/PLT-12692.html

 

 

 

 

online white board

https://lucid.app/lucidspark/1fd14493-e650-4a39-8b33-22b7fbdab13c/edit?invitationId=inv_ee803a74-085b-4257-9c33-e4c5fa871c28

ZITEBOARD src=https://lucid.app/lucidspark/1fd14493-e650-4a39-8b33-22b7fbdab13c/edit?invitationId=inv_ee803a74-085b-4257-9c33-e4c5fa871c28

src=https://lucid.app/lucidspark/1fd14493-e650-4a39-8b33-22b7fbdab13c/edit?invitationId=inv_ee803a74-085b-4257-9c33-e4c5fa871c28

https://lucid.app/lucidspark/1fd14493-e650-4a39-8b33-22b7fbdab13c/edit?invitationId=inv_ee803a74-085b-4257-9c33-e4c5fa871c28&page=0_0#

 

example of a board

online white board

https://lucid.app/lucidspark/1fd14493-e650-4a39-8b33-22b7fbdab13c/edit?invitationId=inv_ee803a74-085b-4257-9c33-e4c5fa871c28

 

another one for wordpress

Ziteboard Online Whiteboard

 

 

 

FBC Justin – AC Units

Cost breakdown by unit  This is the 4 pager that gathers cost history on each unit.

Fall 2023 work report

fbcj work report cut down  .doc

2023 FBCJustin fall inspection  pdf

Troubleshooting:

Negitive/Positive pressure tutorial

BE_AppGuide_EconomizerPressurization_AHU
Link to current manuals from Lennox
Here is the Lennox Manual  for the LGA102HS1Y units.
Here is the manual for the M1-6 boards rev A,   IMC V6
Here is the Service Bulletin for a whole building controller IMC

controller board
Manual for the Carrier units.
This older Carrier manual has a troubleshooting section p 54 to 59

 

THIS  IS NOT USABLE WITH M1-6 LonTalk Lennox units this is the board that shows error codes, Installed in 23, 24. ours  are M1-6 Rev A boards

IMC BacNet module

Indoor Thermostats
reset video https://youtu.be/dK6vpojwvJg

Sensi manual link
Sensi Link to Step by step wire configuration
sensi-wi-fi-thermostat-installation-guide-10-17-2-en-us-4278840
Spreadsheet with wire colors
Removed Honeywell
Installed SENSI model ST55, Snensi APP for thermostats: u media@fbcjustin.org p Media2737
Wiring notes for wall mounted thermostats

TDI Seasonal description:

Three HVAC contractors VENDOR:
HVAC Technical                  Junior Morales   817-428-0124
Proposed  Seasonal:  BLANK MAINTENANCE
Morales quote:  First Baptist.
Lead time on the equipment is 17-18 weeks , Bryant equipment is not available!!
18 weeks quote from May 1 .  Current deliveries are not being delivered on time.

 

Vendor:
TDIndustries, Denton,
Andy Heramb acct rep 817 304 6009
Tdi call center. Call tdi 800 864 7717
John with TDIndustries  scheduler 18172407599
Technician Alex 817 304 6009,

 

Heat exchanger re-core  Khous motor sports 616 885 3049

Seasonal inspection outcomes

June2022 AC Discrepacies

Work Order 54418 Summary 12-1-2022

(BCI Mechanical Kyle Minter  940-565-1010 , MSG service)

(Grant Air Conditioning      Dale Kinson   817-332-7979)

Water on the roof, stop and waste valve.

 

 

 

This from Just Answer:

Customer
Alright, let’s see what happens. The batteries are out, so it’s still on the wall.
img

logoHVAC Technician: André R.

That’s fine. Now press and hold the menu and up arrow together for ten seconds.

 

 

 

 

Christian ski boat

 

 

 

Safety: FAK, Vests, paddle, flashlight,

Trailer:  light check, tire press, ball secure,

Boat: plug, spare battery, jumper cables,  light check, tool box, oars,  skis, rope,  spare prop key, flashlight.

Boat motor:  oil level, 1 qt oil spare,   fuel,  fan running, bilge pump makes noise,

 

 

 

 

 

 

 

 

Heffley house air conditioning

 

 

Manual for the outside unit.

ToddAC.

Large difference in the shape of the curves after cleaning the filters.  Right side of the screen is running filters removed.

 

http://192.168.2.115:8888/statistics.html?activePage=2

July 22 2023, typical 103 degree day, no filters installed.

 

Filters

29×10.   19.5×19.5

Repairclinic.com for capacitor sizing

Replace capacitor

 

Turbo 200 universal cap

 

How many tons is my Payne air conditioner or heat pump?
https://www.howtolookatahouse.com/Blog/Entries/2019/4/how-many-tons-is-my-payne-air-conditioner-or-heat-pump.html

 

Mother board

 

 

 

 

 

Read a 90 ohm propane tank level meter and turn on an LED

This code uses a Atiny85 under Arduino gui:

 

#include <avr/sleep.h>

const int inputPin = 2; // replace with the input pin connected to the voltage divider
const int outputPin = 3; // replace with the output pin connected to the load

void setup() {
pinMode(inputPin, INPUT);
pinMode(outputPin, OUTPUT);
digitalWrite(outputPin, HIGH); // ensure the load is not grounded initially
}

void loop() {
// Measure voltage on input pin
float voltage = analogRead(inputPin) * 0.0049; // convert from ADC value to voltage

// If voltage is below 2V, ground the output pin and go into deep sleep
if (voltage < 2.0) {
digitalWrite(outputPin, LOW);
delay(100); // ensure the load is fully grounded before sleeping
set_sleep_mode(SLEEP_MODE_PWR_DOWN);
sleep_enable();
sleep_mode();
sleep_disable();
}

// Sleep for 1 day
delay(86400000); // 24 * 60 * 60 * 1000 = 1 day
}

this is ifor for the ATINY 85 programming