python_examples: Reformatted, self-checking, executable

* Moved body of each python example to main.  This allows for basic
      load module testing for CI
    * General cleanup of python modules (crlf/tabs/prints/etc)
    * Chmod'ed to 755 to allow running examples without specifying the
      python interpreter
    * Added ctest for loading python2/3 modules
    * Added jniclasscode pragma for java swig interface files.
    * Updated check_examplenames.py module to check all languages vs. a
      cxx example name
    * Added tests for checking python module and test loading
    * Added 'make test' to travis-ci run (run ctests)
    * Print a more meaningful message when not building cxx docs into
      python modules
    * Updated check_clean.py to only check java wrapper files
    * ENABLED ctests for UPM
    * Deleted using_carrays.py python example - this is covered by other
      examples

Signed-off-by: Noel Eck <noel.eck@intel.com>
This commit is contained in:
Noel Eck
2016-09-29 18:24:19 -07:00
parent 62718daf0b
commit 2f78d9f62b
203 changed files with 5890 additions and 5216 deletions

52
examples/python/tm1637.py Normal file → Executable file
View File

@ -23,32 +23,36 @@
import time, signal
import pyupm_tm1637 as tm1637
# Register exit handler for normal Ctrl+C exit
def SIGINTHandler(signum, frame):
raise SystemExit
signal.signal(signal.SIGINT, SIGINTHandler)
def main():
# Register exit handler for normal Ctrl+C exit
def SIGINTHandler(signum, frame):
raise SystemExit
signal.signal(signal.SIGINT, SIGINTHandler)
# Create a display object on pins 0 CLK and 1 DIO
display = tm1637.TM1637(0, 1)
dots = True
# Create a display object on pins 0 CLK and 1 DIO
display = tm1637.TM1637(0, 1)
dots = True
# Get local time
myTime = time.localtime(time.time())
print time.strftime("System time: %H:%M", myTime)
print ("You can adjust your time zone by setting the TZ environment variable.")
# Get local time
myTime = time.localtime(time.time())
print time.strftime("System time: %H:%M", myTime)
print ("You can adjust your time zone by setting the TZ environment variable.")
# Draw a box for 3 seconds using 7-segment encoding
display.write(0x39, 0x09, 0x09, 0x0f)
time.sleep(3)
# Draw a box for 3 seconds using 7-segment encoding
display.write(0x39, 0x09, 0x09, 0x0f)
time.sleep(3)
# Loop indefinitely
while True:
# Update and display time
timeString = time.strftime("%H%M", time.localtime(time.time()))
display.write(timeString)
# Toggle colon
display.setColon(dots)
dots = not dots
# Loop indefinitely
while True:
# Update and display time
timeString = time.strftime("%H%M", time.localtime(time.time()))
display.write(timeString)
# Toggle colon
display.setColon(dots)
dots = not dots
# Sleep for 1 s
time.sleep(1)
# Sleep for 1 s
time.sleep(1)
if __name__ == '__main__':
main()