A new smartphone app can rescue you from that imminent bite. Called "Mosquito Repellent", it will repel mosquitoes by emitting high frequency sounds that mosquitoes hate. You can also track the amount of bugs in your area and view maps where they are the worst, with an additional feature called "M Tracker".
When researchers from New Mexico State University tested a variety of commercial products for their ability to repel mosquitoes, they found that a product containing lemon eucalyptus oil was about as effective and as long lasting as products containing DEET.
Maintain fly screens on windows, doors, vents and chimneys. Use insect sprays and repellents containing either picaridin or DEET, both inside and outside the house to kill mosquitoes. Remove stagnant water around the house so mosquitoes can not breed.
using System.Runtime.InteropServices;
[DllImport("KERNEL32.DLL",
EntryPoint="Beep",SetLastError=true,CharSet=CharSet.Unicode,
ExactSpelling=true,CallingConvention=CallingConvention.StdCall)]
public static extern bool Beep(int pitch , int duration);
Beep(500,1000);
It seems you can do this with an unmanaged call to native Windows code, as described in http://www.geekpedia.com/code118_Beep-In-The-PC-Speaker.html.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With