As I plan to make a custom breakout board I wanted to solder as few connections as possible. I was able to boot the device, with UART (out at least) soldering the following.
| PIN | NAME |
|---|---|
| 0 | GND |
| 1 | 3V3 |
| 2 | EN |
| #include <SPI.h> | |
| #include <RF24Network.h> | |
| #include <RF24.h> | |
| #include <ESP8266WiFi.h> | |
| const char* ssid = "ssid"; | |
| const char* password = "password"; | |
| const char* host = "coolapp.herokuapp.com"; |
| /* | |
| * This sketch demonstrates how to scan WiFi networks. | |
| * The API is almost the same as with the WiFi Shield library, | |
| * the most obvious difference being the different file you need to include: | |
| */ | |
| #define BLYNK_PRINT Serial // Comment this out to disable prints and save space | |
| #include <ESP8266WiFi.h> | |
| #include <BlynkSimpleEsp8266.h> | |
| #include <SimpleTimer.h> |
| function get_video_thumb(url, callback){ | |
| var id = get_video_id(url); | |
| if (id['type'] == 'y') { | |
| return processYouTube(id); | |
| } else if (id['type'] == 'v') { | |
| $.ajax({ | |
| url: 'http://vimeo.com/api/v2/video/' + id['id'] + '.json', | |
| dataType: 'jsonp', | |
| success: function(data) { |
| /* | |
| * This sketch sends ads1115 current sensor data via HTTP POST request to thingspeak server. | |
| * It needs the following libraries to work (besides the esp8266 standard libraries supplied with the IDE): | |
| * | |
| * - https://github.com/adafruit/Adafruit_ADS1X15 | |
| * | |
| * designed to run directly on esp8266-01 module, to where it can be uploaded using this marvelous piece of software: | |
| * | |
| * https://github.com/esp8266/Arduino | |
| * |
| $("#selectBox").append('<option value="option6">option6</option>'); |
| /* | |
| * This sketch sends ads1115 current sensor data via HTTP POST request to thingspeak server. | |
| * It needs the following libraries to work (besides the esp8266 standard libraries supplied with the IDE): | |
| * | |
| * - https://github.com/adafruit/Adafruit_ADS1X15 | |
| * | |
| * designed to run directly on esp8266-01 module, to where it can be uploaded using this marvelous piece of software: | |
| * | |
| * https://github.com/esp8266/Arduino | |
| * |
| //Almost entirelly lifted directly from https://github.com/igrr/esp32-cam-demo | |
| //Just clocked a little differently and has chained buffers. | |
| //This totes works with the I2S bus on the ESP32 for READING 16 wires simultaneously. | |
| //Can be clocked off of I2S's internal controller or an external clock. | |
| #define I2S_D0 4 | |
| #define I2S_D1 5 | |
| #define I2S_D2 18 | |
| #define I2S_D3 19 | |
| #define I2S_D4 36 |
| Blynk Web Dashboard | |
| ------ | |
| A [Pen](http://codepen.io/shrikantgg/pen/oYgoxm) by [shrikant](http://codepen.io/shrikantgg) on [CodePen](http://codepen.io/). | |
| [License](http://codepen.io/shrikantgg/pen/oYgoxm/license). |
| // how long each led stays on for | |
| int delayTime = 1; | |
| //how long between each | |
| int charBreak = 3; | |
| //how long to wait after the message is finished before it repeats | |
| int resetTime = 20; | |
| int LED1 = 2; | |
| int LED2 = 3; | |
| int LED3 = 4; |