/AliOS-Things-master/components/py_engine/engine/tools/mpremote/ |
A D | README.md | 10 This will automatically connect to the device and provide an interactive REPL. 14 mpremote connect <device> -- connect to given device 39 - a0, a1, a2, a3: connect to `/dev/ttyACM?` 40 - u0, u1, u2, u3: connect to `/dev/ttyUSB?` 41 - c0, c1, c2, c3: connect to `COM?` 51 "c33": "connect id:334D335C3138", 60 mpremote connect /dev/ttyUSB0 repl
|
/AliOS-Things-master/components/amp/libjs/lib/ |
A D | wifi.js | 20 function connect(options) { function 24 __native.WIFI.connect(options, function(state) { 45 connect,
|
A D | bt_host.js | 49 let result = __native.BT_HOST.start_adv(params, function(conn_handle, connect){ argument 50 console.log('connect callback'+conn_handle+connect); 51 if (connect) {
|
A D | netmgr.js | 54 connect(options) { method in netMgr 63 __native.NETMGR.connect(this.dev_handler, options, function(status) {
|
A D | network.js | 71 connect(options) { method in netWork 79 __native.NETMGR.connect(this.dev_handler, options, function(status) {
|
/AliOS-Things-master/components/py_engine/tests/haas/HaaS100/python-apps/wifi/ |
A D | main.py | 26 net.connect({'ssid':sys.argv[1],'password':sys.argv[2]}) 28 net.connect("KIDS","12345678")
|
/AliOS-Things-master/components/py_engine/tests/haas/HaaS200/python-apps/wifi/ |
A D | main.py | 26 net.connect({'ssid':sys.argv[1],'password':sys.argv[2]}) 28 net.connect("KIDS","12345678")
|
/AliOS-Things-master/components/py_engine/tests/haas/HaaSEdu/python-apps/wifi/ |
A D | main.py | 26 net.connect({'ssid':sys.argv[1],'password':sys.argv[2]}) 28 net.connect("KIDS","12345678")
|
/AliOS-Things-master/components/amp-utility/python/ |
A D | network.py | 18 def connect(self,data): member in NetWorkClient 55 nm.connect(data['ssid'],data['password'])
|
A D | iot.py | 184 def connect(self): member in Device 188 _lk.connect()
|
/AliOS-Things-master/components/py_engine/tests/esp32/ |
A D | resolve_on_connect.py | 37 s.connect(("micropython.org", 80)) 47 s.connect(("nonexistent.example.com", 80))
|
/AliOS-Things-master/components/py_engine/framework/ |
A D | network.py | 39 def connect(self,data): member in NetWorkClient 88 return nm.connect(data['ssid'],data['password'])
|
A D | iot.py | 214 def connect(self): member in Device 243 _lk.connect()
|
/AliOS-Things-master/components/amp/jslib/src/ |
A D | network.js | 88 if (NETMGR.connect(this.dev_handler, cb_.bind(this)) !== 0) { 120 connect(options) { method in netWork 133 NETMGR.connect(this.dev_handler, options, function (status) {
|
A D | netmgr.js | 53 connect(options) { method in netMgr 62 NETMGR.connect(this.dev_handler, options, function (status) {
|
A D | bt_host.js | 48 let result = BT_HOST.start_adv(params, function(conn_handle, connect){ argument 50 if (connect) {
|
/AliOS-Things-master/components/py_engine/modules/ble/ |
A D | bt_host_adapter.c | 121 int32_t connect; in bt_host_adapter_event_callback() local 124 connect = 1; in bt_host_adapter_event_callback() 129 connect = 0; in bt_host_adapter_event_callback() 132 py_ble_event_notify(e->conn_handle, connect); in bt_host_adapter_event_callback()
|
/AliOS-Things-master/components/amp/engine/duktape_engine/addons/wireless/bt_host/ |
A D | bt_host_adapter.c | 108 int32_t connect; in bt_host_adapter_event_callback() local 111 connect = 1; in bt_host_adapter_event_callback() 114 connect = 0; in bt_host_adapter_event_callback() 117 native_bt_host_conn_handle(e->conn_handle, connect); in bt_host_adapter_event_callback()
|
/AliOS-Things-master/components/amp/engine/quickjs_engine/addons/wireless/bt_host/ |
A D | bt_host_adapter.c | 123 int32_t connect; in bt_host_adapter_event_callback() local 126 connect = 1; in bt_host_adapter_event_callback() 129 connect = 0; in bt_host_adapter_event_callback() 132 native_bt_host_conn_handle(e->conn_handle, connect); in bt_host_adapter_event_callback()
|
/AliOS-Things-master/components/py_engine/engine/extmod/nimble/ |
A D | modbluetooth_nimble.c | 456 DEBUG_printf("central_gap_event_cb: connect: status=%d\n", event->connect.status); in central_gap_event_cb() 457 if (event->connect.status == 0) { in central_gap_event_cb() 459 ble_gap_conn_find(event->connect.conn_handle, &desc); in central_gap_event_cb() 1182 DEBUG_printf("peripheral_gap_event_cb: status=%d\n", event->connect.status); in peripheral_gap_event_cb() 1183 if (event->connect.status == 0) { in peripheral_gap_event_cb() 1185 ble_gap_conn_find(event->connect.conn_handle, &desc); in peripheral_gap_event_cb() 1475 …hannel_event: connect: conn_handle=%d status=%d\n", event->connect.conn_handle, event->connect.sta… in l2cap_channel_event() 1476 chan->chan = event->connect.chan; in l2cap_channel_event() 1478 ble_l2cap_get_chan_info(event->connect.chan, &info); in l2cap_channel_event() 1479 if (event->connect.status == 0) { in l2cap_channel_event() [all …]
|
/AliOS-Things-master/components/amp_adapter/platform/aos/network/ |
A D | aos_httpc.c | 16 return connect(fd, name, namelen); in aos_httpc_socket_connect()
|
/AliOS-Things-master/components/py_engine/tests/net_hosted/ |
A D | connect_nonblock.py | 13 s.connect(peer_addr)
|
A D | ssl_getpeercert.py | 13 s.connect(peer_addr)
|
/AliOS-Things-master/solutions/javascript_demo/network/ |
A D | wifi.js | 9 network.connect({
|
/AliOS-Things-master/components/amp/example-js/ |
A D | wifi.js | 3 WIFI.connect("aiot", "iot123456", function(){
|