biscuit-monitor 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.md +21 -3
- data/biscuit-monitor.gemspec +1 -1
- data/lib/biscuit-monitor/version.rb +1 -1
- metadata +2 -2
data/README.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
# Biscuit::Monitor
|
2
2
|
|
3
|
-
|
3
|
+
Command-line utility that monitors your CLEAR Spot 4G+ Personal Hotspot and prints out the connection strength.
|
4
|
+
|
5
|
+
Tested on Ruby 1.9.3-p194 running on OS X Lion.
|
6
|
+
|
7
|
+
My device is running the official CLEAR Spot 4G+ Personal Hotspot software.
|
8
|
+
|
9
|
+
Device Manufacturer : INFOMARK
|
10
|
+
Software Version : 2.0.0.0 [R2207 (Dec 7 2010 14:13:20)]
|
11
|
+
Firmware Version : 1.9.9.4
|
12
|
+
Hardware Version : R05
|
13
|
+
WiMAX API Version : 1.2
|
4
14
|
|
5
15
|
## Installation
|
6
16
|
|
@@ -18,7 +28,9 @@ Or install it yourself as:
|
|
18
28
|
|
19
29
|
## Usage
|
20
30
|
|
21
|
-
|
31
|
+
biscuit-monitor -d 192.168.1.1
|
32
|
+
|
33
|
+
Execute the gem passing in the IP address of your CLEAR Spot 4G+ Personal Hotspot modem.
|
22
34
|
|
23
35
|
## Contributing
|
24
36
|
|
@@ -52,6 +64,12 @@ The higher the number the better signal quality you are receiving. You need at m
|
|
52
64
|
|
53
65
|
RSSI
|
54
66
|
|
55
|
-
RSSI stands for Received signal strength indicator RSSI is a measurement of the power present in a received radio signal. We use RSSI score to tell us the strength of signal your CLEAR Spot is receiving.
|
67
|
+
RSSI stands for Received signal strength indicator RSSI is a measurement of the power present in a received radio signal. We use RSSI score to tell us the strength of signal your CLEAR Spot 4G+ Personal Hotspot is receiving.
|
56
68
|
|
57
69
|
A RSSI score of -100dBm reflects poor signal strength, a score of -50dBm is an excellent RSSI score and reflects a strong signal.
|
70
|
+
|
71
|
+
## Disclaimer
|
72
|
+
|
73
|
+
I created this utility for my own use but if you find it useful then that's great! I am NOT in any way affiliated or a representative for CLEAR. I just like the device and was tired of having to refresh the admin page in the browser.
|
74
|
+
|
75
|
+
Use this at your own risk. I take no responsibility for burning up your device or killing your battery or anything else for that matter.
|
data/biscuit-monitor.gemspec
CHANGED
@@ -4,7 +4,7 @@ require File.expand_path('../lib/biscuit-monitor/version', __FILE__)
|
|
4
4
|
Gem::Specification.new do |gem|
|
5
5
|
gem.authors = ["Michael D. Hall"]
|
6
6
|
gem.email = ["mdh@just3ws.com"]
|
7
|
-
gem.description = %q{Monitors your
|
7
|
+
gem.description = %q{Monitors your CLEAR Spot 4G+ Personal Hotspot.}
|
8
8
|
gem.summary = %q{Console app that will poll your attached Clear Hotspot biscuit.}
|
9
9
|
gem.homepage = "https://github.com/just3ws/biscuit-monitor"
|
10
10
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: biscuit-monitor
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -75,7 +75,7 @@ dependencies:
|
|
75
75
|
- - ! '>='
|
76
76
|
- !ruby/object:Gem::Version
|
77
77
|
version: '0'
|
78
|
-
description: Monitors your
|
78
|
+
description: Monitors your CLEAR Spot 4G+ Personal Hotspot.
|
79
79
|
email:
|
80
80
|
- mdh@just3ws.com
|
81
81
|
executables:
|