It would depend upon the circuit of the LCD.
I am not familiar with PlatformIO but you program still has #include <LiquidCrystal_I2Cw2.h> and potentially not #include "LiquidCrystal_I2Cw2.h".
PlatformIO is complaining that it cannot find...
As Paul mentioned if you have LiquidCrystal_I2Cw2.h in the "Libraries" directory use #include <LiquidCrystal_I2Cw2.h> else if it's in the same directory as your program use #include "LiquidCrystal_I2Cw2.h".
If you want the ultimate guarantee use...
I think that in order to fully understand what is going on, you need to get some idea of the interface board circuit.
I am pretty sure that R5 and R6 are I2C pull up resistors.
We need to determine what J1, J2 and J3 do.
Also what is Q1?
If we...
OK, lots of things here. If the display is a Buydisplay.com display, and I have no reason to believe that it isn't,
1) If you were to buy the display from Buydisplay.com, you are asked if you want a 5V interface or 3.3V interface. Which version...
Can you tell us the exact display module 6that you are using, so that we may be able to look it up.
Someone might even have the display and be able to more easily work out why it is not working.
You could look at this one. Has an ability to choose which wireX to use.
Alternatively you could choose a library with a fixed wire and change all entries to wire2 or wire3.
Here goes the First Chapter, just dealing with installation.
Download Visual Studio Community [VS](free) from here.
Install the program..during installation the following screen will appear. I have selected all the items that I require but as a...
For large projects I use Visual studio, writing to a "Phantom Teensy i.e. simulating the Teensy bits I am interfacing". That way I can single step where necessary and find the problems in my code.
I even use it with Nextion code, which is...
As far as I can see there is nothing about that library that is specific to PJRC or Teensy.
Perhaps you should contact the author at paul@pcserviceselectronics.co.uk.
Since things changed when you changed the hardware it would be useful if you can post your schematic and pictures of your current hardware. Also give any circuit changes between the prototype and the PCB setup.
I have suspected for some time that the only retailer allowed by Sparkfun to sell Teensy products in the UK is, "The Pi Hut". No one else seems to have stock since Sparkfun took over.
When you post code, can you do it between code tags using the </> button.
This preserves indenting which makes your code more readable and therefore more likely to get a response.
I have posted your code below so you can see the difference.
It is...
I compressed your code a bit, you seem to be double spacing lines.
#include <Arduino.h>
#include <AccelStepper.h>
#include <string.h>
/*
The step resolution for all drivers : 6400 step/revolution
J1 10:1
J2 25:1
J3 25:1
J4 15:1
J5...
I think you mean that you are using a radar sensor module that uses a IWR6843AOP.
As far as I can see the IWR6843AOP chip has no direct connection to as PC.
Perhaps you should state what module you are using.
I know the problem!
If it helps anyone during these winter months ( and in my case year wide ), I have been suffering from "Brain Fog". It is/was terrible. I could not work on anything. The problem was very low Vitamin D levels. I now take Vit D...
I would suggest you look at the TMP117 for the temperature sensor. Much more accurate and easier to use being I2C.
No worries about voltage conversion, noise etc.
When posting code can you paste it between CODE tags using the </> button.
It makes it much more likely that you will get an answer to your query as your code is presented in a more understandable mannber.
#include <Arduino.h>
#include...
From Kickstarter:
Will I be charged more later?
That depends. When you redeem your proof of pledge, you may be required to pay applicable sales or value-added tax and/or shipping fees, depending on the reward and where it is being delivered.
I would say that IS the main problem. Teensy is mainly a dev board, but not an ecosystem, like AF Feather or SF Thing Plus. The T3.5/6 ot T4.1 were great for me when I wanted to have a powerful single board MCU with SDIO. Yes, the Teensies have...
I suggest you try using QNEthernet.
NativeEthernet is NOT actively SUPPORTED by it's author and hasn't been for quite some time, whereas QNEthernet is VERY ACTIVELY SUPPORTED.
The Author is often on this forum helping users with their Ethernet code.
Ok, when using the Teensy with an Audio Board like that, it has happened that parts from the underside of the Teensy touch parts of the Audio Board and SHORT OUT. That's one of the reasons why it's better to use tall plug and sockets for the...