Your code snippet doesn't include the code which prints "20;2" which is where the problem is almost certain to lie. Post the code which prints this value.
Pete
Type: Posts; User: el_supremo
Your code snippet doesn't include the code which prints "20;2" which is where the problem is almost certain to lie. Post the code which prints this value.
Pete
Post some code which demonstrates the error(s). (Defragster beat me to it by 1 minute)
Pete
The setthetime funtion does not adjust the GPS time to local time. It sets the RTC to GPS time (UTC).
When doing arithmetic on time values, such as adjusting the timezone, I find it best to use the...
The return statements are preventing the code doing anything at all.
return (FlapsOBleft_pos, (0));
should presumably be:
FlapsOBleft_pos = 0;
and the other return statements also...
De nada!
And that has almost exhausted what I know of the Spanish language :)
Pete
Can you check the output voltage of the smartphone charger with no load and then when it is connected to the T4? It may be producing more than 5V. Chargers aren't power supplies.
Pete
In init_priv you need to change Wire.begin() to Wire2.begin().
Also, remove Wire2.begin(0x27) from the setup function - it will be done by init_priv.
Pete
What sort of filtering did you use?
Pete
P.S. I also use the standard one-bus I2C scanner and defined Wire to be Wire2. That also finds the ds3231 and the EEPROM.
Pete
This code (don't remember where I found it) will scan for I2C devices on Wire, Wire1 and Wire2 on a T4.1.
// i2c_scanner
// http://playground.arduino.cc/Main/I2cScanner
//
// Version 1
// ...
FastCRC and the website also agree when given the input as a character string.
/*
FastCRC-Example
(c) Frank Boesing 2014
*/
#include <FastCRC.h>
FastCRC8 CRC8;
You have to encode those 24 bits as 3 bytes - in hex they are 0x64,0x29,0x22. This website gives 0x93 as the CRC8 of those three bytes.
FastCRC agrees:
/*
FastCRC-Example
(c) Frank Boesing...
Post the code you used to test the CRC.
Pete
return (uint8_t) ((rawregvalue >> 20) + (rawregvalue >> 16)) & 0x0f;
Shouldn't that be & 0xff ?
Pete
I don't think that would be useful. Having an option of using sign-magnitude for the DHT22 is pointless and potentially confusing because it only uses twos-complement. Similarly, there's not much...
I see one potential problem with your fix. The DHT21 might use sign-magnitude in which case you would need to split the DHT21 and DHT22 cases so that they handle the negative numbers correctly for...
That should do it.
Pete
Replace the debug printf with this which will add my interpretation of the temperature (I hope - untested):
Serial.printf("DEBUG: %02X %02X %02X %02X : %02X (%6.2f)\n",...
What is the actual temperature?
I'm suspicious that the device actually represents the temperature as twos-complement, whereas both libraries treat it as sign-magnitude.
If it is twos-complement,...
Try this:
DHT dht(DHTPIN, DHTTYPE, 27);
and see my old thread about problems with the DHT22 on Teensy 3.
If that doesn't help, let's try adding a debugging print in the library. Near the end...
Can you try the Adafruit library - it's in the Library Manager?
Pete
Which library are you using? The one I have (by Adafruit) does not have a read22() method.
Pete
You are reading the RMS result thousands of times a second even when it is not available. Try changing your loop function to this:
void loop()
{
if(rms1.available()) {
x = rms1.read();
...
I've not been able to find one for the M7 so I have presumed that the M4 info is a lower bound on the performance of the M7 :)
Pete
This webpage has a description of the FPU instructions and their timing. There's also a PDF version of the M4 DSP instructions.
Pete
I tried your code with an M-Audio keyboard which has a modwheel. No matter how much I roll the wheel and play chords and arpeggios, the total note count is always zero at the end.
You didn't include...
Your code in #3 compiles for me with no errors. But I am using Arduino 1.8.19, not 1.8.16, and Teensyduino 1.56.
Pete
#define LockB 35
#define LockLed 30
These two pins are on the bottom of the T4.0. Are you actually using them? Looks like you have spare pins on the top which would be a lot easier to use.
Pete
Artnet.h #includes Ethernet.h which conflicts with NativeEthernet.
Don't know how to fix this but I would try meddling with Artnet.h and where it references Ethernet, change it to NativeEthernet....
You need to start debugging your code.
Pete
No it won't. You've fixed the index but you can't treat queue1.readBuffer() as an array. You have to save the address in a pointer and then use it as I showed in #12.
Pete
Can you also post photos of the underside of each Teensy?
Pete
(float)(queue1.readBuffer()[i])
This won't work. readBuffer returns the address of a buffer, if one is available, and returns NULL otherwise.
Using 'i' as an array index will also fail because it...
You aren't using the most recent version of the Arduino IDE and Teensyduino. The version of Teensyduino you are using does not have the play() function in the Audio library AudioPlayQueue.
You...
Can you post photos of the two Teensys?
Pete
It's not clear to me what the hardware setup is like. Do you have two completely separate installations, one works and the other doesn't. When you exchange the T3.2 between the two setups, the...
What do you mean by "firmware reference"? The firmware is your code.
Distinguish which one from which other one? If you mean the T3.2, they should be the same.
If you mean the code in each...
Did you buy them all from PJRC?
Pete
And the code @defragster used on a T4.1 also works on a T3.2
Part of the problem may be that you are running the most recent version of Teensyduino on a rather old version of the Arduino IDE. The...
Can you send MIDI to a PC/MAC and monitor the received MIDI (e.g. with MIDI-OX)? I have used usbhost on a T3.6 to receive MIDI from a M-Audio keyboard and relay it to a PC and I don't have any...
Yes. As long as the SD card doesn't lag between each WAV it'll be fine. If it does lag, you could store the audio files on PSRAM and use AudioPlaySerialflashRaw but, as its name implies, it doesn't...
Do you have any versions in between 1.8.13+TD 1.53 and 1.8.19+TD 1.56?
Can you try 1.8.15+TD 1.54 and/or 1.8.16+TD 1.55?
The write_packed function in USBHost_t36/midi.cpp changed after 1.8.13+TD...
Just a (very long) shot from the hip: remove the #pragma and recompile on 1.8.19 Teensyduino 1.56 and try it. Then set the IDE to Tools|Optimize|Smallest Code and try again. Is there any difference?...
Can you post your code or reduce it to a smaller sketch which reproduces the problem?
Which version(s) of Teensyduino are you using with 1.8.13 and 1.8.19? (Note that 1.8.13 and 1.8.19 are the...
The assignment operator appears to be overloaded such that if the right hand side is a C string and the left hand side is a String, the compiler will generate the code required to perform what is...
The int() function does not convert a string to an integer. It converts from the datatype in the parentheses to an int. In your code, str is a pointer to (i.e. the address of) a char array. The int()...
SD.open isn't defined for String arguments. Use a C character string:
const char *foo = "datalog.txt";
File dataFile = SD.open(foo);
Pete
It won't cause the main problem but the volumepod function sends two CC 13
usbMIDI.sendControlChange(7, val, 12);
usbMIDI.sendControlChange(7, val, 13);
...
I fixed the error here and your code does indeed blast out a lot of MIDI stuff, but not only D#.
Here's a piece of a log from MIDI-OX.
===> MIDI-OX Version: 7.0.2.372
===> Log Opened: Sun...
There's another array which causes an error but both problems are fixed if you define ROWS to be 12 instead of 11.
const byte ROWS = 12;
Now it compiles.
Pete