Search the Community
Showing results for tags 'smartconfig'.
-
Hello, I want CC3200 to act as an access point and server a webpage to give SSID and Password of a router. For this I am using SmartConfigexample in Energia. When I upload the code then it only shows " Starting WiFi SmartConfig" on Serial monitor. No AP appears. Is there something I might be missing? What should be the jumper setting while running this application on CC3200? Is there any relevant tutorial available for this example?
-
when we use startSmartConfig function from wifi library.it will crash after init function. review the WiFi.cpp code . we found some bug at the code. fix the code below. - if(sl_WlanPolicySet(SL_POLICY_CONNECTION, - SL_CONNECTION_POLICY(1,0,0,0,1), - &policyVal, - 1 /*PolicyValLen*/) < 0) return -1; + if(sl_WlanPolicySet(SL_POLICY_CONNECTION,SL_CONNECTION_POLICY(1,0,0,0,1),&policyVal,1 ) < 0) { /*PolicyValLen*/ + return -1; - if(sl_WlanPolicySet(SL_POLICY_CONNECTION, - SL_CONNECTION_POLICY(1,0,0,0,0), - &policyVal, -
-
Hi there, I am trying to use the WiFi.startSmartConfig() feature for the CC3000 booster pack on a TIVA C launchpad, but I can't seem to get it to work with energia (works fine with TI examples on code composer). I'm using smartconfigAES16 as the key and home_assistant as the device name, is there an example of how to use smartConfig with energia? I currently have it running in the setup() function, but it seems to get caught within the WiFi.startSmartConfig() function. I'm using the java applet http://www.ti.com/ww/en/wifi/smartConfig/ for the smartconfig. Thank you in advance!