Skip to content

antonvier/micropython_esp8266

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MicroPython ESP8266

This project contains few separated smaller projects running on esp8266 under micropython control. Projects are usefull to control WS2812B leds, relays, sonoff module etc. The project is still developing.

Projects

All projects listed in sources/projects are separated. Everyone has a different goal. Quick summary of each one is listed below.

Pin Scheduler

It auto controls pins (set high or low state) by set schedule time. I used this to automatically water the flowers during the holidays.

Animator

It controls WS2812B leds (and similiar). It offers few animations, solid color, changing leds count, animation speed. Everything can be changed Android app.

Remote Socket

It controls pins (you can set high or low state).

Sonoff

It controls sonoff device (for now support S20, S26, switch, touch).

Thermometer

It uploads temperature every one minute (read by Dallas DS18B20 sensor) to the server. You can adapt it to use any server (for example: thingspeak, thingsboard, domoticz in few minutes. I used my own website (which I can share someday).

It also supports segment LCD 16x2, on which shows current temperature.

Thermometer Low Power

This is low power version of Thermometer. Project uploads temperature and goes deep sleep. Wakes up only to upload data. LCD is not supported.

Android remote control app

I shared Android app named Octopus to control esp via Wifi. The application is available in Google Play.

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.

Prerequisites

You need some tools to start the work.

esptool.py
ampy

Install it before continue. For example on Debian based distribution run follow commands:

sudo apt-get install esptool
sudo pip install adafruit-ampy

Repository

Clone the repository into your local machine. After that, update submodules.

git submodule update --init

Configuration

All settings are stored in config file. Settings that you need to change:

Set correct IP. Changed:

IP='192.168.1.100'

to your IP.

Set correct uart port. Replace:

DEVICE='/dev/ttyUSB0'

to your uart port.

Set webrepl secure password (if you don't want to use default). Change:

PASS='YOUR_PASSWORD'

to your password.

Set correct ssid and password. Change:

NETWORKS={"SSID_1":"PASSWORD_1","SSID_2":"PASSWORD_2"}

to your WiFi settings.

Flashing firmware

To flash your board with latest micropython firmware run follow command:

scripts/firmwares/micro_firmware_esp8266.sh

Deploying project

All projects listed in sources/projects has matching script in scripts/projects to deploy it to board.

Choose any project and run scripts to deploy into the board. For example to run WS2812B leds project run command:

scripts/projects/micro_animator.sh

Contributing

In general don't be afraid to send pull request. Use the "fork-and-pull" Git workflow.

  1. Fork the repo
  2. Clone the project to your own machine
  3. Commit changes to your own branch
  4. Push your work back up to your fork
  5. Submit a Pull request so that we can review your changes

NOTE: Be sure to merge the latest from upstream before making a pull request!

Donations

If you enjoy this project and want to thanks, please use follow link:

Support via PayPal

License

License

Acknowledgments

About

esp8266 web control

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 85.5%
  • Shell 14.5%