summaryrefslogtreecommitdiff
path: root/docs/library
AgeCommit message (Collapse)Author
2016-03-27docs/esp8266: esp.wifi_mode() replaced with network.WLAN.active().Paul Sokolovsky
2016-03-27docs/esp8266: phy_mode() moved to network module.Paul Sokolovsky
2016-03-25docs/esp: Remove getaddrinfo(), now in socket module as expected.Paul Sokolovsky
2016-03-25docs: More standard modules for esp8266.Paul Sokolovsky
2016-03-25docs/network: esp8266: Update docs on WLAN constructor.Paul Sokolovsky
2016-03-25docs: Add standard modules list for esp8266.Paul Sokolovsky
2016-03-17docs: Update pyb.UART.any() to mention that it returns character count.Peter Hinch
2016-03-17docs: Mention that pyb.SPI constructor accepts "X" and "Y" arguments.Peter Hinch
2016-03-17docs: Update pyb.I2C constructor to reflect changes in Pyboard Lite.Peter Hinch
2016-03-11docs: Update details on using ADCAll object for vref/vbat channels.Peter Hinch
2016-03-02docs/uctypes.rst: Fix typo (steamlined -> streamlined).Noah Rosamilia
2016-02-23docs: Correct machine.Timer code examples related to duty cycle.danicampora
2016-02-23docs: Add note on machine.Timer class regarding PWM output pins.danicampora
2016-02-22cc3200: Rename 'server' class to 'Server' for consistency.danicampora
2016-02-22docs: Minor change to improve clarity in machine.Timer docs.danicampora
2016-02-21docs: Correct WiPy Timer docs.danicampora
2016-02-21cc3200: Simplify the Timer API and correct the documents.danicampora
Make the PWM duty cycle configurable from 0.00 to 100.00 by accepting values from 0 to 10000. Add automatic Pin assignment when operating in PWM mode.
2016-01-29docs: Update to say that Timer(3) is free, and detail LED intensity.Damien George
2016-01-13docs: Several minor changes: network, pyb, ADCAll and inline asm.Peter Hinch
2016-01-04docs: Include extra functions in time documentation for pyboard.Henrik Sölver
2015-12-16docs/library: Add network server example.danicampora
2015-11-18docs: Update docs for WiPy wlan.connect().Noah
- The link establishment timeout is infinite by default - Fix typo in notes about the auth kwarg
2015-11-09docs/select: Document POLLIN/OUT/ERR/HUP.Paul Sokolovsky
2015-10-31docs/library/index.rst: Minimally adapt for unix port.Paul Sokolovsky
2015-10-29docs: select: Describe poll.poll() return value in detail.Paul Sokolovsky
2015-10-25docs: USB_VCP: Always in non-blocking mode, clarify stream method returns.Paul Sokolovsky
They return None if no data available.
2015-10-25docs: Explicitly specify behavior of UART stream protocol methods on timeout.Paul Sokolovsky
2015-10-22docs: Correct machine.RTC examples.danicampora
2015-10-22docs: Fix typos on wipy docs.danicampora
2015-10-21docs: Add remark about ssl sockets and standard sockets.danicampora
2015-10-21docs: Remove remaining references to 'af', which is now 'alt'.danicampora
2015-10-21docs: Several corrections to the classes in the machine module.danicampora
2015-10-21docs: Add usocket and ussl modules' documentation.danicampora
2015-10-19cc3200: WLAN class can retrieve the existing instance.danicampora
2015-10-19docs/wipy: Add wipy tutorials section.danicampora
2015-10-19docs: Add wipy and network.server documentation.danicampora
2015-10-17docs: Update all WiPy docs to reflect the new API.danicampora
2015-10-13docs: Fix formatting of DAC code examples.Damien George
2015-10-13stmhal: Allow to set bits resolution for DAC; 8 is default, can have 12.Damien George
This patch allows to configure the DAC resolution in the constructor and in the init function, eg: dac = DAC(1, bits=12). The default resolution is 8 bits for backwards compatibility. The bits sets the maximum value accepted by write and write_timed methods, being 2**bits - 1. When using write_timed with 12-bit resolution, the input buffer is treated as an unsigned half-word array, typecode 'H'. See PR #1130 for discussion.
2015-10-10docs: Describe properly how MCU can be woken from pyb.standby() state.Damien George
2015-10-06docs: Update esp8266 documentation to match the code.Radomir Dopieralski
* Move the esp.status() to network module. * Describe the wifi.isconnected() method. * Describe esp.mac(), esp.wifi_mode(), esp.phy_mode(), esp.sleep_type(), esp.deepsleep(), and esp.flash_id() functions.
2015-09-16docs: Adapt WiPy's ADC doc and quickref to the new API.Daniel Campora
2015-09-16cc3200: New SPI API.Daniel Campora
2015-09-16docs/wipy: Add pins to the I2C constructor.Daniel Campora
2015-09-16cc3200: New WDT API.Daniel Campora
2015-09-16cc3200: Add UART.ODD and UART.EVEN to select parity.Daniel Campora
2015-09-16cc3200: Replace Pin.PULL_NONE with None.Daniel Campora
2015-09-16docs: Update I2C and UART docs to match the new API.Daniel Campora
2015-09-10cc3200: New UART API plus related test.Daniel Campora
2015-09-10cc3200: Add alternate functions list to Pin object.Daniel Campora
Also remove pin.high() and pin.low() methods.