Home › Forums › Ask the Flomies › BZR and MSR not beeping
Tagged: beeping bzr msr flojack
-
AuthorPosts
-
June 1, 2017 at 10:06 am #59981
Hi !
Quick question first because i got confused:
https://github.com/flomio/flomio_drivers_ios this is basically what’s behind your sdk ? Because right now i’m took the FlomioSDK v2.2 but some stuff are not working the way i want so maybe i did’nt take the right stuff ?The my issue is that when i scan a card with the msr it’s not beeping ? Maybe it’s normal because it’s not supposed to but according to the doc it does ?
I also tried the bzr that i got but it doesn’t seem to “connect” to the sdk
self.readerManager.selectedDeviceType = kFlojackMsr;
the only option working for me is kFlojackMsr if i try kFlojackAny or kFlojackBzr none of my readers work…
Do you have some input about this ? 😀 thanks
June 7, 2017 at 4:06 am #60058well thanks for the help
June 16, 2017 at 10:26 am #60135Hi Clement, are you still having issues with getting the ScanSound from the Flomio SDK library?
June 28, 2017 at 1:03 pm #60257Hi Richard !
Sorry for the time i took to answer i wasn’t working of the nfc implementation but now i’m back on it.
I still have issues with the scanning sound.
The ScanSound.caf is played only when i init
FmSessionManager
and the sound is not heard if there is a flojack MSR connected since it takes the headphones slotAnd when I scan a card with the reader, there is no sound even thought –
(void)didFindTagWithUuid:(NSString *)Uuid fromDevice:(NSString *)deviceId withAtr:(NSString *)Atr withError:(NSError *)error
is calledhere is how I init the manager:
self.readerManager = [FmSessionManager sharedManager]; self.readerManager.selectedDeviceType = kFlojackMsr; self.readerManager.delegate = self; self.readerManager.specificDeviceId = nil; NSDictionary *configurationDictionary = @{@"Scan Sound" : @1, @"Scan Period" : @5000, @"Reader State" : [NSNumber numberWithInt:kReadUuid], @"Power Operation" : [NSNumber numberWithInt:kAutoPollingControl], @"Transmit Power" : [NSNumber numberWithInt: kHighPower], @"Allow Multiconnect" : @0}; [self.readerManager setConfiguration:configurationDictionary]; [self.readerManager createReaders];
thanks if you have some inputs
-
AuthorPosts
You must be logged in to reply to this topic.