Some more info for you @Clinker8 has fully instrumented his lathe using Teensy. You can see some of his entries starting in this stream.
EDIT: I think @Luni has expanded his library (or can be expanded) to give int64...
I don't know where you are, you have not put that information in when you registered for the PJRC forum, but the Adaptor card can be bought here for worldwide shipment.
If you have run my video, the switches along the top are "Nextion Dual State Buttons" with one pic for one state and a second pic for the other state.
The pic to be displayed is automatically handled by the Nextion...
Below is a video of something I did for a Home Heating Boiler Control as part of a larger Home Heating Management System.
The Nextion has a variety of different Objects/Tools that can be displayed/used to control the...
I don't know how fast you need to update the display, but have a look at these.
Updated by Serial so only take up 2 I/O lines.
Screen sizes up to 10.1" (for a price!!).
I have a library which eases the use of these...
Why not put the following code at the start of your code.
#if defined(ARDUINO_TEENSY31) || defined(ARDUINO_TEENSY32) || defined(ARDUINO_TEENSYLC)
uint8_t WIRE_INTERFACES_COUNT = 2;
#elif defined(ARDUINO_TEENSY35) ||...
Is it possible to capture the noise without the sound signal that you ARE trying to capture.
Analysis of the noise may lead to a way to isolate or significantly reduce it's effect.
#include <SPI.h>
#include <NativeEthernet.h>
#include <NativeEthernetUdp.h>
// Enter a MAC address for your controller below.
// Newer Ethernet shields have a MAC address printed on a sticker on the shield
byte...
Another solution might be to have an op-amp circuit to detect a "Fret" voltage and give a 0 or 1 output.
You would have a number of these for each string effectively producing an op-amp ladder.
See pic below for a...
I don't know whether these modifications will make any difference...but//#include <Wire.h>
//#include <WireIMXRT.h>
//#include <WireKinetis.h>
...the above are not necessary...andvoid setup() {
...
You could open your own GitHub page, copy all the code there, stating that it is copied from the original site, and post the changes there.
Everything on the original site referring to web servers has been archived as...
If it were me I would use a SX1509.
It has a built in keyboard scanner for up to 64 keys.
It will scan the kbd and return the keys(s) pressed.
You just have to scan an interrupt line to determine a key has been...
/**
* Audio Guestbook, Copyright (c) 2022 Playful Technology
*
* Tested using a Teensy 4.0 with Teensy Audio Shield, although should work
* with minor modifications on other similar hardware
*
* When handset is...
Could you observe the forum rules as shown above then someone might be able to replicate the problem and help you.
The keypad library has not changed since 2013.
What you want to Use is Visual Micro with Visual Studio.
It sort of sits on top / beside the Arduino IDE but gives you all the functionality of using Visual Studio and some added de-bugging capabilities.
I looked at...
Congratulations on what you have done/are doing.
When you said that your parts were hollow and ringing what "Jumped" into my head was fill them with Lead.
Literally "Just a thought"
I know the ReadFast / WriteFast routines are very fast, especially when fed with constant data.
I don't know how long a "NOP" takes, but seem to remember Paul saying that this sort of thing may not be consistent due to...
/************************************************** ************************************************** ********
Power Meter >> 1.008 gHz Clock
**************************************************...
If you are using UART8 you should be using Serial8.begin(baudRate);
Just look the the code for the serial ports - it set's everything up ready for transmission.
Have a look at this. I think it will serve your needs.
I have been thinking of using these. Basically they swap the ESP32 for the ESP8266, so more grunt!
EDIT:
Or for a little more power, consider this.
I thought PIO only worked with Visual Studio Code.
EDIT:
Just did a search on Google and Visual Micro is only able to support Visual Studio on Windows.