It looks like I had conflicting homing instructions between config.g and homez.g. Once I got the S2 parameter every that it needed to be, it seems to be working. I think I still had the z axis set to use an endstop switch in the config file. Here are my config and homez files now.
config.g
; Configuration file for Duet WiFi (firmware version 1.17 to 1.19)
; executed by the firmware on start-up
;
; generated by RepRapFirmware Configuration Tool on Mon Jul 09 2018 14:02:55 GMT-0600 (Mountain Daylight Time)
; General preferences
G90 ; Send absolute coordinates...
M83 ; ...but relative extruder moves
M555 P0 ; Set firmware compatibility to look like native output
; Network
M550 PFT5 ; Set machine name
M586 P0 S1 ; Enable HTTP
M586 P1 S0 ; Disable FTP
M586 P2 S0 ; Disable Telnet
; Drives
M569 P0 S1 ; Drive 0 goes forwards
M569 P1 S0 ; Drive 1 goes forwards
M569 P2 S0 ; Drive 2 goes backwards
M569 P3 S1 ; Drive 3 goes forwards
M350 X256 Y256 Z256 E16 I1 ; Configure microstepping without interpolation
M92 X1280 Y1280 Z6400 E416 ; Set steps per mm
M566 X900 Y900 Z12 E120 ; Set maximum instantaneous speed changes (mm/min)
M203 X6000 Y6000 Z1500 E1200 ; Set maximum speeds (mm/min)
M201 X500 Y500 Z250 E250 ; Set accelerations (mm/s^2)
M906 X1000 Y1000 Z1200 E1000 I30 ; Set motor currents (mA) and motor idle factor in per cent
M84 S30 ; Set idle timeout
; Axis Limits
M208 X0 Y0 Z0 S1 ; Set axis minima
M208 X300 Y300 Z400 S0 ; Set axis maxima
; Endstops
M574 X2 Y2 S0 ; Set active low endstops
;M574 Z1 S2 ; Set active high endstops
; Z-Probe
M307 H3 A-1 C-1 D-1 ; disable heater 3, BLTouch - servo pulse on heater 3 pin (expansion
M558 P9 F100 H5 R0.2 T6000 A5 B1 ; Type 9 for BLTouch (Normally closed switch on Z-probe inputs)
G31 X20 Y20 Z2 P25 ; Z=trigger height, P=trigger value, not needed for contact probe, X/Y distance from nozzle
M558 P9 H5 R0.2 F120 T6000 ; Disable Z probe but set dive height, probe speed and travel speed
M557 X15:285 Y15:285 S20 ; Define mesh grid
; Heaters
M305 P0 T100000 B4138 C0 R4700 ; Set thermistor + ADC parameters for heater 0
M143 H0 S220 ; Set temperature limit for heater 0 to 220C
M305 P1 X200 ; Set thermistor + ADC parameters for heater 1
M143 H1 S350 ; Set temperature limit for heater 1 to 350C
; Fans
M106 P0 S0.3 I0 F500 H-1 ; Set fan 0 value, PWM signal inversion and frequency. Thermostatic control is turned off
M106 P1 S1 I0 F500 H1 T45 ; Set fan 1 value, PWM signal inversion and frequency. Thermostatic control is turned on
M106 P2 S1 I0 F500 H1 T45 ; Set fan 2 value, PWM signal inversion and frequency. Thermostatic control is turned on
; Tools
M563 P0 D0 H1 ; Define tool 0
G10 P0 X0 Y0 Z0 ; Set tool 0 axis offsets
G10 P0 R0 S0 ; Set initial tool 0 active and standby temperatures to 0C
; Custom settings are not configured
G29 S1 ;Load stored bed height map
HomeZ
; homez.g
; called to home the Z axis
G1 Z10 F200 S2 ; Lower bed.
G4 P500 ; Dwell for 500ms - to ensure bed is down
M913 Z70 ; reduce stepper current to xx%
G90 ; Absolute positioning
G1 X140 Y140 F6000 ; Go to first bed probe point and home the Z axis
M401 ; Lower Z probe (BLTouch)
G30 ; Calibrate Z-axis
M402 ; Retract Probe
M913 Z100 ; set stepper current to normal
G1 Z10 F2000 ; bed to 10mm
If these can be tweaked or improved, Im all ears.
Also, thanks for the help thus far.