Search results

  1. H

    Syncronisation Teensy 4.0 Srtc with GPS Time

    Hello femme, Unfortunately, I don't speak English very well and have to resort to Google - please excuse me! Thank you for your contribution. I had to make a few adjustments: -time_t getTeensyTime() { return Teensy3Clock.get(); } I call in the program to keep the library in the original...
  2. H

    Syncronisation Teensy 4.0 Srtc with GPS Time

    I've been trying to sync the SRTC with TimeGps (Arduino) for a long time to obtain an accurate, buffered time for further use in the program. Unfortunately I haven't had any success so far - can someone help me?
  3. H

    Arduino Modbus with Teensy 4.0

    Hi BriComp, thank you so much for the quick reply – the solution was simple, but I just couldn't figure it out. It's great that there are such active forum members! Thank you very much!
  4. H

    Arduino Modbus with Teensy 4.0

    Of the many Modbus libraries, I like Arduino Modbus the best – it's easy to use, clearly laid out, and works very well with a Teensy. Unfortunately, there's no naming convention at the beginning of the program, so you have to prefix all commands with "ModbusRTUClient". This leads to confusion...
  5. H

    Serial Hardware and Serial Software do not work

    The problem is solved, thank you to all members for your help. It's likely that the serial ports with their low transmission speeds are causing problems (and you shouldn't really be using them anyway!). Everything works perfectly with 9600. Thanks again!
  6. H

    Serial Hardware and Serial Software do not work

    A test program for serial communication between two SEEED XIAO devices works, but not with XIAO and Teensy!
  7. H

    Serial Hardware and Serial Software do not work

    Arduino Exambel ```cpp /* * TimeGPS.pde * example code illustrating time synced from a GPS * */ #include <TimeLib.h> #include <TinyGPS.h> // http://arduiniana.org/libraries/TinyGPS/ //#include <SoftwareSerial.h> // TinyGPS and SoftwareSerial libraries are the work of Mikal Hart...
  8. H

    Serial Hardware and Serial Software do not work

    I have two Teensy 4.0 microcontrollers. The digital and analog pins can be read and written, but the serial hardware and serial software are not working. The programs I'm using, e.g., Tiny GPS, run perfectly on an Arduino Mega. What am I doing wrong?
Back
Top