Search results

  1. E

    Teensy 3.2 and Audio board integration schematic verification help needed

    Here is the pictures of the otherside of the board.
  2. E

    Teensy 3.2 and Audio board integration schematic verification help needed

    Hi I did use another cable to test it, without success. Also this cable was able to program another teensy.
  3. E

    Teensy 3.2 and Audio board integration schematic verification help needed

    It does say that VREGIN was to be connected: http://www.appfruits.com/2015/03/building-your-own-custom-teensy/
  4. E

    Teensy 3.2 and Audio board integration schematic verification help needed

    Thanks for reply. The MKL02 is on the other side of the board. Will get and I probed it and it did show activity. Shall provide some photos of the bottom side tomorrow.
  5. E

    Teensy 3.2 and Audio board integration schematic verification help needed

    still trying to figure out what I have done wrong. Paul, any ideas.
  6. E

    Teensy 3.2 and Audio board integration schematic verification help needed

    I am not sure what I am doing wrong. The board is not being recognised by the PC. The bluetooth module does show up on my phone. I did probe it with for activity, it does appear to have all the activity described on this site: http://www.appfruits.com/2015/03/building-your-own-custom-teensy/...
  7. E

    Teensy 3.2 and Audio board integration schematic verification help needed

    Yes Paul. I tested it with Teensy 3.1, teensy Audio board and the RN52 audio Bluetooth breakout board in this configuration. Strange thing was that, the setup appeared to be more stable when the RN52 microphone negative pin was left unconnected. Same for the Speak Pin. The picture below is mad...
  8. E

    Teensy 3.2 and Audio board integration schematic verification help needed

    Great! Regarding C11, it is connected to the microphone line on the RN52 and C13 is connected to the left speaker line of the RN52. This may appear counter-intuitive. The speaker line (SPK_L+) from RN52 is acting like a microphone/LINEIN_L to the SGTL5000, hence the C13. While the SGTL5000...
  9. E

    Teensy 3.2 and Audio board integration schematic verification help needed

    Thanks Paul. Here is the Link. http://vionics.co.uk/pdf/BluetoothHeadset5-01-12-205.pdf
  10. E

    Teensy 3.2 and Audio board integration schematic verification help needed

    I have modified the schematic. Anyone find anything that could cause some issues with this custom teensy 3.2 board? Please post it so I and other would know.
  11. E

    Teensy 3.2 and Audio board integration schematic verification help needed

    Wow, that was great. I just spotted that teensy Audio Pin5 issue. Missed the Resistor ones and different caps values. Thanks a lot.
  12. E

    Teensy 3.2 and Audio board integration schematic verification help needed

    Thanks for your reply:D . I know its a lot to ask. I can pay for the service, if there was a way:cool:. Makes sense to seek help here first since most users are familiar with the teensy and even the teensy audio board. Will try and do as you suggested. thanks
  13. E

    Teensy 3.2 and Audio board integration schematic verification help needed

    Someone please help out. You can just verify one pin at a time. Others can verify the other pins. Paul I know you are busy, do not want to get it wrong this time. If there was a way to pay for the service, I would pay for it.
  14. E

    Teensy 3.2 and Audio board integration schematic verification help needed

    I would greatly appreciate any help with this schematic. Just want to make sure the connections are correct. I am a bit jaded from looking at it too long. The board is based on a teensy 3.2 and Audio board. Also added a Lipo charging circuit. I would like these connections checked for...
  15. E

    MKL02 / MKL04 Bootloader Chips Available

    I take your point. The issue is that it costs quite a heap when assembly fails due to issues with the board design. The engineer that designed the board had years of experience and the assembled board did not work. Hence why I am being cautious. About having Paul review our board design, I...
  16. E

    MKL02 / MKL04 Bootloader Chips Available

    Great! just ordered 25. I know there is a teensy 3.1 Eagle library, however, I am not very good at using eagle and the library is a requires more steps to modify. It would be very helpful if there is a teensy 3.2 board Eagle file like this; https://github.com/appfruits/Custom-Teensy. Paul...
  17. E

    Teensy 3.2

    Thanks for your prompt answer. You have accomplished something really great with the Teensy 3 and above, nothing appears to come close of similar size. We designed a custom PCB based on the teensy 3.1 and the Teensy audio board. The audio board was needed because Teensy audio library does not...
  18. E

    Teensy 3.2

    Hi, got 4 of the teensy 3.2. has a friendlier feel to it. Think it may have something to do with the button. Paul, is the Minitan bootlader compatible with the new teensy 3.2? I mean since the new boot-loader is not ready for shipping yet.
  19. E

    Teensy 3.1 Voice Encryption

    I agree. Hope the issue is sorted. About 'It can also work together with the ADC input, for a total of 3 possible inputs'; Do you know how to use the ADC library accept audio signal using one of the ADC_1 pin and output it to pwm pin 3?
  20. E

    Teensy 3.1 Voice Encryption

    Hi Thanks for the reply. I tried that out and got a code similar to the File > Examples > Audio >HardwareTesting>PassThroughMono file : #include <Audio.h> #include <Wire.h> #include <SPI.h> #include <SD.h> // GUItool: begin automatically generated code AudioInputAnalog adc1...
  21. E

    Teensy 3.1 Voice Encryption

    Thanks, greatly appreciate your pointers. Both approaches sound quite attractive. Will explore both options. Shall report back how it turns out. May figure this out soon, however I have gone through the audio library output_dac,output_pwm files, still have not figured out where it designated...
  22. E

    Teensy 3.1 Voice Encryption

    Please, I need some assistance!
  23. E

    Teensy 3.1 Voice Encryption

    The line of code: r = incomingAudio % 10;, give the remainder of the calculation of incomingAudio/10. to obtain the original value, the reverse is done: reverse = reverse* 10 + r;
  24. E

    Teensy 3.1 Voice Encryption

    I am looking to have Teensy 3.1 encrypt microphone/voice input, using a simple algorithm: incoming = voiceData; while(incomingAudio) { r = incomingAudio % 10; reverse = reverse* 10 + r; // used to reverse the encryption; incomingAudio=incomingAudio/10; } #include <Audio.h> #include...
Back
Top