Skip to content

Commit

Permalink
debug data
Browse files Browse the repository at this point in the history
  • Loading branch information
CamDavidsonPilon committed May 1, 2024
1 parent f6cf12f commit f0a3594
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pioreactor/actions/self_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ def test_all_positive_correlations_between_pds_and_leds(
measured_correlation = round(correlation(INTENSITIES, varying_intensity_results[pd_channel]), 2)
results[(led_channel, pd_channel)] = measured_correlation
logger.debug(f"Corr({led_channel}, {pd_channel}) = {measured_correlation}")
logger.debug(zip(INTENSITIES, varying_intensity_results[pd_channel]))
logger.debug(list(zip(INTENSITIES, varying_intensity_results[pd_channel])))

# set back to 0
led_intensity(
Expand Down

0 comments on commit f0a3594

Please sign in to comment.