-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsupport.html
More file actions
117 lines (95 loc) · 4.18 KB
/
support.html
File metadata and controls
117 lines (95 loc) · 4.18 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html lang='en'>
<head>
<title>WeeWX: Support</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="initial-scale=1" />
<link href="favicon.ico" rel="icon" type="image/x-icon" />
<link href="css/weewx.css" rel="stylesheet" type="text/css" />
<script src='js/showcase.js' type="text/javascript"></script>
</head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-D146BWZK54"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-D146BWZK54');
</script>
<body onload="populate_header('support'); populate_screenshots(4,1);">
<!-- Begin Container -->
<div id="container">
<div id="masthead">
<h1><a href='.'>WeeWX</a></h1>
<p>Open source software for your weather station</p>
</div>
<div id="navigation"></div>
<div id='screenshots'></div>
<!-- Begin Content -->
<div id="content">
<h2>Support</h2>
<p>
In the world of open-source hobbyist software, WeeWX is pretty easy
to install and configure. There are not many package dependencies,
the configuration is simple, and it has an extensive User's Guide.
There are thousands of people who have successfully done an
install. However, there is no "point-and-click" interface, so
you have to be prepared to roll up your sleeves and get in
there.
</p>
<p>You should have the following skills:</p>
<ul>
<li>The patience to read and follow the User's Guide;
<li>Willingness and ability to edit a configuration file;</li>
<li>Some familiarity with Linux or other Unix derivatives;</li>
<li>Know how to do simple Unix tasks like changing file
permissions and running commands;</li>
<li>No programming experience is necessary unless you wish
to extend WeeWX. In this case, you should have some
familiarity with Python.</li>
</ul>
<p>If you get stuck, there is a very active User's Group to
help, but please first try to solve the problem yourself.</p>
<h2>Answers to Frequently-Asked Questions (FAQ)</h2>
<p>
Take a look at the answers to frequently-asked questions. There is a
good chance that someone else has encountered the problem you are
facing.
</p>
<p class='url'><a href="https://github.com/weewx/weewx/wiki/WeeWX-Frequently-Asked-Questions">https://github.com/weewx/weewx/wiki/WeeWX-Frequently-Asked-Questions</a></p>
<h2>Wiki</h2>
<p>
The wiki content is contributed by WeeWX
users. It contains suggestions and experiences with different
types of hardware, skins, extensions to WeeWX,
and other useful tips and tricks summarized from the Forums.
</p>
<p class='url'><a href="https://github.com/weewx/weewx/wiki/">https://github.com/weewx/weewx/wiki</a></p>
<h2>Forums</h2>
<p>
There are two forums. <i>weewx-user</i> is for general issues such as
installation, sharing skins and templates, reporting buggy
behavior, suggestions for improvement. <i>weewx-development</i> is for
discussions about developing drivers, extensions, or working on the
core code.
</p>
<p>
Before you post to a forum, please see the <a href="https://github.com/weewx/weewx/wiki/Help!-Posting-to-weewx-user">guidelines for posting</a>. By following these guidelines you will ensure a faster response.
</p>
<p>User Group:</p>
<p class='url'><a href="http://groups.google.com/group/weewx-user">http://groups.google.com/group/weewx-user</a></p>
<p>Development Issues:</p>
<p class='url'><a href="http://groups.google.com/group/weewx-development">http://groups.google.com/group/weewx-development</a></p>
</div>
<!-- End Content -->
<div style='clear: both'> </div>
<div id="footer">
<p>
Copyright © Tom Keffer, Matthew Wall, and Gary Roderick,
all rights reserved
</p>
</div>
</div>
<!-- End Container -->
</body>
</html>