Skip to content

This is a Micropython Library from Raspberry Pi Pico to communicate with ESP8266 using AT command over serial UART.

License

Notifications You must be signed in to change notification settings

mosnfar/rpi-pico-micropython-esp8266-lib

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Raspberry Pi Pico Micropython ESP8266 Library

GitHub version GitHub download GitHub stars GitHub issues License

Description

This is a Micropython Library for RaspberryPi-Pico to communicate with ESP8266 using AT command.

Hardware Connection

Getting Started with Examples

The best way to learn Raspberry Pi Pico Micropython ESP8266 Library is to understand the examples. In the examples directory there are an example of complete a HTTP Get/Post Operation using ESP8266.

How to Use Library

from machine import Pin from esp8266 import ESP8266 import time, sys print("~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~") print("RPi-Pico MicroPython Ver:", sys.version) print("~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~") ## Create On-board Led object led=Pin(25,Pin.OUT) ## Create an ESP8266 Object esp01 = ESP8266() esp8266_at_ver = None print("StartUP",esp01.startUP()) print("Echo-Off",esp01.echoING()) print("\r\n") ''' Print ESP8266 AT comand version and SDK details ''' esp8266_at_var = esp01.getVersion() if(esp8266_at_var != None): print(esp8266_at_var) ''' set the current WiFi in SoftAP+STA ''' print("WiFi Current Mode:",esp01.setCurrentWiFiMode() print("\r\n\r\n") ''' Connect with the WiFi ''' print("Try to connect with the WiFi..") while (1): if "WIFI CONNECTED" in esp01.connectWiFi("ssid","pwd"): print("ESP8266 connect with the WiFi..") break; else: print(".") time.sleep(2) print("\r\n\r\n") print("Now it's time to start HTTP Get/Post Operation.......\r\n") while(1): led.toggle() time.sleep(1) '''  Going to do HTTP Get Operation with www.httpbin.org/ip, It return the IP address of the connected device  ''' httpCode, httpRes = esp01.doHttpGet("www.httpbin.org","/ip","RaspberryPi-Pico", port=80) print("------------- www.httpbin.org/ip Get Operation Result -----------------------") print("HTTP Code:",httpCode) print("HTTP Response:",httpRes) print("-----------------------------------------------------------------------------\r\n\r\n") '''  Going to do HTTP Post Operation with www.httpbin.org/post  ''' post_json="abcdefghijklmnopqrstuvwxyz" #"{\"name\":\"Noyel\"}" httpCode, httpRes = esp01.doHttpPost("www.httpbin.org","/post","RPi-Pico", "application/json",post_json,port=80) print("------------- www.httpbin.org/post Post Operation Result -----------------------") print("HTTP Code:",httpCode) print("HTTP Response:",httpRes) print("--------------------------------------------------------------------------------\r\n\r\n")

Contributing

You are very welcome to contribute: stability bugfixes, new hardware support, or any other improvements. Please. GitHub stars GitHub forks

License

This project is released under The MIT License (MIT) © Noyel Seth

About

This is a Micropython Library from Raspberry Pi Pico to communicate with ESP8266 using AT command over serial UART.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%