Home
last modified time | relevance | path

Searched refs:connect (Results 1 – 25 of 107) sorted by relevance

12345

/AliOS-Things-master/components/py_engine/engine/tools/mpremote/
A DREADME.md10 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 Dwifi.js20 function connect(options) { function
24 __native.WIFI.connect(options, function(state) {
45 connect,
A Dbt_host.js49 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 Dnetmgr.js54 connect(options) { method in netMgr
63 __native.NETMGR.connect(this.dev_handler, options, function(status) {
A Dnetwork.js71 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 Dmain.py26 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 Dmain.py26 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 Dmain.py26 net.connect({'ssid':sys.argv[1],'password':sys.argv[2]})
28 net.connect("KIDS","12345678")
/AliOS-Things-master/components/amp-utility/python/
A Dnetwork.py18 def connect(self,data): member in NetWorkClient
55 nm.connect(data['ssid'],data['password'])
A Diot.py184 def connect(self): member in Device
188 _lk.connect()
/AliOS-Things-master/components/py_engine/tests/esp32/
A Dresolve_on_connect.py37 s.connect(("micropython.org", 80))
47 s.connect(("nonexistent.example.com", 80))
/AliOS-Things-master/components/py_engine/framework/
A Dnetwork.py39 def connect(self,data): member in NetWorkClient
88 return nm.connect(data['ssid'],data['password'])
A Diot.py214 def connect(self): member in Device
243 _lk.connect()
/AliOS-Things-master/components/amp/jslib/src/
A Dnetwork.js88 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 Dnetmgr.js53 connect(options) { method in netMgr
62 NETMGR.connect(this.dev_handler, options, function (status) {
A Dbt_host.js48 let result = BT_HOST.start_adv(params, function(conn_handle, connect){ argument
50 if (connect) {
/AliOS-Things-master/components/py_engine/modules/ble/
A Dbt_host_adapter.c121 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 Dbt_host_adapter.c108 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 Dbt_host_adapter.c123 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 Dmodbluetooth_nimble.c456 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 Daos_httpc.c16 return connect(fd, name, namelen); in aos_httpc_socket_connect()
/AliOS-Things-master/components/py_engine/tests/net_hosted/
A Dconnect_nonblock.py13 s.connect(peer_addr)
A Dssl_getpeercert.py13 s.connect(peer_addr)
/AliOS-Things-master/solutions/javascript_demo/network/
A Dwifi.js9 network.connect({
/AliOS-Things-master/components/amp/example-js/
A Dwifi.js3 WIFI.connect("aiot", "iot123456", function(){

Completed in 54 milliseconds

12345