Blame view

220222_final/EP/final_EP.py 423 Bytes
35833671e   Jean-Michel Friedt   version finale st...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  #!/usr/bin/env python3
  """
  Script to be executed.
  
  Created on Wed oct  27  2021
  
  @author: ALKADRI Mohammad
  """
  
  #import go_EP
  import test_10MHz
  import numpy as np
  import ad
  #TTN(Start)
  #Tep = go_EP.xe()
  #print("Tep = ", Tep)
  #Tgw = TTN(Times)
  #x = (Tep-Tgw)*51/36
  x=float(np.fromfile('freq.txt', dtype=int))
  test_10MHz.asservissement(x)
  #y=int(np.fromfile('freq_AD.txt', dtype=int))
  #ad.asservissement(y)
  print("AD Done!")