Skip to content

ESP32 as wifi co processor with sockets & requests library #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 43 commits into from
Feb 11, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
9dce627
can read version #
ladyada Jan 26, 2019
ca4dd38
read macc addr
ladyada Jan 26, 2019
cd580a8
scan APs
ladyada Jan 27, 2019
ac9976b
simplified command/response, add rssi/encryption to ssid scan
ladyada Jan 27, 2019
3e19631
connect and get network settings/ip
ladyada Jan 27, 2019
f33420f
nslookup
ladyada Jan 27, 2019
aee8569
ping
ladyada Jan 27, 2019
1d9092d
some socket stuff
ladyada Jan 27, 2019
b5da5a3
send socket data and receive too
ladyada Jan 27, 2019
66ad6f9
and close
ladyada Jan 27, 2019
8d2c1e8
add socket
ladyada Jan 27, 2019
fa1ec91
move into a subfolder, working ssl
ladyada Jan 27, 2019
e021014
make work with original demos
ladyada Jan 27, 2019
f6f741c
easier retries
ladyada Jan 27, 2019
828db15
simplify
ladyada Jan 28, 2019
ec7ef71
add timeout to SPI readywait
ladyada Jan 28, 2019
f89ce7a
reset if is_connected() fails
ladyada Jan 28, 2019
2e131b6
tear out manual SPI and replace with busdevice
ladyada Jan 28, 2019
9e2b1aa
new cookie
ladyada Feb 7, 2019
08e8881
update packages
ladyada Feb 7, 2019
c2be8aa
linted requests
ladyada Feb 9, 2019
1683b26
linted
ladyada Feb 9, 2019
8dc0cf7
right lint
ladyada Feb 9, 2019
c05ca26
pylint buggy
ladyada Feb 9, 2019
23abf17
fix readme
ladyada Feb 9, 2019
88489c4
remove todos
ladyada Feb 9, 2019
9a0264b
mutliple files
ladyada Feb 9, 2019
1af666b
replace spaces in url
ladyada Feb 9, 2019
06140ad
Merge branch 'master' of github.com:ladyada/Adafruit_CircuitPython_ES…
ladyada Feb 9, 2019
f3c69d4
less quotey
ladyada Feb 9, 2019
e2699fc
Merge branch 'master' of github.com:ladyada/Adafruit_CircuitPython_ES…
ladyada Feb 9, 2019
f2a6c25
docstring complaint fix?
ladyada Feb 9, 2019
31fe2ef
demo
ladyada Feb 9, 2019
b0f8490
Merge branch 'master' of github.com:ladyada/Adafruit_CircuitPython_ES…
ladyada Feb 9, 2019
97a59c1
fix tcp bulk transfer bug, socket timeout setter, streaming data from…
ladyada Feb 9, 2019
4c41d03
linted
ladyada Feb 9, 2019
6fe5722
remove debug print, set MTU to 1500
ladyada Feb 9, 2019
7f9e3e3
Merge branch 'master' of github.com:ladyada/Adafruit_CircuitPython_ES…
ladyada Feb 9, 2019
7b7fbe4
try to minimize allocations
ladyada Feb 10, 2019
a86c896
less debugs - try back to MTU 4000
ladyada Feb 10, 2019
0f016f9
fix ping, prettier example
ladyada Feb 11, 2019
9aa865a
pylinted
ladyada Feb 11, 2019
8ae721c
remove test code
ladyada Feb 11, 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