Search found 35 matches
- Tue Feb 13, 2018 7:49 pm
- Forum: General Discussion and Questions
- Topic: Docs PDF Functionality
- Replies: 4
- Views: 1323
Re: Docs PDF Functionality
In the ReadTheDoc the latest is the default selection and the pdf link exits with a 404 error but if you select the 1.9.3 release you'll have a pdf. Don't forget to select the right platform first.
- Sun Dec 24, 2017 9:23 am
- Forum: ESP32 boards
- Topic: SSD1306 I2C
- Replies: 19
- Views: 11572
Re: SSD1306 I2C
My Board is a China - clone. The diplay in question is a 1,3", 128x64, connected per I2C. Maybe you can put a link to the board you use or at least a picture of it. Some boards have an additionnal reset that need to be configured in order for the board to work as expected like this one for example ...
- Wed Sep 27, 2017 5:54 pm
- Forum: ESP32 boards
- Topic: Timer id's - which is correct?
- Replies: 2
- Views: 1805
Re: Timer id's - which is correct?
That's not what I understand when I read the documentation
class machine.Timer(id, ...)
Construct a new timer object of the given id. Id of -1 constructs a virtual timer (if supported by a board).
- Fri May 19, 2017 7:06 am
- Forum: ESP8266 boards
- Topic: ESP8266 Building and flashing OTA firmware
- Replies: 12
- Views: 9328
Re: ESP8266 Building and flashing OTA firmware
On pfalcon github repo it is said "Each datagram is signed with RSA private key. Only someone with a valid private key may produce valid datagrams, information from which ota-server will flash as a user application. ( The public key is configured when building ota-server .)". Look at the comments in...
- Thu May 18, 2017 6:44 am
- Forum: ESP8266 boards
- Topic: ESP8266 Building and flashing OTA firmware
- Replies: 12
- Views: 9328
Re: Building and flashing OTA firmware
Up to now, I have not used it but on the download page it is stated: "The first time you use this build you need to flash one of the "initial image" images using esptool.py as described above. After that, you can update the firmware over the air using the "OTA update" file in conjunction with the ot...
- Mon Feb 13, 2017 6:11 pm
- Forum: ESP8266 boards
- Topic: i2c lcd works only if more one device connected
- Replies: 7
- Views: 3488
Re: i2c lcd works only if more one device connected
On I²C bus, the lines are open-collectors. You shall add a resistor (4,7k for a medium speed bus) to 5V on both SDA and SCL. Not to 5V. If you add it to 5V, the pins will receive 5V voltage, and they are not prepared for that and can be damaged. The pullups should be to the 3.3V. Of course. Sorry f...
- Mon Feb 13, 2017 12:57 pm
- Forum: ESP8266 boards
- Topic: i2c lcd works only if more one device connected
- Replies: 7
- Views: 3488
Re: i2c lcd works only if more one device connected
@Kestel You probably need to add pullup resistors on SDA ands SCL. On I²C bus, the lines are open-collectors. You shall add a resistor (4,7k for a medium speed bus) to 3.3V on both SDA and SCL. The board with the BMP180 you are using probably add those resistors for you. Edit: corrected voltage erro...
- Mon Jan 30, 2017 10:21 am
- Forum: ESP8266 boards
- Topic: I2C EEPROM on uPy/ESP8266?
- Replies: 48
- Views: 21006
- Wed Sep 14, 2016 11:44 am
- Forum: ESP8266 boards
- Topic: Static IP Possibility
- Replies: 14
- Views: 11743
Re: Static IP Possibility
As said in the documentation,
is a 4-tuple.
Maybe you should look here http://www.tutorialspoint.com/python/python_tuples.htm
SoTo set the above values, pass a 4-tuple with the required information.
Code: Select all
('xxx.xxx.xxx.xxx','255.255.255.0','192.168.1.1','xxx.xxx.xxx.xxx')
Maybe you should look here http://www.tutorialspoint.com/python/python_tuples.htm
- Sat Aug 27, 2016 8:29 pm
- Forum: ESP8266 boards
- Topic: Querying USB port
- Replies: 5
- Views: 2695
Re: Querying USB port
To install MicroPython you just need to install esptool.py and know what COM port is associated with your USB interface daughter board. When you know this you follow the Getting started with MicroPython on the ESP8266