Skip to content
Snippets Groups Projects

Modified the scripts to run on Raspberry Pi.

4 files
+ 71
7
Compare changes
  • Side-by-side
  • Inline

Files

+ 17
1
'''
'''
 
Copyright 2021 Stichting Nederlandse Wetenschappelijk Onderzoek Instituten,
 
ASTRON Netherlands Institute for Radio Astronomy
 
Licensed under the Apache License, Version 2.0 (the "License");
 
you may not use this file except in compliance with the License.
 
You may obtain a copy of the License at
 
http://www.apache.org/licenses/LICENSE-2.0
 
Unless required by applicable law or agreed to in writing, software
 
distributed under the License is distributed on an "AS IS" BASIS,
 
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
See the License for the specific language governing permissions and
 
limitations under the License.
 
Set ADC
Set ADC
'''
'''
import sys
import sys
import time
import time
sys.path.insert(0,'.')
sys.path.insert(0,'.')
from I2C_serial import *
import os
 
if os.name =="posix":
 
from I2C_serial_pi import *
 
else:
 
from I2C_serial import *
sleep_time=0.05
sleep_time=0.05
CHECK_I2C_DEVICES = False
CHECK_I2C_DEVICES = False
Loading