Skip to content

Initial Commit! #1

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 30 commits into from
May 23, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
285ea9f
init!
May 10, 2019
3eb01b1
add get_device, remove hardcoded authorization token
May 10, 2019
614a077
add delete/patch http methods, expose device twin get and replace
May 10, 2019
ee95fbb
add http status parsing based on common azure error codes, add replac…
May 10, 2019
a1c8fa8
make wifi_type private, better status parsing
May 20, 2019
4a361f1
pylinted!
May 20, 2019
7bafda5
adding in c2d messaging
May 20, 2019
0c36033
working on get_hub_message, d2c is funky
May 20, 2019
ab27552
pylint a bit
May 20, 2019
c677f4f
fix url string...
May 20, 2019
d57aa03
message-queue handling to c2d, add optional return_response kwarg to …
May 21, 2019
c7d7360
remove prints
May 21, 2019
484158b
pylint!
May 21, 2019
76c8273
remove busdevice in favor of esp32spi
May 21, 2019
2bd864b
add simpletest for messaging
May 21, 2019
77489e4
add example of fetching, modifying, and returning a device twin property
May 21, 2019
0c97a1d
fix delete_device, adding etag specifier to headers
May 21, 2019
09e4f78
add example of device management subset implementation
May 21, 2019
9b3ea3e
fix for docstring
May 21, 2019
cb66cf0
remove pypi deployment
May 21, 2019
9addd21
links into readme
May 21, 2019
c8885f1
swap cpu temp for random int
May 21, 2019
b74a545
comments/cleanup
May 21, 2019
982fd58
fix underline on readme
May 21, 2019
012db47
raise error for subsequent c2d requests
May 22, 2019
d169190
refactor: device_id in init, move new self._device_id into all calls,…
May 22, 2019
7076504
redo examples to match new location of device_id
May 22, 2019
2b01b1e
remove deviceid from the top-level on the readme usage examples too!
May 22, 2019
a7b05b8
add getter/setter for device_id property
May 23, 2019
3eac209
all responses need to be closed, returning responses causes errors
May 23, 2019
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
12 changes: 12 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
*.mpy
.idea
__pycache__
_build
*.pyc
.env
build*
bundles
*.DS_Store
.eggs
dist
**/*.egg-info
Loading