Skip to content

Latest commit

History

41 Commits

Folders and files

NameName
Last commit message
Last commit date

Repository files navigation

espduino

This is Wifi library (Chip ESP8266 Wifi soc) for arduino using SLIP protocol via Serial port

You can found the Native MQTT client library for ESP8266 work well here: https://github.com/tuanpmt/esp_mqtt

Source code bridge for ESP8266 can found here: https://github.com/tuanpmt/esp_bridge

Features

  • Rock Solid wifi network client for Arduino/mbed (coming soon)
  • More reliable than AT COMMAND library (Personal comments)
  • Firmware applications written on ESP8266 can be read out completely. For security applications, sometimes you should use it as a Wifi client (network client) and other MCU with Readout protection.
  • MQTT module:
    • MQTT client run stable as Native MQTT client (esp_mqtt)
    • Support subscribing, publishing, authentication, will messages, keep alive pings and all 3 QoS levels (it should be a fully functional client).
    • Support multiple connection (to multiple hosts).
    • Support SSL
    • Easy to setup and use
  • REST module:
    • Support method GET, POST, PUT, DELETE
    • setContent type, set header, set User Agent
    • Easy to used API
    • Support SSL
    • Support multiple connection

To-Do:

  • WIFI AP
  • Webserver module
  • NTP module
  • RTC + Memory
  • mDNS module

Installations

1. Clone this project:

git clone https://github.com/tuanpmt/espduino
cd espduino

2. Program ESP8266:

  • Wiring: Program Connection diagram
  • Program release firmware:
esp8266/tools/esptool.py-pCOM1write_flash0x00000esp8266/release/0x00000.bin0x40000esp8266/release/0x40000.bin
  • Or Program debug firmware (Debug message from ESP8266 will forward to debug port of Arduino)
esp8266/tools/esptool.py-pCOM1write_flash0x00000esp8266/debug/0x00000.bin0x40000esp8266/debug/0x40000.bin

3. Wiring:Program Connection diagram

4. Import arduino library and run example:

Example read DHT11 and send to thingspeak.com

Example send pushbullet push notification:

http://tuanpm.net/pir-motion-detect-send-pushbullet-push-notification-with-esp8266/

Example for MQTT client

/** * \file * ESP8266 MQTT Bridge example * \author * Tuan PM <tuanpm@live.com> */#include<SoftwareSerial.h>#include<espduino.h>#include<mqtt.h>SoftwareSerialdebugPort(2, 3); // RX, TXESPesp(&Serial, &debugPort, 4);
MQTTmqtt(&esp);
booleanwifiConnected= false;
voidwifiCb(void*response)
{
uint32_tstatus;
RESPONSEres(response);
if(res.getArgc() ==1) {
res.popArgs((uint8_t*)&status, 4);
if(status==STATION_GOT_IP) {
debugPort.println("WIFI CONNECTED");
mqtt.connect("yourserver.com", 1883, false);
wifiConnected= true;
//or mqtt.connect("host", 1883); /*without security ssl*/
} else {
wifiConnected= false;
mqtt.disconnect();
}
}
}
voidmqttConnected(void*response)
{
debugPort.println("Connected");
mqtt.subscribe("/topic/0"); //or mqtt.subscribe("topic"); /*with qos = 0*/mqtt.subscribe("/topic/1");
mqtt.subscribe("/topic/2");
mqtt.publish("/topic/0", "data0");
}
voidmqttDisconnected(void*response)
{
}
voidmqttData(void*response)
{
RESPONSEres(response);
debugPort.print("Received: topic=");
Stringtopic=res.popString();
debugPort.println(topic);
debugPort.print("data=");
Stringdata=res.popString();
debugPort.println(data);
}
voidmqttPublished(void*response)
{
}
voidsetup() {
Serial.begin(19200);
debugPort.begin(19200);
esp.enable();
delay(500);
esp.reset();
delay(500);
while(!esp.ready());
debugPort.println("ARDUINO: setup mqtt client");
if(!mqtt.begin("DVES_duino", "admin", "Isb_C4OGD4c3", 120, 1)) {
debugPort.println("ARDUINO: fail to setup mqtt");
while(1);
}
debugPort.println("ARDUINO: setup mqtt lwt");
mqtt.lwt("/lwt", "offline", 0, 0); //or mqtt.lwt("/lwt", "offline");/*setup mqtt events */mqtt.connectedCb.attach(&mqttConnected);
mqtt.disconnectedCb.attach(&mqttDisconnected);
mqtt.publishedCb.attach(&mqttPublished);
mqtt.dataCb.attach(&mqttData);
/*setup wifi*/debugPort.println("ARDUINO: setup wifi");
esp.wifiCb.attach(&wifiCb);
esp.wifiConnect("DVES_HOME","wifipassword");
debugPort.println("ARDUINO: system started");
}
voidloop() {
esp.process();
if(wifiConnected) {
}
}

