Skip to content

integration_time plus **1** second (fixed) blocked reliable measures #10

Description

@elemhsb

time.sleep(0.120*self.integration_time+1) # not sure if we need it "// Wait x ms for ADC to complete"

Typo here: () missing
time.sleep(0.120self.integration_time+1) # takes minimal 1 second + 0.120self.integration_time

You want:
time.sleep(0.120*(self.integration_time+1))

Fastest working is:
time.sleep(0.105+0.100*self.integration)

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions