Making a phone call via BT Smart Ralk

When I make a call from abroad to a ZuZk landline I can hear the person I gave called but they cannot hear me.
Any help appreciated.

OK, but that's not quite what I'm looking for.
It's a bit frustrating that Lookout can't simply
dial out via com port.
Sergei
Anon wrote:
> Lookout is known to work with third-party telphone alarm systems like Win911
> and ScadaAlarm. Please check the following links for more info':
>
> http://www.specterinstruments.com
> http://www.fluidsolutions.com/O/scadalarm1.html
>
> -----------------------
> [email protected] wrote:
>
> Hi,
>
> How can I dial out from Lookout via modem to play prerecorded .wav�s until
> another party disconnects / or a timeout occurs?
>
> In other words I need to have a voice messaging to report alarm conditions.
>
> This would be a nice alternative to paging.
>
> Regards,
>
> Sergei

Similar Messages

  • Internet connection only when making a phone call

    I own a Powerbook G4, I connect to the internet wireless via aiport. I can connect only when making a phone call, my ISP is virgin.net. I've changed the micro-filter. Can any one help me on this problem.
    Thanks
    Lee

    Thanks for the usefull information, I've contacted BT they are my telephone provider here in the UK, and they did a line test, not a mechanical test as by an engineer, and said the line is OK. My in-comming & out-going calls are fine, but with interference on the line. How did you get past this problem?

  • I have poor/no service on my iphone 6  in places that I do have service on my old iphone 5.  Takes 10 minutes to send text and webpages will not load but load within seconds on the iphone 5 and forget making a phone call.  How do i resolve this issue??

    I have poor/no service on my iphone 6  in places that I do have service on my old iphone 5.  Takes 10 minutes to send text and webpages will not load but load within seconds on the iphone 5 and forget making a phone call.  How do i resolve this issue??

    Hey kristiac,
    Thanks for the question. If I understand correctly, you have no service on the iPhone. I would recommend that you read this article, it may be able to help the issue.
    If you can't connect to a cellular network or cellular data - Apple Support
    Thanks for using Apple Support Communities.
    Have a good one,
    Mario

  • Want to make phone calls via bluetooth on my iPhone from iPad

    I can link my Garmin GPS to my iPhone via Bluetooth and make or receive phone calls.
    I would like an iPas app that provides the sametype functionality including:
    Make calls
    Receive calls
    Look uphone numbers
    Is this possible?  Using what app?

    There are a couple of Apps out there that will allow you to use a Google Voice phone number to make and recieve calls via the iPad. I'm not sure exactly what you are trying to do. If you are trying to replicate the Garmin / iPhone setup I don't think that is possible.
    Google Voice  setup - gvconnect and talkatone. (wifi)
    Skype - I think that you can make phone calls via Skype and Wifi.
    I don't have a clue as if it is possible to make a phone call over 3G via the iPad.
    Paul

  • Playing a WAVE file after making a phone call.

    Hi everyone..
    I'm trying to play a wav file after making a phone call. I was able to make the call. But I get an exception when i try to paly a wav file..
    Can any one tell me where I've gone wrong..
    This is the code which plays the audio file..(I downloaded it by the way.. and it's working fine when used as a seperate program)
    import java.io.File;
    import java.io.IOException;
    import javax.sound.sampled.AudioFormat;
    import javax.sound.sampled.AudioInputStream;
    import javax.sound.sampled.AudioSystem;
    import javax.sound.sampled.DataLine;
    import javax.sound.sampled.FloatControl;
    import javax.sound.sampled.LineUnavailableException;
    import javax.sound.sampled.SourceDataLine;
    import javax.sound.sampled.UnsupportedAudioFileException;
    public class PlayWave extends Thread {
         private String filename;
         private Position curPosition;
    //30000000(7324.21 kb)
         private final int EXTERNAL_BUFFER_SIZE = 524288; // 128Kb
         enum Position {
              LEFT, RIGHT, NORMAL
         public PlayWave(String wavfile) {
              filename = wavfile;
              curPosition = Position.NORMAL;
         public PlayWave(String wavfile, Position p) {
              filename = wavfile;
              curPosition = p;
         public void run() {
              File soundFile = new File(filename);
              if (!soundFile.exists()) {
                   System.err.println("Wave file not found: " + filename);
                   return;
              AudioInputStream audioInputStream = null;
              try {
                   audioInputStream = AudioSystem.getAudioInputStream(soundFile);
              } catch (UnsupportedAudioFileException e1) {
                   e1.printStackTrace();
                   return;
              } catch (IOException e1) {
                   e1.printStackTrace();
                   return;
              AudioFormat format = audioInputStream.getFormat();
              SourceDataLine auline = null;
              DataLine.Info info = new DataLine.Info(SourceDataLine.class, format);
              try {
                   auline = (SourceDataLine) AudioSystem.getLine(info);
                   auline.open(format);
              } catch (LineUnavailableException e) {
                   e.printStackTrace();
                   return;
              } catch (Exception e) {
                   e.printStackTrace();
                   return;
              if (auline.isControlSupported(FloatControl.Type.PAN)) {
         FloatControl pan = (FloatControl) auline.getControl(FloatControl.Type.PAN);
                   if (curPosition == Position.RIGHT)
                        pan.setValue(1.0f);
                   else if (curPosition == Position.LEFT)
                        pan.setValue(-1.0f);
              auline.start();
              int nBytesRead = 0;
              byte[] abData = new byte[EXTERNAL_BUFFER_SIZE];
              try {
                   while (nBytesRead != -1) {
              nBytesRead = audioInputStream.read(abData, 0, abData.length);
              if (nBytesRead >= 0)
                   auline.write(abData, 0, nBytesRead);
              } catch (IOException e) {
                   e.printStackTrace();
                   return;
              } finally {
                   auline.drain();
                   auline.close();
         }I inserted
    new PlayWave("greeting.wav").start();In to a method an called this method in the program where i send commands to the modem.
    These are my modem commands
    send("ATZ");
        expect("OK");
    //Enable voice mode
        send("AT+FCLASS=8");
        expect("OK");
    //Dial the number
        send("ATDT"+number);
        expect("OK");
    //Choose encoding method //This is the default
        send("AT+VSM=140,8000,0,0");
        expect("OK");
    // start sending audio data
        send("AT+VTX");
        expect("OK");
    PlayAudio();
    send("ATH");The size of my audio file is 100 kb.I'm using a 56 K intel externel voice modem connected to a serial port.I wonder if it's because the buffer is too big. If anyone tried this and succeded please correct me.
    Thankyou in advance
    goodnews

    Hi goodnews!
    Did I understand well? Can You record the speech? This is what I want!
    Can you help me and send me sample code?
    This would be a big help for me!
    Thank You!
    rflair

  • How do you reduce/turn off keypad sound when making a phone call

    How do you reduce/turn off keypad sound when making a phone call?

    If I understand the question correctly, it is not about turning off keyboard clicks, it's about silencing the beeps made when manually keying in a  phone number. With keyboard clicks turned off, the beeps still sound when keying in a phone number. If I'm reading the iPhone User Guide correctly, it explains how to turn off keyboard clicks but not how to silence the   beeps when keying in a phone number. The only way I have found to silence the beeps is to put the phone into silent mode.

  • How to mute Dial Pad keys when making a phone call

    Anyone knows wow to mute Dial Pad keys when making a phone call?

    There is no individual setting for this yet. Only overall silent profile.
    -: DrewRead :-
    Can't find an app on Blackberry World yet? Tweet the developer and ask when they will #GetWithBB10 !!
    "Like it" if you like it.

  • Screen stays on when making a phone call

    I am wondering if there is a setting for making the screen go black when making a phone call. I have done some research and it seems there should be a proximity sensor that makes the screen turn off when the sensor is activated. If there is no setting for this sensor then I have to believe that the phone is defective and must be returned - I just wanted to be sure that a setting doesn't exist to correct the problem before doing that. It is a Droid X2. Thank you in advance for any help provided! 

    Yes, there is a small "proximity sensor" in the upper left corner next to the ear piece.  When you "cover" it after making a call, the screen should go blank. If it is staying on when you cover that (with your face/ear or even your hand) if sounds like it is defective. There are no Settings that I am aware of that makes the screen stay "always on".  At least on my Droid X.
    Have you tried running in SAFE MODE just to make sure it's not some 3rd party app causing the problem?
    - Power Off
    - Press & hold the MENU button (far left button)
    - Power up phone, but continue to HOLD the MENU button for like 1-2 mins.
    Phone should come up saying "SAFE MODE" in lower left side.
    Test you issue.
    To get out of SAFE MODE, just power off & on as usual.

  • When making a phone call on my iphone I can hear the person that i am calling but they can not hear me

    when making a phone call on my iphone,I can hear the person that I am calling but they can not hear my voice

    My first new iphone4 was received and installed complete.
    Nothing to hear when i was calling, only when I used loudspeaker.
    complete reset and reprogrammed Iphone, same result.
    Called Apple support and received a new Iphone4 next day.
    Updated and programmed.
    It works.
    2 weeks ago My son's iphone4, same problem, could only call with loudspeaker??
    Anyone an Idea.

  • When making a phone call i cant be heard

    when making a phone call i can not be heard?

    ypur mic may be out which is a little hole down at the bottom of your phone. you can try powering the phone off and on then you can do a hard reset home button + power button for 30 sec or intell you get a apple logo. if that still isnt working you cna back up your information to itunes and then restore your phone as new. if your still having a problem then it is hard ware related and you can then get it replaced by apple for free if your within the limited warranty

  • When making a phone call I have to put it on speaker to hear the person I'm calling.

    When making a phone call I have to put it on speaker to hear who I'm calling. I can't hear when putting the phone to my ear.

    I had the same problem just one hour ago.  I could not hear the person I's talking to unless I put it on speaker.
    I restarted my iPhone 4 and still the problem was there.
    And it automatically started working again in one hour.
    I would suggest to shake the iPhone a little and try to reboot and see if it's helping.

  • Making Ghost Phone Calls

    I have never had this problem before, it is very strange. Last night, I was receiving phone calls from my friends iphone (3g) who was sitting next to me. His phone was sitting on the table and no one was touching it. I picked it up and it had no tone. It happened multiple times, we even turned off his phone and I still received a call from him.
    Today, apparently I was making ghost phone calls to my friend's and wife's iphone (iphone4).
    I really do not know what to make from this, did anyone have an issue like this before?

    Trust me, I really can not explain it any better. That's the reason why I asked if anyone had this happen to them. It was the weirdest thing that ever happened, and I think it's from my phone. I don't know if it is a software on my end. I guess I will have to try to reset the phone completely and see what happens.

  • IPhone 6 Plus 64GB (iOS 8.1 or 8.1.1) springboard crashes repeatedly when making phone calls via Continuity on Macbook Pro Retina Mid 2014 using Yosemite 10.10.1

    I USED TO be able to make phone calls using continuity on my MacBook Pro (Retina, 15-inch, Mid 2014) with Yosemite (10.10) via my iPhone 6 Plus on iOS 8.1 without any problems.  Once I updated Yosemite to 10.10.1, my iPhone's springboard would continually crash where it brings up the Apple logo and quickly restarts repeatedly until I end the call.  Just so that you know, I am able to stay on the call while this is occurring the whole time. 
    I need to reiterate, this all started happening as soon as I updated Yosemite to 10.10.1 while still on iOS 8.1.  I know this because I made a few phone calls (loving the feature), updated Yosemite to 10.10.1, then made a few phone calls afterwards, and this started happening. 
    When iOS 8.1.1 came out, I eagerly updated hoping this issue would go away, and it did not.  I'm hoping Apple notices this post.  If anyone else has this problem, please contact Apple and chime in this post as well.  Thank you Apple for incorporating continuity calling. I love this feature, but need to use it without my phone's springboard constantly crashing.

    I have this issue as well. I am using an iPhone 6 plus, iPad Air 2, 5K iMac, and MacBook Pro. When I make a continuity calls from any device, the springboard crashes. This only happens with outgoing calls, incoming calls are functioning normal. I am currently working with multiple Apple Senior Advisors, and they are working directly with iOS a engineers. I have an active open case and will update this thread when a resolution is found.
    Just a tip for everyone with this issue, restoring your devices and setting them up as new WILL NOT correct this issue. Save yourself the hassle. I did this with my iPhone, iPad, and MacBook and the issue still persists.

  • Why does the IPhone 4 get really hot, when you are making a phone call??

    I can't seem to find the answer to this riddle . why does the iPhone 4 get really hot when you are making phone calls or when using face Time ??

    It doesn't.
    There must be an issue with your iphone.
    Have you tried reset?  Restore?
    Have you made an appointment at the genius bar to have them look at it?

  • Is there any way to turn off keypad sounds when making a phone call?

    I am a new user to iphone....is there any way to turn off sounds of keypad when making a manual phone call of someone not in address book?
    Thanks

    If I understand the question correctly, it is not about turning off keyboard clicks, it's about silencing the beeps made when manually keying in a  phone number. With keyboard clicks turned off, the beeps still sound when keying in a phone number. If I'm reading the iPhone User Guide correctly, it explains how to turn off keyboard clicks but not how to silence the   beeps when keying in a phone number. The only way I have found to silence the beeps is to put the phone into silent mode.

Maybe you are looking for

  • Yoga 2 Pro Webcam suddenly stopped working....(not a hardware problem!)

    Hi everyone, I've had the yoga 2 pro for about a year now - took a little bit of fiddling to get it working just right (clean OEM win 8.1 install and installing drivers in the right order etc) but I had it working just perfect then.... About a week a

  • Photoshop CS 5.1 - can't open psd files

    Hi, I have Photoshop CS 5.1 32bit and 64bit (running on 64bit windows), and sometimes it happens that I can't open files (jpg, psd, ...) in it. When I drag and drop a file to photoshop, or click on Open file dialog, or even try to make a new document

  • URLENCODE how to use it?

              Hi there...           I am in desperate need to use the URLEncode functionality in the jsp under weblogic           before sending a digital buffer inthe query string on the URL.           plztell me how to do it...           Plz.tell me as

  • Including images in jar executable files. Using images in jar files.

    Does anybody know what is the reason of my problem?? I created a package called test in my eclipse env. and in that package I placed folder named graph in which there is a file Help.png. Here is all the code I run in eclipse and it runs properly. Whe

  • Changing the Customer no for unapproved project

    Dear Dina, A new project created with customer A and the project is in unapproved status...at this stage any possibilities to change the customer number to that project...for the same project number... or we need to end date the existing project and