Skip to content

Adding MQTT support for Azure IoT Central and IoT Hub #11

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 34 commits into from
Apr 30, 2020
Merged
Changes from 1 commit
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
c384d42
Copying in code from the external repo
Apr 11, 2020
1fb4de0
Merge branch 'master' of https://github.com/adafruit/Adafruit_Circuit…
Apr 11, 2020
0a01591
Upping line length
Apr 11, 2020
4f6b3fe
Black formatting
Apr 11, 2020
89db973
Update iotcentral_simpletest.py
Apr 11, 2020
707a7ed
Addin exports to __init__
Apr 12, 2020
5bd2f83
Passing wifi manager around to set the socket
Apr 12, 2020
359adcf
Added IoT Hub examples
Apr 12, 2020
0a7d52c
Added iot central examples
Apr 12, 2020
5cbd59e
Trying to get sphinx to not error
Apr 12, 2020
f683715
Update conf.py
Apr 12, 2020
8b3baba
Makin examples work
Apr 13, 2020
0d85cd2
Fixing based of code reivew comments
Apr 16, 2020
bdece0b
Starting to add readme documentation
Apr 16, 2020
79aab5a
More readme updates
Apr 16, 2020
e86e9b3
Update README.rst
Apr 16, 2020
6c04a3e
Update README.rst
Apr 16, 2020
0a043d4
Updating API docs
Apr 17, 2020
45071bb
Setting the logging level for the MQTT client from the top level logger
Apr 17, 2020
0aa0e9c
Update iot_mqtt.py
Apr 17, 2020
e235d39
Added file headers
Apr 17, 2020
0c034f4
Removing some rogue print statements
Apr 17, 2020
e8caff8
PR review changes
Apr 17, 2020
5251721
More updates from PR feedback
Apr 17, 2020
e54804e
Update requirements.txt
Apr 17, 2020
dbc03d6
Fixing the build script
Apr 17, 2020
1f3d37b
Fixing reconnect logic after bug fixes in mini MQTT
Apr 22, 2020
e1e13c0
Tweaked the samples to have more details on library dependencies
Apr 23, 2020
a9833dd
Adding more documentation around the keys
Apr 29, 2020
b49197e
Update README.rst
Apr 29, 2020
9195773
Update README.rst
Apr 29, 2020
90c53ff
Update azureiot_secrets_example.py
Apr 29, 2020
4ef5e13
Update device_registration.py
Apr 29, 2020
571f496
Trying to get images in both the readme and docs
Apr 29, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fixing the build script
  • Loading branch information
Jim Bennett committed Apr 17, 2020
commit dbc03d665c9a3a94e4be212f32c1333f4ab02449
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
black --check --target-version=py35 --line-length=140 .
- name: PyLint
run: |
pylint $( find . -path './adafruit*.py' )
pylint $( find . -path './adafruit_azureiot/*.py' )
([[ ! -d "examples" ]] || pylint --disable=missing-docstring,invalid-name,bad-whitespace,wrong-import-position $( find . -path "./examples/*.py" ))
- name: Build assets
run: circuitpython-build-bundles --filename_prefix ${{ steps.repo-name.outputs.repo-name }} --library_location .
Expand Down