Skip to content

Commit f9d2bca

Browse files
committed
v0.11
Schematic ESP8266Tiny checked out. Updated ESP8266UDP_CommCheck project to work with ESP8266Tiny schematic
1 parent 030cfb5 commit f9d2bca

File tree

8 files changed

+5125
-112
lines changed

8 files changed

+5125
-112
lines changed

ESP8266UDP_CommCheck/ESP8266UDP_CommCheck.ino

+143-111
Large diffs are not rendered by default.

ESP8266UDP_CommCheck/PSTRStrings1.cpp

+19
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,25 @@ void PSTRStrings1::show ( int startValue, int stopValue )
165165
}
166166
}
167167

168+
void PSTRStrings1::showStrings ()
169+
{
170+
int startValue = 0;
171+
int stopValue = numStrings;
172+
if (startValue < 0)
173+
startValue = 0;
174+
if (stopValue >= numStrings)
175+
stopValue = numStrings;
176+
177+
for (int i=startValue; i<stopValue; i++)
178+
{
179+
Serial.print ( i );
180+
debugUtils.printPSTR ( PSTR ( ")" ) );
181+
printString(i);
182+
debugUtils.printPSTR ( PSTR ( "\n" ) );
183+
}
184+
}
185+
186+
168187
void PSTRStrings1::showAll ( )
169188
{
170189
show (0, numStrings );

ESP8266UDP_CommCheck/PSTRStrings1.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class PSTRStrings1
3131
int stringLen( int which);
3232
int intersect ( PSTRStrings1 * targetList, int index );
3333
bool checkMatch (int which);
34-
34+
void showStrings ();
3535
int numStrings;
3636

3737
private:

Schematics/ESP8266Tiny/ESP8266.jpg

113 KB
Loading

Schematics/ESP8266Tiny/ESP8266Tiny.brd

+1,175
Large diffs are not rendered by default.

Schematics/ESP8266Tiny/ESP8266Tiny.sch

+3,750
Large diffs are not rendered by default.
9.9 KB
Binary file not shown.

Schematics/ESP8266Tiny/readme.txt

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
10/19/2014
2+
Created
3+
Not sure whether the LM 3.3V voltage regulator can provide enough for the ESP8266
4+
Added a 3.3V Pinout so that an external 3.3V Power source can be provided.
5+
Will order after testing out the ESP8266 Rx/Tx lines are connected to Arduino
6+
Rx/Tx so ESP8266 module should be removed will programming.
7+
Could be a useful module for an I2C component.
8+
9+
10/21/2014
10+
Confirmed LM 3.3V regulator does indeed provide enough power for this device.
11+
Transistors were added so that the 5V arduino can communicate with the 3.3V device
12+
The ESP8266 will need the RX/TX lines, so an I2C component may be necessary
13+
Go ahead an order the pcb
14+
15+
10/22/2014
16+
PCB ordered from iteadstudio
17+
18+
10/23/2014
19+
Transistor to amplify power to infra-red led with supporting resistors should be
20+
placed on the main board. Board ready. Wait until first board is returned for
21+
evaluation before ordering another.
22+
23+
11/10/2014
24+
D0 was driving ESPTX. (backwards). Reordering
25+
26+
11/18/2014
27+
AT+CIOBAUD=19200 sets the baud rate to 19200. This will allow me to communicate with the
28+
ESP8266 using soft serial. Normal Arduino Serial can be used for debugging (better).
29+
Reordered pcb. D11 and D12 are now connected to ESP8266
30+
31+
12/12/2014
32+
Redid the .zip file, but this was unnecessary as the last change has not arrived for evaluation yet.
33+
34+
12/31/2014
35+
Last change arrived (some problem in transportation).
36+
pcb checks out ok. Some standoffs would be nice.
37+

0 commit comments

Comments
 (0)