Skip to content

Commit

Permalink
Merge pull request #5 from MicrochipTech/develop
Browse files Browse the repository at this point in the history
v1.1.1 release patches
  • Loading branch information
martinrbowman authored Sep 30, 2016
2 parents 769ef00 + 4f3fece commit 7254c9d
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 43 deletions.
40 changes: 2 additions & 38 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,42 +29,6 @@ We have build and tested the Insight on Things Desktop Application on the follow

> NOTE: If you are a **Microchip Employee** we have a corporate AWS account that must be used. To setup your AWS IoT device please go to https://setup.iot.microchip.com for more information
---
### Setting Up the AWS Command Line Interface
#### Linux, Unix, and Windows Installations
Follow the instructions in the [Getting Set Up with the AWS Command Line Interface](http://docs.aws.amazon.com/cli/latest/userguide/cli-chap-getting-set-up.html) for installations for your operating system.

#### Mac OS X Installation
This assumes that you have not installed previous version of Python, awscli, or openssl; if you have you will need to uninstall those versions. You will need to use a version of openssl 1.0.0 or later to connect to AWS IoT services as TLS 1.1 is required. To do this follow the these steps:

1. Use [Homebrew](http://brew.sh/) to install the latest version of openssl with the following commands in a terminal window. You will need to force the links so that Python will use the right version of openssl.

```
brew update
brew install openssl
brew link --force openssl
```
- Reinstall Python to use the latest openssl:

```
brew install python --with-brewed-openssl
```
- To verify that python was updated run the following command and make sure the version os greater than 1.0.2d

```
python -c 'import ssl; print ssl.OPENSSL_VERSION'
```
- Install/upgrade the AWS CLI:

```
pip install --upgrade awscli
```
- To verify the version of the AWS CLI tool installed run the following command and look for version 1.10.x or greater:

```
aws --version
```

---
### Setting Up the AWS IoT Service for the Insight on Things Application

Expand All @@ -84,7 +48,7 @@ To setup your AWS IoT service to work with the Insight on Things Desktop Applica
> NOTE: Make sure you replace `<AWS IoT Region>` and `<AWS Account Number>` with the AWS-IoT region and your AWS account number
```
}
{
"Version": "2012-10-17",
"Statement": [{
"Effect": "Allow",
Expand All @@ -107,7 +71,7 @@ To setup your AWS IoT service to work with the Insight on Things Desktop Applica
> NOTE: Make sure you replace `<AWS Account Number>` with your AWS account number
```
aws iam attach-group-policy --policy-arn arn:aws:iam:<AWS Account Number>:aws:policy/iotDemoPolicy --group-name iotDemo
aws iam attach-group-policy --policy-arn arn:aws:iam:<AWS Account Number>:policy/iotDemoPolicy --group-name iotDemo
```
- Next you will need to create a user for the Insight on Things Desktop Application

Expand Down
2 changes: 1 addition & 1 deletion software/source/content/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ <h3>License Information</h3>
<!-- This is the footer section -->
<footer class="mdl-mini-footer">
<div class="mdl-mini-footer__left-section">
Copyright &copy Microchip Technology, Inc. Microchip Insight Application v1.1.0
Copyright &copy Microchip Technology, Inc. Microchip Insight Application v1.1.1
</div>
</footer>
</body>
Expand Down
2 changes: 1 addition & 1 deletion software/source/content/active.html
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ <h3>mikroBUS Data</h3>
<!-- This is the footer section -->
<footer class="mdl-mini-footer">
<div class="mdl-mini-footer__left-section">
Copyright &copy Microchip Technology, Inc. Microchip Insight Application v1.1.0
Copyright &copy Microchip Technology, Inc. Microchip Insight Application v1.1.1
</div>
</footer>
</body>
Expand Down
2 changes: 1 addition & 1 deletion software/source/content/js/insight.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ var fs = require('fs');
var os = require('os');

//App version sent to reported state as insight_desktop_version
var app_version = "1.1.0";
var app_version = "1.1.1";


//Access keys are not global variables, passed as function
Expand Down
2 changes: 1 addition & 1 deletion software/source/content/newthing.html
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@
<!-- This is the footer section -->
<footer id="fixed-footer" class="mdl-mini-footer">
<div class="mdl-mini-footer__left-section">
Copyright &copy Microchip Technology, Inc. Microchip Insight Application v1.1.0
Copyright &copy Microchip Technology, Inc. Microchip Insight Application v1.1.1
</div>
</footer>
</body>
Expand Down
2 changes: 1 addition & 1 deletion software/source/content/settings.html
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@
<!-- This is the footer section -->
<footer id="fixed-footer" class="mdl-mini-footer">
<div class="mdl-mini-footer__left-section">
Copyright &copy Microchip Technology, Inc. Microchip Insight Application v1.1.0
Copyright &copy Microchip Technology, Inc. Microchip Insight Application v1.1.1
</div>
</footer>
</body>
Expand Down

0 comments on commit 7254c9d

Please sign in to comment.