<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>MCX MicrocontrollersのトピックNeed sample code for  lighting control from Mobile through WiFi for RW612.</title>
    <link>https://community.nxp.com/t5/MCX-Microcontrollers/Need-sample-code-for-lighting-control-from-Mobile-through-WiFi/m-p/2392985#M5614</link>
    <description>&lt;P&gt;Dear Sir,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We have FRDM -RW612 ,we are planning to use the RW612 as WiFi Rx for getting commands from mobile Wi Fi &amp;amp; control lighting.&lt;/P&gt;&lt;P&gt;Please check if you can send the sample code for the same.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Seema Joshi&lt;/P&gt;</description>
    <pubDate>Thu, 09 Jul 2026 10:13:18 GMT</pubDate>
    <dc:creator>SeemaJoshi</dc:creator>
    <dc:date>2026-07-09T10:13:18Z</dc:date>
    <item>
      <title>Need sample code for  lighting control from Mobile through WiFi for RW612.</title>
      <link>https://community.nxp.com/t5/MCX-Microcontrollers/Need-sample-code-for-lighting-control-from-Mobile-through-WiFi/m-p/2392985#M5614</link>
      <description>&lt;P&gt;Dear Sir,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We have FRDM -RW612 ,we are planning to use the RW612 as WiFi Rx for getting commands from mobile Wi Fi &amp;amp; control lighting.&lt;/P&gt;&lt;P&gt;Please check if you can send the sample code for the same.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Seema Joshi&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jul 2026 10:13:18 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCX-Microcontrollers/Need-sample-code-for-lighting-control-from-Mobile-through-WiFi/m-p/2392985#M5614</guid>
      <dc:creator>SeemaJoshi</dc:creator>
      <dc:date>2026-07-09T10:13:18Z</dc:date>
    </item>
    <item>
      <title>Re: Need sample code for  lighting control from Mobile through WiFi for RW612.</title>
      <link>https://community.nxp.com/t5/MCX-Microcontrollers/Need-sample-code-for-lighting-control-from-Mobile-through-WiFi/m-p/2393064#M5616</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I can help by suggesting you a base project, from which you can start.&lt;/P&gt;&lt;P&gt;For FRDM-RW612 with Wi-Fi, you can use &lt;A href="https://github.com/cesanta/mongoose" target="_self"&gt;Mongoose Networking Library&lt;/A&gt; as an HTTP/WebSocket webserver once the Wi-Fi interface is up.&lt;/P&gt;&lt;P&gt;Below is a MCUXpresso + FreeRTOS example generated by Mongoose Wizard for RW612, that you can quickly try:&lt;/P&gt;&lt;P&gt;&lt;A href="https://mongoose.ws/wizard/#/output?board=rw612-w&amp;amp;ide=MCUXpresso&amp;amp;rtos=FreeRTOS&amp;amp;file=README.md" target="_blank"&gt;https://mongoose.ws/wizard/#/output?board=rw612-w&amp;amp;ide=MCUXpresso&amp;amp;rtos=FreeRTOS&amp;amp;file=README.md&lt;/A&gt;&lt;/P&gt;&lt;P&gt;This example is for a simple web dashboard, but it already gives you a solid starting point with the Wi-Fi + Mongoose integration. To download it, open the link, go to the &lt;STRONG&gt;Settings&lt;/STRONG&gt; tab, choose a local directory in the &lt;STRONG&gt;Source Code Generator&lt;/STRONG&gt; section, then click the blue &lt;STRONG&gt;Generate C/C++ code button&lt;/STRONG&gt; in the upper-right corner. Then open it with MCUXpresso. Go to &lt;EM&gt;mongoose/mongoose_glue.h&lt;/EM&gt;&amp;nbsp; file and change the values for WIZARD_WIFI_NAME and WIZARD_WIFI_PASS to set up your Wi-Fi credentials. Then, build the project, flash it to the board and watch the logs on the serial, it should print an IP address.&lt;/P&gt;&lt;P&gt;For your control lighting application, you could then add HTTP endpoints or a WebSocket handler, for example:&lt;/P&gt;&lt;P&gt;&lt;EM&gt;GET /light/on&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;GET /light/off&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;POST /light&lt;/EM&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Inside those handlers, call your board-specific GPIO/PWM&amp;nbsp;control lighting code. The mobile app can then send commands to those endpoints over Wi-Fi.&lt;/P&gt;&lt;P&gt;Mongoose documentation is &lt;A href="https://mongoose.ws/docs/getting-started/introduction/" target="_self"&gt;here&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;Heads up: I am part of the Mongoose development team. Hope this helps.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jul 2026 12:39:48 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCX-Microcontrollers/Need-sample-code-for-lighting-control-from-Mobile-through-WiFi/m-p/2393064#M5616</guid>
      <dc:creator>MStackDev_376</dc:creator>
      <dc:date>2026-07-09T12:39:48Z</dc:date>
    </item>
    <item>
      <title>Re: Need sample code for  lighting control from Mobile through WiFi for RW612.</title>
      <link>https://community.nxp.com/t5/MCX-Microcontrollers/Need-sample-code-for-lighting-control-from-Mobile-through-WiFi/m-p/2393187#M5619</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope you are doing well. I would recommend checking our available examples from our different repositories, such as our SDK, Zephyr and Matter repositories.&lt;/P&gt;
&lt;P&gt;All these resources can be used with our &lt;A href="https://www.nxp.com/design/design-center/software/development-software/mcuxpresso-software-and-tools-/mcuxpresso-for-visual-studio-code:MCUXPRESSO-VSC" target="_blank"&gt;MCUXpresso for Visual Studio Code | NXP Semiconductors&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;Also, I would recommend checking other Demo Applications from our &lt;A href="https://mcuxpresso.nxp.com/appcodehub" target="_blank"&gt;Application Code Hub&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Ricardo&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jul 2026 17:05:56 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCX-Microcontrollers/Need-sample-code-for-lighting-control-from-Mobile-through-WiFi/m-p/2393187#M5619</guid>
      <dc:creator>Ricardo_Zamora</dc:creator>
      <dc:date>2026-07-09T17:05:56Z</dc:date>
    </item>
  </channel>
</rss>

