Search results

  1. L

    Teensy 3.2 with NRF24L01+

    Thanks! i will do same test tomorrow!!!!
  2. L

    Teensy 3.2 with NRF24L01+

    ops! thanks! i read this now: i think is ok :) which of the examples could help me to learn how to send the data that I read from an analog port on the Teensy to the Arduino?
  3. L

    Teensy 3.2 with NRF24L01+

    thank you all for the help!! I tried this simple code: #include <SPI.h> #include "RF24.h" bool radioNumber = 1; RF24 radio(9,10); byte addresses[][6] = {"1Node","2Node"}; bool role = 1; // 0 = pong back , 1 = ping out void setup() { Serial.begin(115200); while (!Serial) ; // wait for...
  4. L

    Teensy 3.2 with NRF24L01+

    Thanks :) now i can see this: it is right?
  5. L

    Teensy 3.2 with NRF24L01+

    Hi, thanks for reply. i tried this code on Arduino UNO and Teensy 3.2 the arduino show this: With Teensy: nothing :( what's the problem?
  6. L

    Teensy 3.2 with NRF24L01+

    Thanks for reply. I'm using this libs: https://github.com/TMRh20/RF24 and i used this configuration(the same for both): Vcc and GND (3v3) CE pin7 CSN pin 8 CSK pin13 MOSI pin11 MISO pin12 IRQ disconnected I tried the exemples in the libs, "GettingStarted", "pingpair", etc. All wit bad results...
  7. L

    Teensy 3.2 with NRF24L01+

    hello, I need help. I will have to communicate my Teensy 3.2 with a PC to send data, for now I'm doing some tests with an Arduino UNO, to inform the two micros, but with poor results. I found various libraries but all give me problems. what advice you give me? thanks!
  8. L

    Teensy 3.2 acquisition of data in a time interval

    Good evening, I have a question probably stupid. why if I make a test with a simple program like this I get this strange problem? I have a delay in each cycle of a few microseconds (9-10), then suddenly every 4-5 cycles have a delay of 950 microseconds, can you tell me why?
  9. L

    Teensy 3.2 acquisition of data in a time interval

    Thanks for the answers :) I looked at the manual (very complex, but in the extreme case will draw inspiration from it). I tried to write this code, and working a bit 'better with the timing could fit in my specifications. Is right to work in this way we say "brutal" or agrees to work with...
  10. L

    Teensy 3.2 acquisition of data in a time interval

    Hi, I bought a teensy 3.2 and I have to work on a project. I am fairly new in the world of programming, and I have some questions. I have to acquire the signal from a photodiode placed in front of a LED, I have to turn on and off the LED every 220 us, and do about 10 misureas in each time...
Back
Top