File: example.setTime.py

package info (click to toggle)
netio230a 1.0.1-3
  • links: PTS, VCS
  • area: main
  • in suites: squeeze, wheezy
  • size: 344 kB
  • ctags: 193
  • sloc: python: 1,232; makefile: 3
file content (67 lines) | stat: -rwxr-xr-x 1,866 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#!/usr/bin/env python
# -*- encoding: UTF8 -*-

# Author: Philipp Klaus, philipp.l.klaus AT web.de


#   This file is part of netio230a.
#
#   netio230a is free software: you can redistribute it and/or modify
#   it under the terms of the GNU General Public License as published by
#   the Free Software Foundation, either version 3 of the License, or
#   (at your option) any later version.
#
#   netio230a is distributed in the hope that it will be useful,
#   but WITHOUT ANY WARRANTY; without even the implied warranty of
#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#   GNU General Public License for more details.
#
#   You should have received a copy of the GNU General Public License
#   along with netio230a.  If not, see <http://www.gnu.org/licenses/>.



# example how to use the netio230a class

## import the netio230a class:
import netio230a
## for sys.exit(1)
import sys


from datetime import datetime
### for timedelta()
from datetime import timedelta

## for time.sleep()
import time

host = "192.168.1.2"
pw = "your choosen password"
tcp_port = 23


def main():
    try:
        netio = netio230a.netio230a(host, "admin", pw, True, tcp_port)
    except StandardError:
        print("could not connect")
        sys.exit(1)
    systemTime = netio.getSystemTime()
    netio.setSystemTime(datetime.now()+timedelta(seconds=20))
    time.sleep(0.9) # we have to wait (the new time has to be set first, which takes approx. 0.75 seconds)
    newSystemTime = netio.getSystemTime()
    
    netio = None
    
    # print response
    print "\n--------- successfully queried the Koukaam NETIO 230A ---------"
    print "system time: %s" % (systemTime)
    print "system time after update: %s" % (newSystemTime)
    print "--------------------------------------------------------------- \n"
    

if __name__ == '__main__':
    main()