Example for RESTful client

/** * \file * ESP8266 RESTful Bridge example * \author * Tuan PM <tuanpm@live.com> */#include<SoftwareSerial.h>#include<espduino.h>#include<rest.h>SoftwareSerialdebugPort(2, 3); // RX, TXESPesp(&Serial, &debugPort, 4);
RESTrest(&esp);
booleanwifiConnected= false;
voidwifiCb(void*response)
{
uint32_tstatus;
RESPONSEres(response);
if(res.getArgc() ==1) {
res.popArgs((uint8_t*)&status, 4);
if(status==STATION_GOT_IP) {
debugPort.println("WIFI CONNECTED");
wifiConnected= true;
} else {
wifiConnected= false;
}
}
}
voidsetup() {
Serial.begin(19200);
debugPort.begin(19200);
esp.enable();
delay(500);
esp.reset();
delay(500);
while(!esp.ready());
debugPort.println("ARDUINO: setup rest client");
if(!rest.begin("yourapihere-com-r2pgihowjx7x.runscope.net")) {
debugPort.println("ARDUINO: failed to setup rest client");
while(1);
}
/*setup wifi*/debugPort.println("ARDUINO: setup wifi");
esp.wifiCb.attach(&wifiCb);
esp.wifiConnect("DVES_HOME","wifipassword");
debugPort.println("ARDUINO: system started");
}
voidloop() {
charresponse[266];
esp.process();
if(wifiConnected) {
rest.get("/");
if(rest.getResponse(response, 266) ==HTTP_STATUS_OK){
debugPort.println("RESPONSE: ");
debugPort.println(response);
}
delay(1000);
}
}

MQTT API:

FP<void, void*>connectedCb;
FP<void, void*>disconnectedCb;
FP<void, void*>publishedCb;
FP<void, void*>dataCb;
MQTT(ESP*esp);
booleanbegin(constchar*client_id, constchar*user, constchar*pass, uint16_tkeep_alive, booleanclean_seasion);
booleanlwt(constchar*topic, constchar*message, uint8_tqos, uint8_tretain);
booleanlwt(constchar*topic, constchar*message);
voidconnect(constchar*host, uint32_tport, booleansecurity);
voidconnect(constchar*host, uint32_tport);
voiddisconnect();
voidsubscribe(constchar*topic, uint8_tqos);
voidsubscribe(constchar*topic);
voidpublish(constchar*topic, uint8_t*data, uint8_tlen, uint8_tqos, uint8_tretain);
voidpublish(constchar*topic, char*data, uint8_tqos, uint8_tretain);
voidpublish(constchar*topic, char*data);

REST API:

REST(ESP*e);
booleanbegin(constchar*host, uint16_tport, booleansecurity);
booleanbegin(constchar*host);
voidrequest(constchar*path, constchar*method, constchar*data);
voidrequest(constchar*path, constchar*method, constchar*data, intlen);
voidget(constchar*path, constchar*data);
voidget(constchar*path);
voidpost(constchar*path, constchar*data);
voidput(constchar*path, constchar*data);
voiddel(constchar*path, constchar*data);
voidsetTimeout(uint32_tms);
uint16_tgetResponse(char*data, uint16_tmaxLen);
voidsetUserAgent(constchar*value); //setUserAgent("Your user agent"); // Set Content-Type HeadervoidsetContentType(constchar*value); //setContentType("application/json");voidsetHeader(constchar*value);//setHeaer("Header1:value1\r\nHeader2:value2\r\n");

Authors:

Tuan PM

Donations

Invite me to a coffee Donate

LICENSE - "MIT License"

Copyright (c) 2014-2015 Tuan PM

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

ESP8266 network client (mqtt, restful) for Arduino

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages