Skip to content

Commit ebcc828

Browse files
Update Documents
1 parent c1aca64 commit ebcc828

File tree

2 files changed

+4
-9
lines changed

2 files changed

+4
-9
lines changed

README.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ plots for graph modes.
3030
* [Output](#output)
3131
* [Dependencies](#Dependencies)
3232
* [Features](#features)
33-
*
3433

3534

3635
## Installation
@@ -62,7 +61,7 @@ by typing rpi_tempmon.py or python3 rpi_tempmon.py:
6261

6362
rpi_tempmon.py -[options][arguments]
6463

65-
Options list *(Note: Options are standalone, not designed to be combined)*:
64+
Options list *(Note: Options are stand alone, not designed to be combined)*:
6665

6766
| Option | Description |
6867
| --------------- | --------------- |
@@ -106,7 +105,7 @@ CPU_UPPERLIMIT is the temperature limit of CPU in Centigrade, should be a positi
106105
If alarm mode is on when CPU temperature goes above this limit, the alarm function will activate.
107106

108107
LED_MODE which should be set to one or zero(one: LED mode on, zero: off) if on
109-
an GPIO pin will swicth on during an alarm state in continuous and normal mode.
108+
an GPIO pin will switch on during an alarm state in continuous and normal mode.
110109
The RPI GPIO pin as defined by GPIO_LED number. You can connect an LED or another
111110
electronic component to this pin.
112111

@@ -134,7 +133,6 @@ Screenshots, example config/log files are also available in documentation.
134133

135134
## Output
136135

137-
138136
The output folder for log files is currently fixed at:
139137

140138
```sh
@@ -192,7 +190,6 @@ Should be installed by default on most OS, like Raspibian.
192190

193191
## Features
194192

195-
196193
For a raspberry pi the official operating temperature limit is 85°C,
197194
and as a result the Raspberry Pi should start to thermally throttle
198195
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
234231

235232
**3. & 4. Log modes**
236233

237-
238234
In logfile mode the data is appended into a file log.txt at output folder.
239235
With optional mail setup if alarm mode setup. For mode 3 an email
240236
is sent using mode 5 function,

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,20 @@
22

33
setup(
44
name="rpi_tempmon.py",
5-
version="2.3",
5+
version="2.4",
66
author="gavin lyons",
77
author_email="[email protected]",
88
description="Monitor RAM,CPU and GPU data of Raspberry Pi",
99
license=" GPL",
1010
keywords="PI Raspberry CPU ARM GPU temperature temp rpi monitor display gavin lyons",
1111
url="https://github.com/gavinlyonsrepo/raspeberrypi_tempmon",
12-
download_url='https://github.com/gavinlyonsrepo/raspeberrypi_tempmon/archive/2.3.tar.gz',
12+
download_url='https://github.com/gavinlyonsrepo/raspeberrypi_tempmon/archive/2.4.tar.gz',
1313
packages=['rpiTempSrc','rpiTempMod',],
1414
install_requires= ['matplotlib','pip','psutil','RPi.GPIO'],
1515
setup_requires = ['pip'],
1616
scripts=['rpiTempSrc/rpi_tempmon.py'],
1717
classifiers=[
1818
"Topic :: Utilities",
19-
"Programming Language :: Python :: 3.11.2",
2019
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
2120
],
2221
)

0 commit comments

Comments
 (0)