diff --git a/README.md b/README.md index ce21f36..5c6e77a 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,6 @@ plots for graph modes. * [Output](#output) * [Dependencies](#Dependencies) * [Features](#features) - * ## Installation @@ -62,7 +61,7 @@ by typing rpi_tempmon.py or python3 rpi_tempmon.py: rpi_tempmon.py -[options][arguments] -Options list *(Note: Options are standalone, not designed to be combined)*: +Options list *(Note: Options are stand alone, not designed to be combined)*: | Option | Description | | --------------- | --------------- | @@ -106,7 +105,7 @@ CPU_UPPERLIMIT is the temperature limit of CPU in Centigrade, should be a positi If alarm mode is on when CPU temperature goes above this limit, the alarm function will activate. LED_MODE which should be set to one or zero(one: LED mode on, zero: off) if on -an GPIO pin will swicth on during an alarm state in continuous and normal mode. +an GPIO pin will switch on during an alarm state in continuous and normal mode. The RPI GPIO pin as defined by GPIO_LED number. You can connect an LED or another electronic component to this pin. @@ -134,7 +133,6 @@ Screenshots, example config/log files are also available in documentation. ## Output - The output folder for log files is currently fixed at: ```sh @@ -192,7 +190,6 @@ Should be installed by default on most OS, like Raspibian. ## Features - For a raspberry pi the official operating temperature limit is 85°C, and as a result the Raspberry Pi should start to thermally throttle performance around 82°C. The GPU and CPU are closely correlated @@ -234,7 +231,6 @@ and Data in red is displayed in screen for an Alarm state, if setup in config f **3. & 4. Log modes** - In logfile mode the data is appended into a file log.txt at output folder. With optional mail setup if alarm mode setup. For mode 3 an email is sent using mode 5 function, diff --git a/setup.py b/setup.py index d694d98..ae8029e 100644 --- a/setup.py +++ b/setup.py @@ -2,21 +2,20 @@ setup( name="rpi_tempmon.py", - version="2.3", + version="2.4", author="gavin lyons", author_email="glyons66@hotmail.com", description="Monitor RAM,CPU and GPU data of Raspberry Pi", license=" GPL", keywords="PI Raspberry CPU ARM GPU temperature temp rpi monitor display gavin lyons", url="https://github.com/gavinlyonsrepo/raspeberrypi_tempmon", - download_url='https://github.com/gavinlyonsrepo/raspeberrypi_tempmon/archive/2.3.tar.gz', + download_url='https://github.com/gavinlyonsrepo/raspeberrypi_tempmon/archive/2.4.tar.gz', packages=['rpiTempSrc','rpiTempMod',], install_requires= ['matplotlib','pip','psutil','RPi.GPIO'], setup_requires = ['pip'], scripts=['rpiTempSrc/rpi_tempmon.py'], classifiers=[ "Topic :: Utilities", - "Programming Language :: Python :: 3.11.2", "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", ], )