aboutsummaryrefslogtreecommitdiff
path: root/esp8266/qstrdefsport.h
AgeCommit message (Collapse)Author
2017-09-06ports: Make new ports/ sub-directory and move all ports there.Damien George
This is to keep the top-level directory clean, to make it clear what is core and what is a port, and to allow the repository to grow with new ports in a sustainable way.
2017-07-31all: Use the name MicroPython consistently in commentsAlexander Steffen
There were several different spellings of MicroPython present in comments, when there should be only one.
2017-05-05esp8266: Change default settings to mount flash at root dir.Damien George
2017-01-27esp8266: Change to use new generic VFS sub-system.Damien George
The VFS sub-system supports mounting of an arbitrary number of devices (limited only by available RAM). The internal flash is now mounted at "/flash".
2016-05-03esp8266/main: Set sys.path to ["", "/", "/lib"].Paul Sokolovsky
2016-04-16esp8266: Adapt port to use new auto-qstr generation.Damien George
2016-04-15esp8266/modmachine: Add reset_cause() function.Paul Sokolovsky
2016-04-15esp8266/qstrdefsport.h: Mark qstr's for "esp" module.Paul Sokolovsky
2016-04-15esp8266: Enable input() builtin.Paul Sokolovsky
2016-04-14esp8266: Add hard IRQ callbacks for pin change on GPIO0-15.Damien George
2016-04-12esp8266/modnetwork: .config(): Add "password" param (W/O).Paul Sokolovsky
2016-04-12esp8266/modnetwork: .config(): Add "authmode" param.Paul Sokolovsky
2016-04-11esp8266/modesp: Add freemem() and meminfo() functions.Paul Sokolovsky
They call into vendor SDK functions system_get_free_heap_size() and system_print_meminfo() respectively.
2016-04-06esp8266: Add initial implementation of machine.UART.Damien George
Currently UART(0) and UART(1) are exposed and only uart.write works.
2016-04-06esp8266: Make destination for vendor OS debug output soft-configurable.Damien George
Use esp.osdebug(None) to disable, or esp.osdebug(uart_id) to send output to a UART.
2016-04-05esp8266: Move pyb.hard_reset() to machine.reset().Paul Sokolovsky
2016-03-26esp8266: Add esp.neopixel_write function to bit-bang WS2812 data.Damien George
2016-03-26esp8266: Add PWM support.Damien George
PWM implementation uses a timer and interrupts (FRC1), taken from Espressif's/NodeMCU's implementation and adapted for our use. 8 channels are supported, on pins 0, 2, 4, 5, 12, 13, 14, 15. Usage: import machine pwm0 = machine.PWM(machine.Pin(0)) pwm0.freq(1000) pwm0.duty(500) Frequency is shared (ie the same) for all channels. Frequency is between 1 and 1000. Duty is between 0 and 1023.
2016-03-25esp8266: Implement software SPI class.Damien George
Supports speeds up to 500k baud, polarity=0/1, phase=0/1, and using any pins. Only supports MSB output at the moment.
2016-03-24esp8266: Add onewire helper functions as C module.Damien George
Includes functions to read and write bits and bytes.
2016-03-24esp8266: Implement bit-bang I2C read, and add i2c.readfrom method.Damien George
I2C reading tested with TSL2561 luminosity sensor.
2016-03-24esp8266: Add basic I2C driver, with init and writeto methods.Damien George
Tested and working with SSD1306 I2C display.
2016-03-23esp8266: Add "socket" and "usocket" aliases for lwip module.Paul Sokolovsky
2016-03-23esp8266: Add module weak link from json to ujson.Damien George
2016-03-10esp8266/modnetwork: Add symbolic names for network interfaces: STA_IF & AP_IF.Paul Sokolovsky
These are expected to be passed to network.WLAN() to instantiate network interface objects.
2016-03-10esp8266/modnetwork: Introduce interface .config() method.Paul Sokolovsky
Allows to set (in case keyword args are given) or query (in case a single "symbolic keyword" (a string, value is the same as keyword)) arbitrary interface paramters (i.e. extensible and adaptable to various hardware). Example usage: ap_if = network.WLAN(1) ap_if.config(essid="MicroPython on Air") print(ap_if.config("essid"))
2016-03-10esp8266/modnetwork: Add per-interface .active() method.Paul Sokolovsky
Allows to up/down interface when called with a boolean, or query current state if called without args. This per-interface method is intended to supersede adhoc network.wifi_mode() function.
2016-03-05esp8266: Implement Pin.__call__() and Pin.OPEN_DRAIN mode.Damien George
OPEN_DRAIN is of course synthesised. All pin modes are tested and working.
2016-03-04esp8266/modmachine: Timer: Add ONE_SHOT and PERIODIC symbolic constants.Paul Sokolovsky
2016-03-04esp8266/modmachine: Basic implementation of Timer for OS virtual timers.Paul Sokolovsky
2016-03-04esp8266: Add time.{sleep_ms,sleep_us,ticks_ms,ticks_us,ticks_diff}.Damien George
Framework for time.ticks_cpu added, but not implemented.
2016-03-02esp8266: Add network.ifconfig().Damien George
2016-02-08esp8266/modesp: Implement flash_write(), flash_erase().Alex March
2015-12-27esp8266: mac() function belongs to network module per the latest API.Paul Sokolovsky
2015-11-24esp8266/modesp: Implement flash_read(offset, size_bytes) function.Paul Sokolovsky
Based on vendor API documentation, untested on real hardware.
2015-09-15esp8266: Added wlan.isconnected() to maintain parity with other ports.Bill Owens
2015-08-29esp8266: Added wifi_mode() to read and set WiFi operating mode.Bill Owens
2015-06-20esp8266: Move status() from esp module to networkBill Owens
2015-06-12esp8266: Add skeleton "network" module.Paul Sokolovsky
MicroPython "network" module interface requires it to contains classes to instantiate. But as we have a static network interace, make WLAN() "constructor" just return module itself, and just make all methods module-global functions.
2015-05-28esp8266: Add a bunch of miscellaneous methodsJosef Gajdusek
2015-05-28esp8266: Add pyb.ADC classJosef Gajdusek
2015-05-26esp8266: Add uos moduleJosef Gajdusek
Currently implements only .uname()
2015-05-13esp8266: Add utime and pyb.RTCJosef Gajdusek
2015-05-06esp8266: Add .onsent callback supportJosef Gajdusek
The function passed to socket.onsent() gets called after data is succesfully sent by the socket.
2015-05-04esp8266: Add esp.socket class, with ESP-style socket functionality.Josef Gajdusek
* UDP currently not supported * As there is no way (that I know of) the espconn_regist_connectcb() callback can recognize on which socket has the connection arrived, only one listening function at a time is supported
2015-05-03esp8266: Export station status() constantsJosef Gajdusek
2015-02-13esp8266: Add basic pyb.Pin class; supports output mode only.Damien George
2015-02-05esp8266: modesp: Add status() function for connection status.Paul Sokolovsky
2015-02-03esp8266: modesp: Add disconnect() function to disconnect from WiFi AP.Paul Sokolovsky
2015-02-01esp8266: modesp: Add connect() function to connect to WiFi AP.Paul Sokolovsky