From 388738b78b8e1a76c1170ab19d3409a759fd1634 Mon Sep 17 00:00:00 2001 From: Mike Black W9MDB Date: Sun, 23 Jan 2022 08:56:09 -0600 Subject: [PATCH] Add set_vfo_opt to py3test.py --- bindings/py3test.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bindings/py3test.py b/bindings/py3test.py index 3a537a24f..5a918f68d 100755 --- a/bindings/py3test.py +++ b/bindings/py3test.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- import sys # Change this path to match your "make install" path -sys.path.append('/usr/local/lib/python3.9/site-packages') +sys.path.append('/usr/lib/python3.9/site-packages') ## Uncomment to run this script from an in-tree build (or adjust to the ## build directory) without installing the bindings. @@ -121,6 +121,7 @@ def StartUp(): print('Latitude:\t%4.4f, %4d° %2d\' %2d" %1s\trecoded: %9.4f' \ % (lat1, deg2, mins2, sec2, ('S' if sw2 else 'N'), lat3)) + my_rig.set_vfo_opt(0); if __name__ == '__main__': StartUp()