• Stars
    star
    127
  • Rank 282,790 (Top 6 %)
  • Language
    Objective-C
  • Created almost 9 years ago
  • Updated over 5 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A React Native module for ESP8266 Smartconfig

Description

react-native module for ESP8266 ESPTOUCH Smart config

Featues

  • Support both IOS and Android
  • React Native Promise support
  • Fast way to do configure wifi network for IOT device

Getting started

Mostly automatic install

  1. npm install rnpm --global
  2. npm install react-native-smartconfig@latest --save
  3. rnpm link react-native-smartconfig

Manual install

iOS

  • npm install react-native-smartconfig@latest --save
  • In XCode, in the project navigator, right click Libraries ➜ Add Files to [your project's name]
  • Go to node_modules ➜ react-native-smartconfig and add RCTSmartconfig.xcodeproj
  • In XCode, in the project navigator, select your project. Add libRCTSmartconfig.a to your project's Build Phases ➜ Link Binary With Libraries
  • Click RCTSmartconfig.xcodeproj in the project navigator and go the Build Settings tab. Make sure 'All' is toggled on (instead of 'Basic'). In the Search Paths section, look for Header Search Paths and make sure it contains both $(SRCROOT)/../../react-native/React - mark as recursive.
  • Run your project (Cmd+R)

Android

  • npm install react-native-smartconfig@latest --save
  • For older version. Modify the ReactInstanceManager.builder() calls chain in android/app/main/java/.../MainActivity.java to include:
import com.tuanpm.RCTSmartconfig; // import for older version

.addPackage(new RCTSmartconfigPackage()) //for older version
  • For newest version. Modify the ReactInstanceManager.builder() calls chain in android/app/main/java/.../MainApplication.java to include:
import com.tuanpm.RCTSmartconfig.RCTSmartconfigPackage; // import for newest version of react-native

new RCTSmartconfigPackage()           // for newest version of react-native
  • Append the following lines to android/settings.gradle before include ':app':
include ':react-native-smartconfig'
project(':react-native-smartconfig').projectDir = new File(rootProject.projectDir, 	'../node_modules/react-native-smartconfig/android')
  • Insert the following lines inside the dependencies block in android/app/build.gradle, dont missing apply plugin:'java' on top:
compile project(':react-native-smartconfig')

Notes:

dependencies {
  compile project(':react-native-smartconfig')
}

Usage

import Smartconfig from 'react-native-smartconfig';

Smartconfig.start({
  type: 'esptouch', //or airkiss, now doesn't not effect
  ssid: 'wifi-network-ssid',
  bssid: 'filter-device', //"" if not need to filter (don't use null)
  password: 'wifi-password',
  timeout: 50000 //now doesn't not effect
}).then(function(results){
  //Array of device success do smartconfig
  console.log(results);
  /*[
    {
      'bssid': 'device-bssi1', //device bssid
      'ipv4': '192.168.1.11' //local ip address
    },
    {
      'bssid': 'device-bssi2', //device bssid
      'ipv4': '192.168.1.12' //local ip address
    },
    ...
  ]*/
}).catch(function(error) {

});

Smartconfig.stop(); //interrupt task

Todo

  • Support automatic get current wifi network ssid
  • Set timeout effect
  • Support airkiss

LICENSE

  The MIT License (MIT)

  Copyright (c) 2015 <TuanPM> https://twitter.com/tuanpmt

  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.

More Repositories

1

esp_mqtt

MQTT client library for ESP8266
C
1,135
star
2

espduino

ESP8266 network client (mqtt, restful) for Arduino
C++
381
star
3

esp32-mqtt

ESP32 MQTT sample project for
C
176
star
4

react-native-mqtt

MQTT Client native module for react-native
Objective-C
130
star
5

esp_bridge

ESP8266 firmware SLIP Command, support mqtt, restful client
C
81
star
6

ESP8266MQTTClient

C
80
star
7

esp-request

This project is no longer supported, please use
C
62
star
8

esp-audio-player

ESP8266 Mp3 player and display spectrum on OLED
C
36
star
9

react-native-mqttjs

Pure javascript Websocket MQTT client library for react-native
JavaScript
27
star
10

esp32-fota

ESP32 Firmware update over the air
C
22
star
11

BluFi

BluFi Swift library - The protocol used to set up WiFi via Bluetooth for ESP32
Swift
19
star
12

esp_rpi_flasher

ESP32 batch programming tool
Python
18
star
13

iot-for-beginners-book

Ruby
17
star
14

lua-async

Async utilities for lua
Lua
14
star
15

esp-bootloader

ESP8266 bootloader
C++
10
star
16

esp-adf-sam

C
10
star
17

fullstack-engineer

Work environment, tools, knowledge, background required of a full stack R&D engineer genuine (Electronics, IT, IoTs)
JavaScript
8
star
18

STM32F10x_DSP_Lib

STM32F10x_DSP_Lib
Assembly
8
star
19

react-native-blufi

Java
5
star
20

html5-audio-fft

html5-audio-fft
HTML
5
star
21

esp-request-app

Sample http client for esp32
C
3
star
22

led-rgb-audio-spectrum

led-rgb-audio-spectrum
C
3
star
23

luat-dac-khu

2
star
24

CMSIS

CMSIS
C
2
star
25

piio

High performance GPIO library for raspberry pi
C++
2
star
26

BluFiAndroid

Java
1
star
27

STM32F10x_StdPeriph_Driver

STM32F10x_StdPeriph_Driver
C
1
star
28

esp-fibonacci-dualcore-test

JavaScript
1
star
29

indoor-loc-web

JavaScript
1
star