@jackd25
You can try turn off system proxy or VPN if has any, or change a network.
Global Moderators
Forum wide moderators
-
RE: m5 burner not workingposted in ESPHome
-
RE: TAB5 I2C issues using UIflow2posted in Cores
@BR123456
The default internal I2C scanner of Tab5 in UiFlow2 has bug, we are now fixing it! -
RE: PPS module and touchscreenposted in Modules
Hello @BruderTom
the issue seems to be an I2C conflict. Internal I2C already uses Wire1; the PPS code initializes a second I2C instance (Wire) with the same GPIOs for SDA and SCL. The result is: both I2C instances (Wire and Wire1) fight against each other.
Try replacing below line so the correct Wire1 instance is used for PPS as well:
// while (!pps.begin(&Wire, M5.In_I2C.getSDA(), M5.In_I2C.getSCL(), MODULE_POWER_ADDR, 1000000U)); while (!pps.begin((M5.In_I2C.getPort() == I2C_NUM_1) ? &Wire1 : &Wire, M5.In_I2C.getSDA(), M5.In_I2C.getSCL(), MODULE_POWER_ADDR, 1000000U));Thanks
Felix -
RE: I2C issues on the TAB5posted in UiFlow 2.0
Hello @BR123456
it looks like the internal scan in UIFlow 2.3.8 default scanner is broken - I do not get any results either.
However if I scan the internal bus via I2C blocks it picks up all internal I2C addresses and what's connected to the M-Bus. The example is called M5Tab5_I2C_Scan_Test_UIFlow2.3.8 and you can find it in the UIFlow2 Project Zone.
Thanks
Felix -
RE: M5 StickC Plus2 Grove port not workingposted in M5 Stick/StickC
Hello @paulgrevink
have you tried to disconnect everything from M5StickCPlus2 and fully powering it off by pressing and holding the power button?
Also have you tried to erase flash using M5Burner before installing UIFlow2 firmware?
BTW: I did a test and installed ESPHome basic firmware, then installed UIFlow2.3.8 firmware and then ran M5StickCPlus2_GPIO32_GPIO33_ON_OFF_UiFlow2.2.0 from Project Zone without issue, e.g GPIO32 and GPIO33 toggle just fine between 0 V and 3.3 V.
Note: While ESPHome was installed GPIO32 measured something like 0.2 V.
Thanks
Felix -
RE: Tab5 screen don't display anything with UiFlow 2.0posted in UiFlow 2.0
Hi guys
yes, it looks like there was a display / touch related change. See Screen Driver Change note here.
My guess would be that this change has not yet fully been integrated into UIFlow2.
Thanks
Felix -
RE: Is it possible to use more than one I2C Unit with AtomS3R? (Like AtomS3R + RFID Unit + Dual Button Unitposted in Atom
Hello @Rusticus42
there is a solution: use a M5PbHub unit (which is an I2C unit) to read the button states of the Dual Button unit.
I created an example in the UIFlow2 Project Zone: M5AtomS3_RFID_PbHub_DualButton_Test_UIFlow2.3.7
Note: I do not have an M5AtomS3R so you probably need to adapt the example.
Thanks
Felix -
RE: Cannot get StamPLC to run main.pyposted in UiFlow 2.0
@tiditidi
You gotta push the download button to permanetly flash the code to the device:
-
RE: Is it possible to use more than one I2C Unit with AtomS3R? (Like AtomS3R + RFID Unit + Dual Button Unitposted in Atom
Hello @Rusticus42
yes, it is possible to connect more than one I2C unit. However Dual Button unit is not an I2C unit. You can see that from the color of the connector.
- I2C units have a red connector
- I/O units have a black connector
- UART units have a blue connector
The connector on AtomS3R is white which meas it can be setup for I2C, I/O or UART mode, but only one at the time.
Thanks
Felix -
RE: Hello - Does anyone have a working version or Ardunio sketch to testthe mic and speaker on atoms3r+echo base(K147 unit - Ai chatbot) please? i tried all the documentation sketches and nothing works. Please help.posted in Atom
@alkan123
What did you mean by nothing works?
This is a firmware for testing AtomS3R+Atomic Echo Base: https://drive.google.com/file/d/1WpkKjaky1qSQvfkpKsOvaeMFO-Kb1zPO/view?usp=drive_link