have you tried to load EasyLoader example from M5Stak product page?

Posts made by robski
-
RE: M5StickC Plus2 not booting
-
RE: M5Stack Core2 will not enter download mode
have you tried to use M5Burner and "erase" option first? have you tried to load any simple Arduino code? or any available EasyLoader project from M5 product page?
-
RE: Tab5 RS485 connector
cable is well hidden in Tab5 box, good to know you found it
-
RE: Desperately Seriously Need Help Programming/Coding!!!!
did you looked here by chance?
-
RE: Cardputer Driver Issues
@Jomac said in Cardputer Driver Issues:
@robski said in Cardputer Driver Issues:
do you use m5burner?
if so what com port it shows there when you connect cardputer?
also what com port it is showing when cardputers on/off switch is in off and then you press and hold BOOT btn and then connect usb?It depends on how it feels, sometimes it will connect on Com 4 and other times on Com 9???
thing is that comport you see with just connecting cardputer to usb is one of two available
second comport (needed for programming) is visible when on dead device you press and hold boot button G0 and then connect to usb
-
RE: Cardputer Driver Issues
do you use m5burner?
if so what com port it shows there when you connect cardputer?
also what com port it is showing when cardputers on/off switch is in off and then you press and hold BOOT btn and then connect usb? -
RE: Desperately Seriously Need Help Programming/Coding!!!!
for start: what hardware do you have for this task, are you able to update firmware via M5Burner to your controller?
-
RE: M5 Tough - M12 x 1.5 nut Removal?
its easier from inside - just undo nut - than using screwdriver in "bolt" flat slot from outside
-
RE: How to remove Tab5 battery compartment cover?
press and hold red button then slide it out
-
RE: Possible issue with Tab5 and UiFlow v2.3.1 - (i2c driver install error)
just connect voltage to sensor and measure what voltage it is giving out between output pin and ground. for 0 kPa your raw Analog value should be around 1300 i think
-
RE: Possible issue with Tab5 and UiFlow v2.3.1 - (i2c driver install error)
with your raw value as 3287
sensor range -100 to 200
analog range 0 to 4095your calculated pressure should be around 140
-
RE: Possible issue with Tab5 and UiFlow v2.3.1 - (i2c driver install error)
what are RAW values you are getting from your sensor? pure analog read value?
try below
float raw = analogRead(sensorPin); // Read analog value
float Vout = raw / 4095.0 * 3.6; // Convert to voltage (assuming 3.6V reference)
float P = (Vout - 0.1) / 3.0 * 300.0 - 100.0; // Calculate pressure in kPa -
RE: Possible issue with Tab5 and UiFlow v2.3.1 - (i2c driver install error)
@Kenzo as Ive said before try below: remove "get voltage" block and try your Tube Pressure unit with analog value only
-
RE: Possible issue with Tab5 and UiFlow v2.3.1 - (i2c driver install error)
try with analog value, delete get voltage block
on your original "tube pressure" example use raw analog value for start too
-
RE: Possible issue with Tab5 and UiFlow v2.3.1 - (i2c driver install error)
ports in general are configurable, some units have just one general port which can be analog, uart, I/O, i2c.... try to build project with diff analog sensor (even without this being connected) like potentiometer unit or something...