are you able to send any uiflow created code to your m5stick?

Posts made by robski
-
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...
-
RE: Possible issue with Tab5 and UiFlow v2.3.1 - (i2c driver install error)
for start Tube Air Pressure unit is not i2c device, it gives out analog value... something not right with unit/tube pressure lib
-
RE: M5StickCplus can't flash UIflow2 Firmware
which exact firmware are you flashing in to it?
-
RE: I just hooked up my M5 core2 and started uploading tools etc and the screen switched off. Now it wont turn back on
just load fresh firmware via M5Burner or easyloader demo version to check it out, I have Core basic which LCD stopped working few years ago after loading new project bizarre... but controller itself still works just I cant use screen
-
RE: update
like with firmware adds new but often stops something old to work.... you can always load old version if something doesnt work