BriComp's latest activity

  • BriComp
    Hopefully the file below will help your understanding: #include <Arduino.h> #include <timelib.h> #include <SD.h> File configFile; struct configType { uint32_t lastStartTime; uint32_t softwareVsNo; float temperature; float...
  • BriComp
    There is no reason why you can't save a struct (in binary-which is your configuration) on an SD card. Not much more complex than saving/restoring from EEPROM.
  • BriComp
    BriComp replied to the thread softSPI on Teensy 4.1.
    Why do you want to use SoftSPI rather than the built in hardware spi?
  • BriComp
    Camera or chip data sheet?
  • BriComp
    At the very least I would have thought that we would need to know what you are reading from/writing to.
  • BriComp
    I usually use ESP_NOW when communicating between ESPs. Here is a tutorial that shows how to set up ESP-NOW Web Server Sensor Dashboard (ESP-NOW + Wi-Fi). There are a few more tutorials dealing with:- Getting Started with ESP-NOW (ESP32 with...
  • BriComp
    BriComp reacted to KurtE's post in the thread Teensy 4.1 Red light flickering with Like Like.
    Note: Another option would be to add a timeout to waiting for Serial. I often do that, as it allows me the flexibility to have it wait some at the start for me to connect up the Serial terminal, but it also then allows me to run it without USB...
  • BriComp
    I don't see how the code above could ever have run. You declare an array of buttonPins but never use an array subscript when addressing the array items. In fact as written the program WILL NOT COMPILE! I have corrected your code below which does...
  • BriComp
    BriComp replied to the thread Just white display screen.
    When uploading code, can you enclose it within Code Tags using the </> button on the form. This preserves indenting etc and makes your code much easier to read, understand and be better able to help with. I have enclosed your code below using...
  • BriComp
    BriComp replied to the thread 2 input mixer.
    Here is the PJRC Audio Tutorial that @joepasquariello was referring to.
  • BriComp
    BriComp replied to the thread Next new Teensy , USB-C Please..
    I don't believe there has been any announcement about a future USB-C implementation.
  • BriComp
    BriComp replied to the thread I2s2 connection.
    Can you supply a COMPLETE sketch that can be compiled that demonstrates your problem. Also please state what gps module you are using. Without this info no-one can compile your example and chase down your problem.
  • BriComp
    I would suggest cutting (carefully) the pins between the boards. Attempting to de-solder and separate the boards in my mind is a recipe for disaster. It's always difficult to pull more than one pin out from a board at the same time, trying to do...
  • BriComp
    If you watched the video you would see that they have MAC software. The cheapie uses Saleae software.
  • BriComp
    Here is a UTube video showing how to set up and get going with one of those logic analysers,
Back
Top