FMUSER Wirless Transmit Video And Audio More Easier !

[email protected] WhatsApp +8618078869184
Language

    As long as a single chip can become a smart family, do you believe?

     

    "Preface As mentioned in smart families, everyone may first think of the cattle products, or innovative products. Think that it feels very complicated, some consolidation machines, some use of the Raspberry Pie, with Arduino, no matter what, all the servers are controlled, such as the Yeelink platform, Tencent's intelligent hardware platform, etc. In fact, real realization, did not think about it, we can do only with a small single-chip microcomputer. I. MCU implementation web server Discuss articles with single-chip to implement web servers can also find a few articles through Baidu, but more detailed implementation methods are not found. Here is that there are two ideas to complete, one is a wired LAN module, such as W5500, this module It itself has part of the web service, which is relatively simple, but can only be accessed based on LAN. The other is to complete the network module by STM32. The simplest method I can think of is to be implemented with STM32 + ESP8266. Based on the first method, I feel that the performance of the module is relatively large, limited to module, no development. So considered the use of the second method. In this method, some people use Arduino to complete, this is based on C. In addition, consider using micropython, which can be implemented directly with Python. Here is the details of TPyboardv202 (some treasures, 30 yuan). II. Simulation to realize the family smart home control platform Because I don't want to do a complicated experiment, I just want to simulate the effect. In the process of the entire module, I chose the TPyboardv202 development board to do the main control board, use a light-emitting diode to simulate a table lamp (reality, here In fact, you can use a relay to control the power of the other equipment), with a DC small motor to add mini fan blades to the analog electric fan. The entire implementation also uses a triode (S9014, NPN) to control DC motor. 3. Hardware construction and connection 1, use of the light emitting diode The light emitting diode is relatively simple, directly watching the two "legs", the length of the length is the positive electrode, which is negative. 2, how to use DC small motor In the DC small motor, the two terminals A and B in the red frame, no matter how the positive or negative pole can, only the direction of rotation is different. I used the B-terminal to access the positive electrode, just right clockwise. 3, method of use of triode S9014 (NPN) This time we use the amplification and switching function of S9014, the collector is connected to the 3.3V pin of the V202, and the emitter is accessed into a certain end of the motor, and the emitter and the collector are turned on by means of the base high and low level. Thereby control the DC motor rotation or stop. Let's introduce the wiring method. Triar (S9014) TPyboard V202 DC Small Motor Collecting electricity 3.3V - Base G5 - Emitter - B - GND A end TPYBOARD V202 LED G4 positive GND negative My physical connection diagram Implement web server with micropython First, edit a main.py file. V202 boot self-start main.py file Try: importsocket assocket except: importsocket importnetwork firemachine import_flag = pin (2, pin.out) # ESP8266 Module Small light high level: low level: bright LED = Pin (4, pin.out) # 发光Diode control pin motor = pin (5, pin.out) #DC motor control pin # initializing LED.LOW () motor.low () LED_Flag.high () DEFDO_CONNECT (SSID, PWD): STA_IF = NetWork. WLAN (NetWork.sta_if) #sta mode STA_IF.Active (false) ifNotsta_if.Ig.isconnected (): # Judging whether to connect STA_IF.Active (TRUE) Sta_if.connect (SSID, PWD) #ssid: WiFi Name PWD: WiFi Password Whilenotsta_if. Isconnected (): passifsta_if.isconnected (): returnsta_if.ifconfig () [0] Defmain (IP_, DEV_DATA, LOGIN_DATA, NAME, PWD): S = Socket.Socket () Ai = Socket.GetadDrinfo (IP_, 80) AddR = Ai [0] [- 1] s.setsockopt (socket.sol_socket, socket.so_reuseaddr, 1) s.bind (add) s.Listen (5) LED_FLAG.LOW () # s_data = login_datawhiletrue: Res = S.Accept ( ) client_s = res [0] client_addr = res [1] led_flag.high () REQ = client_s.readline () while () "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" " ": Break # Print (h) REQ + = (H.Decode ('UTF-8'). Lower ()) P RINT ("Request:") Req = Req.Decode ('UTF-8'). Lower (). split ('RN') #http header resolution REQ_DATA = Req [0] .lstrip (). Rstrip () .replace ('', ') Print (REQ_DATA) IFREQ_DATA.FIND (' Favicon.ico ')> - 1: Client_s.close () Continueelse: iflen (Req_data) <= 12: # Description is the first visit, Enter login.htmls_data = login_data else: Req_data = req_data.replace ('get /?', '') .Replace ('http / 1.1', '') _name = req_data.find ('name') _PWD = Req_data.find ('PWD') if_name> - 1AND_PWD> - 1: # 是 用户 用户 登 i i i _>>>>>>>>>>>>>>:>>:::>>::::>>>::>:>>:: () f = Open ('five.html', 'r') s_data = f.read () f.close () Print ('login fail!') Else: # 是 是 控制 控制 控制 = Req_data.find ('LED = ') if_index> - 1: s_data = dev_data led_val = Req_data [_DEX + 4: _INDEX + 6] .lstrip (). Rstrip () Print (' LED: ', LED_VAL) IFLED_VAL ==' on ': Led.Value (1) ELSE: LED.VALUE (0) # Judging whether it is a control motor _INDEX = Req_data.find ('motor =') if_index> - 1: s_data = dev_data motor_val = req_data [_Index + 6: _index + 8] .lstrip (). Rstrip () Print ('motor_val:', motor_val) ifmotor_val == 'ON ': Motor.Value (1) Else: motor.value (0) Print (' ----------- ') Client_s.send (s_data) client_s.close () LED_FLAG.LOW () f = Open ('Device.html', 'R') dev_html = f.read () f.close () f = Open ('login.html', 'r') login_html = f.read () f.close () F = Open ('info.txt', 'r') info = f.read () f.close () name = info.split (',') [0] .lstrip (). rstrip () PWD = INFO .split (',') [1] .lstrip (). Rstrip () Print ('name:', name) Print ('PWD:', PWD) Myip_ = do_connect ('Essid', 'PWD') # home Network WiFi Name and Password Print (myip_) main (myip_, dev_html, login_html, name, pwd) Login.html login page Smart Home Network </ Title> <metaname = "" Viewport "" Content = "" Width = device-width, Initial-Scale = 1 "" /> <styletype = "" Text / CSS ""> h2 {margin-top: 4%; margin-bottom: 40px;} </ style> </ head> <body> <center> <H2> Welcome to smart home network platform </ h2> <formaction = "/" "method =" "accept-charset =" "UTF-8"> <P> User Name: <inputtype = "" name "" name = "" "" "/> </ p > <p> password: <inputtype = "" password "" name = "" "/> </ p> <inputtype =" "" "" Value = "" /> </ form> </ Center> </ body> </ html> Device.html Control Page <html> <head> <title> Smart Home Network Platform </ Title> <metaname = "" Viewport "" Content = "" width = device-width, initial-scale = 1 "" /> <styletype = "" Text / CSS ""> h2 {margin-top: 4%; margin-bottom: 40px;} </ style> </ head> <body> <center> <h2> Welcome Smart Home Network - Control Platform </ h2> <formaction = "" "method =" "get" "accept-charset =" "UTF-8"> <p> lighting: <inputtype = "Submit" "value =" "on" "name =" "LED" "/> <inputtype =" "" "value =" "n" "name =" "LED" /> <inputtype = "Submit" "Value =" "On" "name =" "motor" "/>" "" "" value = "" OFF "" name = "" "" "" "" "" "" "" "" "" "" / Body> </ html> Fail.html Login Error page (that is, makes Login.html change a little more) <html> <head> <title> Smart Home Network </ Title> <metaname = "" Viewport "" Content = "" Width = device-width, Initial-Scale = 1 "" /> <styletype = "" Text / CSS ""> h2 {margin-top: 4%; margin-bottom: 40px;} </ style> </ head> <body> <center> <H2> Welcome to smart home network platform </ h2> <formaction = "/" "Method =" "get" "Accept-charset =" "UTF-8"> <PStyle = "" Color: Red "> User name or password error! </ p> <p> User Name: <InputType = "Text" "Name = "name" "/> </ p> <p> password: <inputtype =" "password" "name =" "pwd" /> </ p> <inputtype = "" Submit "" Value = " "Login" /> </ form> </ center> </ body> </ html> Info.txt This is the username and password (English comma separated) with files, the front is the username, and the password is behind. The username and password here are used to log in to our smart home control platform. Admin, 123456 5. Program download test Use the MicropythonfileUPloader tool to download the source code to the V202. Tool Download address: http://tpyboard.com/download/tool/170.html 1. Use the USB cable to access the V202 to the computer, open the device manager, and view the loaded port. I am com44 ※ If the driver installation fails, you can download the CH340 driver, manually install it. CH340 driver download address: http://tpyboard.com/download/drive/163.html 2. Open the MicropythonfileUPloader selection port and click [Open]. 3, cancel the hook of [Autorun], click on the red box's folder icon, select the source code, click [Send] Waiting to send success. 4. Download the above source file to V202. After the download is complete, click [RUN / RESET] to start executing the code. 5. After starting running, printing in the red box is the username and password we store in Info.txt, this can be customized. 6, the following pink box prints the IP address obtained from the router from the router, as long as the IP address is printed, the description will successfully access the network. My V202 acquired IP address is 192.168.1.192. 7. Here, our web server is completed. 6. Use of smart home network platform 1. In the home LAN, we can choose a PC or mobile phone, open 192.168.1.192 through the browser, open 192.168.1.192. 2. Default User Name Admin Password 123456, you can modify the info.txt file. (1) Enter the wrong username and password will enter the error interface. (2) Enter the correct and enter the control platform. 3, next, we can control the lights and small fans through the web page, see my experimental renderings. Here, I just made an instance, the time limit, didn't do more in-depth development. Everyone can go deep into their own creativity. If you can set an external network IP via the router so that you can access from the external network to complete the control of the external network. Original link: https://www.eeboard.com/news/scm-2/2/ Search for the panel network, pay attention, daily update development board, intelligent hardware, open source hardware, activity and other information can make you master. Recommended attention! [WeChat scanning picture can be paid directly] " <div class="page"></div> <script type="text/javascript" src="/template/js/func.js"></script> <div class="page"><p> </p> <p style="text-align: left;"><img alt="" src="http://fmuser.org/images/productfoot/2-FMUSER-Hotel-IPTV-system1-1000.png" width="700" height="379" /></p> <p style="text-align: left;"><img alt="" src="http://fmuser.org/images/productfoot/3-FMUSER-100-channels-DVB-T2-UHF-TV-broadcast-system-CA-encrypted-card-1000.png" width="700" height="539" /></p> <p style="text-align: left;"><img alt="" src="http://fmuser.org/images/productfoot/4-fmuser-Headend-equipment-list-1000.png" width="700" height="905" /></p> <p> </p> <p> </p> <p> </p></div> <div class="comment w ov huibg mt20"> <dl class="padlr10"> <dt class="fl w ov bold"><a href="/plus/comment/?id=3410">List all Question</a></dt> <!--最新评论,JS调用 by shovi.cn 20081209--> <div class="list"> <div class="commentbox"><span id="comment_ajax"></span><script>commentAJAX("3410");</script></div> </div> <!--发表评论 by shovi.cn 20081209--> <div class="post"> <form action="/plus/comment/save.asp" method="post"> <input type="hidden" name="id" id="id" value="3410"> <p for="user">Nickname</p><input name="user" id="user" type="text" class="input" /> <p for="email">Email</p><input name="email" id="email" type="text" class="input" /> <!--<p for="rates">Rate</p> <select name="rates" id="rates"> <option value="5" selected>* * * * *</option> <option value="4">* * * *</option> <option value="3">* * *</option> <option value="2">* *</option> <option value="1">*</option> </select>--> <p for="comment_content">Questions</p><textarea name="content" id="comment_content" class="textarea" onFocus="show('sn_div')"></textarea> <span id="sn_div" style="display:none;height:0;overflow:hidden"> <p>Verify ID</p><input name="sn" id="sn" type="text" class="input" /> <img src="/plus/comment/code.asp" title="Reload" style="cursor:hand;" onClick="javascript:reloadcode();" id="sn_code" /> </span> <p class="mt10"><input type="submit" name="submit" id="submit" class="btn font16 fff mouse" value="Post" /></p> <span id="comment_tip" style="color:#AF0000;font-size:14px;margin:0;padding:0;display:none;"> </span> </form> </div> </dl> </div> <div class="prenext w ov mt10"><span class="pre fl"><< <a href='/news/Electron/Single-chip-wireless-communication-scheme-ATRCB256RFR2-XPRO-development-board-evaluation.html'>Single chip wireless communication scheme --ATRCB256RFR2-XPRO development board evaluation</a></span><span class="next fr"><a href='/news/Electron/TCL-flagship-TV-XESSX3-evaluation-almost-perfect-new-flagship.html'>TCL flagship TV XESSX3 evaluation almost perfect new flagship</a> >></span></div> <p class="mt10 font16 bold">Our other product:</p><p> <table style="table-layout: fixed;" class="tablefoot" width="692" height="527" cellspacing="0" cellpadding="0" border="0"> <tbody> <tr> <td style="word-wrap: break-word" width="33%" valign="middle"> <div id="wrap"><a href="http://www.fmuser.org/Solutions/Lightning-Protection-System/Tower-Antennas-Professional-Lightning-Protection-Complete-Kit-System/"><img style="width: 100%" src="http://www.fmuser.org/uploadfile/202010/27/1723188049.jpg" alt="" width="220" height="190" align="middle" /></a></div> <div style="text-align: center;"> <a href="http://www.fmuser.org/Solutions/Lightning-Protection-System/Tower-Antennas-Professional-Lightning-Protection-Complete-Kit-System/"><span style="font-size: 12px;">Professional lightning protection system for Tower</span></a></div> </td> <td style="overflow-wrap: break-word; text-align: center;" width="33%" valign="middle"> <p><a href="http://fmuser.org/broadcast-studio-equipment/radio-studio-equipment/FMUSER-BS1M-FM-Radio-Station-Equipment-Package-FM-transmitter-FM-Radio-Station-1000W-1KW-transmitter-live-news.html"><img style="width: 100%" src="http://fmuser.org/uploadfile/202205/19/1527477181.png" alt="" width="220" height="220" align="middle" /></a><a href="http://fmuser.org/broadcast-studio-equipment/radio-studio-equipment/FMUSER-BS1M-FM-Radio-Station-Equipment-Package-FM-transmitter-FM-Radio-Station-1000W-1KW-transmitter-live-news.html"><span style="font-size: 12px;">Professional FM Radio Station Equipment Package</span></a></p> <p> </p> </td> <td style="word-wrap: break-word" width="33%" valign="middle"><a href="http://fmuser.org/fm-transmitter/50---5kw-fm-transmitter/FMUSER-FU1000C-1000W-FM-Transmitter-With-USB-Audio-Input-Interface.html"><img style="width: 100%" src="http://fmuser.org/uploadfile/202106/4/1533477885.jpg" alt="" width="220" height="220" align="middle" /></a><br /> <div id="wrap" style="text-align: center;"><a href="http://fmuser.org/fm-transmitter/50---5kw-fm-transmitter/FMUSER-FU1000C-1000W-FM-Transmitter-With-USB-Audio-Input-Interface.html"><span style="font-size: 12px;">FMUSER FU-1000C 1000W FM Transmitter With USB Audio Input Interface</span></a></div> </td> </tr> <tr> <td style="word-wrap: break-word" width="33%" valign="middle"><a href="http://fmuser.org/fm-transmitter/50---5kw-fm-transmitter/FMUSER-200W-FM-Radio-Broadcasting-Package-FU200A-FM-Transmitter-Dipole-Antenna-20M-Coaxial-Cable.html"><img style="width: 100%" src="http://fmuser.org/uploadfile/202106/4/105166597.jpg" alt="" width="220" height="220" align="middle" /></a><br /> <div id="wrap" style="text-align: center;"><a href="http://fmuser.org/fm-transmitter/50---5kw-fm-transmitter/FMUSER-200W-FM-Radio-Broadcasting-Package-FU200A-FM-Transmitter-Dipole-Antenna-20M-Coaxial-Cable.html"><span style="font-size: 12px;"> FMUSER 200W FM Radio Broadcasting Package</span></a></div> <div style="text-align: center;"> </div> </td> <td style="word-wrap: break-word" width="33%" valign="middle"> <p style="text-align: center;"><a href="http://fmuser.org/Solutions/IPTV-System-Solution/Hotel-IPTV-Solution/"><img style="width: 100%" src="http://fmuser.org/images/iptv_2.png" alt="" width="220" height="220" align="middle" /></a></p> <p style="text-align: center;"><a href="http://fmuser.org/Solutions/IPTV-System-Solution/Hotel-IPTV-Solution/"><span style="font-size: 12px;">Hotel IPTV Solution</span></a></p> <p style="text-align: center;"> </p> </td> <td style="word-wrap: break-word" width="33%" valign="middle"><a href="http://fmuser.org/fm-transmitter/50---5kw-fm-transmitter/FMUSER-FSN1000T-1KW-FM-Radio-Broadcast-Transmitter-Sent-A-Power-Meter.html"><img style="width: 100%" src="http://fmuser.org/images/buy2.png" width="220" height="220" align="middle" alt="" /></a><br /> <div style="text-align: center;"><span style="font-size: 12px;"> </span><a href="http://fmuser.org/fm-transmitter/50---5kw-fm-transmitter/FMUSER-FSN1000T-1KW-FM-Radio-Broadcast-Transmitter-Sent-A-Power-Meter.html"><span style="font-size: 12px;">FMUSER FSN-1000T V5.0 1KW FM Radio Broadcast Transmitter</span></a></div> </td> </tr> </tbody> </table> </p> </div> </div> <div style="display:none;" id="_artinfo"> seen <span><script src="/plus/count/js.asp?id=3410" language="javascript"></script></span> Post time <span>21/10/18</span> </div> <script type="text/javascript"> $(function(){ $(".maxpic img").each(function(){ $(this).css({"height":"auto"}); }) }) </script> <div class="cleft fl pad20 posi"><em class="ab"></em> <div class="cleft1 w ov"> <ol class="padlr10 ov"> <p>Enter email  to get a surprise</p> <div class="cl"></div> <form action="/down.asp" method="post" class="form w ov mt10 posi"> <input name="email" type="text" class="ipt baibg" id="keyword" value="" /><button type="submit" class="btn ab mouse font14 bold fff">Subscribe</button> </form> </ol> <div class="cl"></div> <ol class="padlr10 ov mt10"> <div class="nav down" style="display: none"> <div class="title">Products</div> <div class="box"> <div class="flb"> <ul><a href="/IPTV-Encoder/IPTV-Streaming-Encoder/">IPTV Encoder</a></ul> </div> <div class="flb"> <ul><a href="/fm-transmitter/">FM Transmitter </a></ul> </div> <div class="flb"> <ul><a href="/tv-transmitter/">TV Transmitter</a></ul> </div> <div class="flb"> <ul><a href="/antenna-&-splitter/">Antenna & Splitter</a></ul> </div> <div class="flb"> <ul><a href="/Studio-Equipment/">Broadcast Studio Equipment</a></ul> </div> <div class="flb"> <ul><a href="/Accessories/">Accessories</a></ul> </div> <div class="flb"> <ul><a href="/FM-transmitter-parts/">FM Transmitter Parts</a></ul> </div> <div class="flb"> <ul><a href="/dtv-headend-equipment/">DTV Headend Equipment</a></ul> </div> <div class="flb"> <ul><a href="/product/AM-Transmitter/">AM Transmitter</a></ul> </div> <div class="flb"> <ul><a href="/FM-Radio/">FM Receiver </a></ul> </div> <div class="flb"> <ul><a href="/product/Wholesale-FM-Transmitters/">Wholesale FM Transmitters</a></ul> </div> <div class="flb"> <ul><a href="/other/">Other</a></ul> </div> </div> </div> <div class="nav down"> <div class="title">Products</div> <div class="protit"><dl><dt class="t bold"><a href="javascript:;">IPTV Encoder</a> </dt><dt class="sub"><a class="s" href="/IPTV-Encoder/One-Way-IPTV-Encoder/">· One Way IPTV Encoder</a><a class="s" href="/IPTV-Encoder/Professinal-IPTV-Encoder/">· Professinal IPTV Encoder</a> <dt class="t bold"><a href="javascript:;">FM Transmitter </a> </dt><dt class="sub"><a class="s" href="/fm-transmitter/0---30w-fm-transmitter/">· 0-30w FM Transmitter</a><a class="s" href="/fm-transmitter/50---5kw-fm-transmitter/">· 50-5kw FM Transmitter</a><a class="s" href="/fm-transmitter/30---1kw-rds-fm-transmitter/">· 30-5kw RDS FM transmitter</a><a class="s" href="/fm-transmitter/5---10kw-dsp-fm-transmitter/">· 5-10kw DSP DDS FM transmitter</a> <dt class="t bold"><a href="javascript:;">TV Transmitter</a> </dt><dt class="sub"><a class="s" href="/tv-transmitter/economic-analog-tv-tx/">· Economic Analog TV TX</a><a class="s" href="/tv-transmitter/professsional-analog-tv-tx/">· Professional Analog TV TX</a><a class="s" href="/tv-transmitter/digital-tv-tx/">· Digital TV Transmitter</a> <dt class="t bold"><a href="javascript:;">Antenna & Splitter</a> </dt><dt class="sub"><a class="s" href="/antenna/fm-antenna/">· FM Antenna</a><a class="s" href="/antenna/tv-antenna/">· TV Antenna</a><a class="s" href="/antenna-&-splitter/Multiplexer/">· Multiplexer</a><a class="s" href="/antenna-&-splitter/Power-Splitter/">· Power Splitter</a> <dt class="t bold"><a href="javascript:;">Broadcast Studio Equipment</a> </dt><dt class="sub"><a class="s" href="/broadcast-studio-equipment/radio-studio-equipment/">· Radio Studio Euipment</a><a class="s" href="/broadcast-studio-equipment/tv-studio-equipment/">· TV Studio Equipment</a> <dt class="t bold"><a href="javascript:;">Accessories</a> </dt><dt class="sub"><a class="s" href="/Accessories/RF-cables/">· RF Cables</a><a class="s" href="/Accessories/connectors/">· RF Connectors</a><a class="s" href="/Accessories/Dummy-Load/">· Dummy Load</a><a class="s" href="/Accessories/Coaxial-Converter/">· Coaxial Converter</a> <dt class="t bold"><a href="javascript:;">FM Transmitter Parts</a> </dt><dt class="sub"><a class="s" href="/fm-transmitter-parts/fm-transmitter-pcb-kit/">· FM Transmitter PCB KIT</a><a class="s" href="/fm-transmitter-parts/rf-power-amplifier/">· RF Power Amplifier</a><a class="s" href="/fm-transmitter-parts/rf-transistor/">· RF Transistor</a><a class="s" href="/fm-transmitter-parts/rf-power-supply/">· RF Power Supply</a> <dt class="t bold"><a href="javascript:;">DTV Headend Equipment</a> </dt><dt class="sub"><a class="s" href="/dtv-headend-equipment/encoder/">· Encoder</a><a class="s" href="/dtv-headend-equipment/decorder/">· Decorder</a><a class="s" href="/dtv-headend-equipment/modulator/">· Modulator</a><a class="s" href="/dtv-headend-equipment/encoder-modulator/">· Encoder and Modulator </a><a class="s" href="/dtv-headend-equipment/scrambler/">· Scrambler</a><a class="s" href="/dtv-headend-equipment/IRD/">· IRD</a><a class="s" href="/dtv-headend-equipment/Multiplexer/">· Multiplexer</a> <dt class="t bold"><a href="javascript:;">AM Transmitter</a> </dt><dt class="sub"> <dt class="t bold"><a href="javascript:;">FM Receiver </a> </dt><dt class="sub"><a class="s" href="/fm-receiver/radio/">· FM Radio</a><a class="s" href="/fm-receiver/receiver-antenna/">· Receiver Antenna</a> <dt class="t bold"><a href="javascript:;">Wholesale FM Transmitters</a> </dt><dt class="sub"><a class="s" href="/product/Wholesale-FM-Transmitters/Wholesale-FM-Transmitters/">· Wholesale FM Transmiters</a><a class="s" href="/product/Wholesale-FM-Transmitters/wholesale-fm-transmitter-kits/">· Wholesale FM Transmiter kits</a> <dt class="t bold"><a href="javascript:;">Other</a> </dt><dt class="sub"><a class="s" href="/other/power-meter/">· Power Meter & Analyzer </a><a class="s" href="/other/Others/">· Others</a> </dt></dl></div> </div> <script type="text/javascript" src="/template/js/jquery-1.7.2.js"></script><script type="text/javascript"> $(function(){ $(".protit dt.t").click(function(){ $(this).next(".sub").slideToggle(100).siblings(".sub").slideUp(100); }); }) </script> <div class="nav down"> <div class="title">Solutions</div> <div class="box bold"> <ul> <li><a title="Drive in FM Transmitter" href="/fm-transmitter/0---1w-pocket-fm-tx/">Drive in FM Transmitter</a></li> <li><a title="Studio Transmitter Link STL" href="/studio-transmitter-link-stl/">Studio Transmitter Link STL</a></li> <li><a title="Complete FM Radio Station" href="/complete-fm-radio-station/">Complete FM Radio Station</a></li> <li><a title="Complete Television Station" href="/complete-television-station/">Complete Television Station</a></li> <li><a title="IPTV System Solution" href="/Solutions/IPTV-System-Solution/">IPTV System Solution</a></li> <li><a title="Lightning Protection System" href="/Solutions/Lightning-Protection-System/">Lightning Protection System</a></li> </ul> </div> </div> <div class="nav down"> <div class="title">Tags</div> <div class="box"><a href="/plus/search/index.asp?keyword=amplifier">amplifier</a> <a href="/plus/search/index.asp?keyword=30w+">30w </a> <a href="/plus/search/index.asp?keyword=antenna+">antenna </a> <a href="/plus/search/index.asp?keyword=15w">15w</a> <a href="/plus/search/index.asp?keyword=fm">fm</a> <a href="/plus/search/index.asp?keyword=5%EF%BC%90w">50w</a> <a href="/plus/search/index.asp?keyword=5w+">5w </a> <a href="/plus/search/index.asp?keyword=tecsun">tecsun</a> <a href="/plus/search/index.asp?keyword=manual">manual</a> <a href="/plus/search/index.asp?keyword=1w">1w</a> <a href="/plus/search/index.asp?keyword=7w">7w</a> <a href="/plus/search/index.asp?keyword=0%2E5w">0.5w</a> <a href="/plus/search/index.asp?keyword=degen">degen</a> <a href="/plus/search/index.asp?keyword=gp+">gp </a> <a href="/plus/search/index.asp?keyword=powersuppl">powersuppl</a> <a href="/plus/search/index.asp?keyword=pl600">pl600</a> <a href="/plus/search/index.asp?keyword=pl%2D600">pl-600</a> <a href="/plus/search/index.asp?keyword=z1r">z1r</a> <a href="/plus/search/index.asp?keyword=medium">medium</a> <a href="/plus/search/index.asp?keyword=crosselec">crosselec</a> </div> </div> <div class="nav down"> <div class="title">Wholesale catalog</div> <div class="box"> <div>Wellcome to download list</div> <ul> <li><a href="/catalog.asp">Catalog List</a></li> <li><a href="">User Manual</a></li> <li><a href="">Shipping list</a></li> <li><a href="/new.asp">New arrive!</a></li> </ul> </div> </div> <div class="llang"><p><a href="http://fmuser.org">fmuser.org</a><br /> <p><a href="http://es.fmuser.org">es.fmuser.org</a><br /> <a href="http://it.fmuser.org">it.fmuser.org</a><br /> <a href="http://fr.fmuser.org">fr.fmuser.org</a><br /> <a href="http://de.fmuser.org">de.fmuser.org</a><br /> <a target="_blank" href="http://af.fmuser.org">af.fmuser.org</a> ->Afrikaans<br /> <a target="_blank" href="http://sq.fmuser.org">sq.fmuser.org</a> ->Albanian<br /> <a target="_blank" href="http://ar.fmuser.org">ar.fmuser.org</a> ->Arabic<br /> <a target="_blank" href="http://hy.fmuser.org">hy.fmuser.org</a> ->Armenian<br /> <a target="_blank" href="http://az.fmuser.org">az.fmuser.org</a> ->Azerbaijani<br /> <a target="_blank" href="http://eu.fmuser.org">eu.fmuser.org</a> ->Basque<br /> <a target="_blank" href="http://be.fmuser.org">be.fmuser.org</a> ->Belarusian<br /> <a target="_blank" href="http://bg.fmuser.org">bg.fmuser.org</a> ->Bulgarian<br /> <a target="_blank" href="http://ca.fmuser.org">ca.fmuser.org</a> ->Catalan<br /> <a target="_blank" href="http://zh-CN.fmuser.org">zh-CN.fmuser.org</a> ->Chinese (Simplified)<br /> <a target="_blank" href="http://zh-TW.fmuser.org">zh-TW.fmuser.org</a> ->Chinese (Traditional)<br /> <a target="_blank" href="http://hr.fmuser.org">hr.fmuser.org</a> ->Croatian<br /> <a target="_blank" href="http://cs.fmuser.org">cs.fmuser.org</a> ->Czech<br /> <a target="_blank" href="http://da.fmuser.org">da.fmuser.org</a> ->Danish<br /> <a target="_blank" href="http://nl.fmuser.org">nl.fmuser.org</a> ->Dutch<br /> <a target="_blank" href="http://et.fmuser.org">et.fmuser.org</a> ->Estonian<br /> <a target="_blank" href="http://tl.fmuser.org">tl.fmuser.org</a> ->Filipino<br /> <a target="_blank" href="http://fi.fmuser.org">fi.fmuser.org</a> ->Finnish<br /> <a target="_blank" href="http://fr.fmuser.org">fr.fmuser.org</a> ->French<br /> <a target="_blank" href="http://gl.fmuser.org">gl.fmuser.org</a> ->Galician<br /> <a target="_blank" href="http://ka.fmuser.org">ka.fmuser.org</a> ->Georgian<br /> <a target="_blank" href="http://de.fmuser.org">de.fmuser.org</a> ->German<br /> <a target="_blank" href="http://el.fmuser.org">el.fmuser.org</a> ->Greek<br /> <a target="_blank" href="http://ht.fmuser.org">ht.fmuser.org</a> ->Haitian Creole<br /> <a target="_blank" href="http://iw.fmuser.org">iw.fmuser.org</a> ->Hebrew<br /> <a target="_blank" href="http://hi.fmuser.org">hi.fmuser.org</a> ->Hindi<br /> <a target="_blank" href="http://hu.fmuser.org">hu.fmuser.org</a> ->Hungarian<br /> <a target="_blank" href="http://is.fmuser.org">is.fmuser.org</a> ->Icelandic<br /> <a target="_blank" href="http://id.fmuser.org">id.fmuser.org</a> ->Indonesian<br /> <a target="_blank" href="http://ga.fmuser.org">ga.fmuser.org</a> ->Irish<br /> <a target="_blank" href="http://it.fmuser.org">it.fmuser.org</a> ->Italian<br /> <a target="_blank" href="http://ja.fmuser.org">ja.fmuser.org</a> ->Japanese<br /> <a target="_blank" href="http://ko.fmuser.org">ko.fmuser.org</a> ->Korean<br /> <a target="_blank" href="http://lv.fmuser.org">lv.fmuser.org</a> ->Latvian<br /> <a target="_blank" href="http://lt.fmuser.org">lt.fmuser.org</a> ->Lithuanian<br /> <a target="_blank" href="http://mk.fmuser.org">mk.fmuser.org</a> ->Macedonian<br /> <a target="_blank" href="http://ms.fmuser.org">ms.fmuser.org</a> ->Malay<br /> <a target="_blank" href="http://mt.fmuser.org">mt.fmuser.org</a> ->Maltese<br /> <a target="_blank" href="http://no.fmuser.org">no.fmuser.org</a> ->Norwegian<br /> <a target="_blank" href="http://fa.fmuser.org">fa.fmuser.org</a> ->Persian<br /> <a target="_blank" href="http://pl.fmuser.org">pl.fmuser.org</a> ->Polish<br /> <a target="_blank" href="http://pt.fmuser.org">pt.fmuser.org</a> ->Portuguese<br /> <a target="_blank" href="http://ro.fmuser.org">ro.fmuser.org</a> ->Romanian<br /> <a target="_blank" href="http://ru.fmuser.org">ru.fmuser.org</a> ->Russian<br /> <a target="_blank" href="http://sr.fmuser.org">sr.fmuser.org</a> ->Serbian<br /> <a target="_blank" href="http://sk.fmuser.org">sk.fmuser.org</a> ->Slovak<br /> <a target="_blank" href="http://sl.fmuser.org">sl.fmuser.org</a> ->Slovenian<br /> <a target="_blank" href="http://es.fmuser.org">es.fmuser.org</a> ->Spanish<br /> <a target="_blank" href="http://sw.fmuser.org">sw.fmuser.org</a> ->Swahili<br /> <a target="_blank" href="http://sv.fmuser.org">sv.fmuser.org</a> ->Swedish<br /> <a target="_blank" href="http://th.fmuser.org">th.fmuser.org</a> ->Thai<br /> <a target="_blank" href="http://tr.fmuser.org">tr.fmuser.org</a> ->Turkish<br /> <a target="_blank" href="http://uk.fmuser.org">uk.fmuser.org</a> ->Ukrainian<br /> <a target="_blank" href="http://ur.fmuser.org">ur.fmuser.org</a> ->Urdu<br /> <a target="_blank" href="http://vi.fmuser.org">vi.fmuser.org</a> ->Vietnamese<br /> <a target="_blank" href="http://cy.fmuser.org">cy.fmuser.org</a> ->Welsh<br /> <a target="_blank" href="http://yi.fmuser.org">yi.fmuser.org</a> ->Yiddish</p> <div> </div></div> <div class="nav down"> <div class="nav"> <div class="title">Promotion</div> <div class="box"> <ul> <li><a href="/news/Electron/The-principle-of-aerial.html">The principle of aerial</a></li> </ul> </div> </div> </div> <div class="nav down"> <div class="box"> <div align="center"><strong>Shoping Cart</strong></div> <div> <form method="post" action="https://www.paypal.com/cgi-bin/webscr" target="paypal"> <div align="center"><input type="hidden" name="cmd" value="_cart" /> <input type="hidden" name="business" value="sky@hllye.com" /> <input border="0" alt="Make payments with PayPal - it's fast, free and secure!" src="https://www.paypal.com/en_US/i/btn/view_cart.gif" type="image" name="submit" /> <input type="hidden" name="display" value="1" /></div> </form> <div align="center"><strong>Payment Method</strong></div> <div> <div align="center"><img border="0" alt="paypal solution" src="/banner/paypal_logo_verified.gif" /></div> </div> </div> </div> </div> <!--1--> <!--aaa--> <!--2--> <!--aaa--> <!--3--> <!--aaa--> <!--4--> <!--aaa--> <!--5--> <!--aaa--> <!--6--> <!--aaa--> <!--7--> <!--aaa--> <!--8--> <!--aaa--> <!--9--> <!--aaa--> <!--10--> <!--aaa--> <div class="nav"> <div class="title">What's Hot!</div> <div class="box"> <ul> <li><a href="/news/Electron/FM-Stereo-Transmitter-circuit-diagram-Using-BH1417.html">FM Stereo Transmitter circuit diagram Using BH1417</a></li> <li><a href="/news/Electron/BA1404-FM-stereo-transmitter-chip.html">BA1404 FM stereo transmitter chip</a></li> <li><a href="/news/Electron/What-is-the-difference-between-magnetic-and-inductance.html">What is the difference between magnetic and inductance</a></li> <li><a href="/news/Electron/FM-wireless-headphone-transponder.html">FM wireless headphone transponder</a></li> <li><a href="/news/Electron/Digital-HF-Band-SWR-Power-Meter-2MHz50MHz-200w.html">Digital HF Band SWR Power Meter 2MHz-50MHz 200w</a></li> <li><a href="/news/Electron/Highfrequency-circuit-of-inductors-and-beads.html">High-frequency circuit of inductors and beads</a></li> <li><a href="/news/Electron/The-principle-of-aerial.html">The principle of aerial</a></li> <li><a href="/news/Electron/Of-CATV-time-spread-a-net.html">Of CATV time spread a net</a></li> <li><a href="/news/Electron/Of-digital-signal-deferent.html">Of digital signal deferent</a></li> <li><a href="/news/Electron/common-electromagnetic-radiation-and-electromagnetic-tolerance.html">common electromagnetic radiation and electromagnetic tolerance</a></li> </ul> </div> </div> <div class="nav"> <div class="title">New Question </div> <div class="box"> <ul> <li><a href="359" title="Richardrew">Can I be your agent? </a></li> <li><a href="359" title="JesusFoura">How do I buy this product?</a></li> <li><a href="12924" title="karirw4">How much is this product?</a></li> <li><a href="492" title="CurtisMayp">How much is a 1kw fm transmi</a></li> <li><a href="339" title="William">Hey, I'm wondering who desig</a></li> <li><a href="2583" title="Persius">How much is the shipping cos</a></li> <li><a href="12924" title="Alexeytep">Hello. And Bye.</a></li> <li><a href="827" title="Wunna">I want to detect 2.4 GHz fre</a></li> <li><a href="12924" title="EdwinQuilt">What is the price of an AM t</a></li> <li><a href="964" title="Jamesurix">Can this product be used in </a></li> </ul> </div> </div> <div class="nav"> <div class="title">Link</div> <div class="box"> <ul> </ul> </div> </div> </ol> </div> <div class="cl"></div> </div> </div> <!--endprint--> <script type="text/javascript"> function doPrint() { bdhtml=window.document.body.innerHTML; sprnstr="<!--startprint-->"; //开始打印标识字符串有17个字符 eprnstr="<!--endprint-->"; //结束打印标识字符串 prnhtml=bdhtml.substr(bdhtml.indexOf(sprnstr)+17); //从开始打印标识之后的内容 prnhtml=prnhtml.substring(0,prnhtml.indexOf(eprnstr)); //截取开始标识和结束标识之间的内容 window.document.body.innerHTML=prnhtml; //把需要打印的指定内容赋给body.innerHTML window.print(); //调用浏览器的打印功能打印指定区域 window.document.body.innerHTML=bdhtml;//重新给页面内容赋值; return false; } </script> <div class="cl"></div> <div class="foot w ov pad30 mt20"> <div class="wrapin font14 fff justify"> <li class="l txtl font16"> <p class="maxpic"><img src="/template/images/logo_foot.png" /></p> <p> </p> <p><em><span style="font-size: 14px"><span style="font-family: Verdana">FMUSER Wirless Transmit Video And Audio More Easier !<br /> </span></span></em></p> </li> <li class="l txtl co999"> <p class="font20 bold fff"><i class="fa fa-plus fr"></i>Contact</p> <div class="s w ov"> <p class="pl posi mt10"><i class="fa fa-location-arrow fa-lg"></i><b class="font16 fff">Address:</b><br />No.305 Room HuiLan Building No.273 Huanpu Road Guangzhou China 510620</p> <p class="pl posi mt10"><i class="fa fa-envelope-o fa-lg"></i><a href="mailto:sky@fmuser.org"><b class="font16 fff">E-mail:</b><br />sky@fmuser.org</a></p> <p class="pl posi mt10"><i class="fa fa-phone fa-lg"></i><a href="tel:+8618078869184"><b class="font16 fff">Tel / WhatApps:</b><br />+8618078869184</a></p> </div> </li> <li class="m txtl"> <p class="font20 bold"><i class="fa fa-plus fr"></i>Categories</p> <div class="s w ov mt10 font14"> <p><a href="/IPTV-Encoder/IPTV-Streaming-Encoder/">> IPTV Encoder</a></p> <p><a href="/fm-transmitter/">> FM Transmitter </a></p> <p><a href="/tv-transmitter/">> TV Transmitter</a></p> <p><a href="/antenna-&-splitter/">> Antenna & Splitter</a></p> <p><a href="/Studio-Equipment/">> Broadcast Studio Equipment</a></p> <p><a href="/Accessories/">> Accessories</a></p> <p><a href="/FM-transmitter-parts/">> FM Transmitter Parts</a></p> <p><a href="/dtv-headend-equipment/">> DTV Headend Equipment</a></p> </div> </li> <li class="r"> <p class="font20 bold">Newsletter</p> <form method="post" action="/down.asp" id="footform"> <p class="mt10 co999">FIRST OR FULL NAME<br/><input type="text" class="ipt" name="name" id="name" placeholder="FIRST OR FULL NAME" /></p> <p class="mt10 co999">E-mail<br/><input type="text" class="ipt" name="email" id="email" placeholder="E-mail" /></p> <p class="mt20 cen"><button type="submit" class="btn cen hover fff font16 bold daxie mouse posi">subscribe</button></p> </form> </li> </div> </div> <div class="cl"></div> <div class="wrapin ov pad30"><center><a href="http://fmuser.org/About-US/How-can-I-pay-to-buy-the-item.html"><img border="0" alt="paypal solution" src="/banner/paypal1.jpg" /></a> <a href="http://fmuser.org/About-US/How-can-I-pay-to-buy-the-item.html"></a> <a href="http://fmuser.org/About-US/How-can-I-pay-to-buy-the-item.html"><img border="0" alt="Western Union" src="/banner/westernunion1.jpg" /></a><a href="http://fmuser.org/About-US/How-can-I-pay-to-buy-the-item.html"><img border="0" alt="Bank OF China" src="/banner/boc1501.jpg" /></a> </center><center><font color="#ff0000">E-mail:sky@fmuser.org   WhatsApp:+8618078869184   Skype:sky198710021<!-- Skype 'Chat with me' button http://www.skype.com/go/skypebuttons --> <script type="text/javascript" src="http://download.skype.com/share/skypebuttons/js/skypeCheck.js"></script><a href="skype:sky198710021?chat"><img style="border-bottom: medium none; border-left: medium none; border-top: medium none; border-right: medium none" alt="Chat with me" width="97" height="23" src="http://download.skype.com/share/skypebuttons/buttons/chat_green_transparent_97x23.png" /></a> </font><br /> </center><center><script type="text/javascript"> var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www."); document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E")); </script><script type="text/javascript"> try { var pageTracker = _gat._getTracker("UA-15057397-1"); pageTracker._trackPageview(); } catch(err) {}</script>Copyright 2006-2020 Powered By <a target="_blank" href="http://www.Fmuser.org/">www.fmuser.org</a><script src="http://s70.cnzz.com/stat.php?id=1995381&web_id=1995381&show=pic" language="JavaScript"></script></center><!-- Global site tag (gtag.js) - Google Analytics --><script async src="https://www.googletagmanager.com/gtag/js?id=UA-156296360-1"></script><script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'UA-156296360-1'); </script></div> <div class="wap_contact cen fff"><p><a href="https://fmuser.org/Custom-for-Affiliates/Contact-Us/"><span style="font-size: 16px">Contact Us</span></a></p></div> </body> </html><script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="c4442b3267e6c9e667e24174-|49" defer></script><script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script>