""" Author: Tobias Müller Date: 30.06.2023 Version: 1.0 Main File to run on the pico. """ ############################## Modules ############################## import uos from machine import Pin, ADC, SPI from libs.DigitalStethoskop import DigitalStethoskop as DS from libs.SDCard import SDCard ############################## Global Variables ############################## # breathing signals: <200 Hz to <4000 Hz # Sampling rate: 2^x --> 256, 522, 1024, 2048, 4096, 8192 # max 10 000Hz SAMPLE_RATE = 8000 # in Hz Steth = DS(SAMPLE_RATE) ############################## Main ############################## def main(): Steth.sample_rate = 8000 Steth.record_data(1) Steth.save(f"V3_{Steth.sample_rate}fs_aus.txt") ############################## Functions ############################## ############################## Run ############################## if __name__ == "__main__": main()