@ioamas Be careful, it looks like the battery has swollen/failed/dangerous!
Posts made by teastain
-
RE: Battery Bottom2 does not charge from M5GO/FIRE Battery Bottom Charging Base
-
RE: New to M5, Lesser known firmwares, forums , or knowledge bases?
@MadMackz
"Pentesting, :hacking:, whatever. Interested in remote access and control stuff."Is this “Predatory Software”?
Is this like Bruce or Marauder RF hacking software.Illegal to use outside of your own home.
-
RE: How does the Unit IR work with bruce firmware in cardputer?
@somuchlight This is Bruce or Marauder RF hacking software.
Sort of a wanna be Flipper Zero.
Illegal to use outside of your own home.
Their logo is “Predatory Software”. -
Created a GitHub Repository for my RoverC and StickCPlus ESP_NOW project
M5Stack RoverC controlled with M5StickCPlus , via ESP_NOW RemoteControl:
https://github.com/teastainGit/RoverC-StickCPlus-ESP_NOW-Remote-ControlBut with no JoyC, just using the second StickCPlus IMU as a 'wand' to control the Rover.
This Project requires 2 M5StickCPlus Controllers:
https://docs.m5stack.com/en/core/m5stickc_plusor the new M5StickCPlus2:
https://docs.m5stack.com/en/core/M5StickC PLUS2controllers or a mix of either, but with suitable mods, mostly the include header:
-
RE: UiFlow 2.0 discuss(how-to, bug, feature request or sometings)
@riztronic The device includes a 5V to 3.3V power circuit, a built-in three-axis BMM150 geomagnetic sensor,
-
RE: Ultrasonic I2C module and using port B and Port C on Core2 for AWS with the included library
@tdahbura Deleted previous post with assertions that did not pan out in my tests!
Sorry -
RE: Make your own firmware
@colythdev Fair enough. M5Stack has a Visual Block IDE that creates Python scripts. Called UIFlow.
I personally use Arduino IDE to create C, C++ source files, automatically compiled into Op Codes and downloaded to the M5Stack device.
Both styles are supported by M5Stack.
The examples I linked to you are Arduino IDE.
Have fun and learn!
-
RE: M5Stickc plus2 Black Screen After Factory Reset
@kuriko @BizyBee is trying to load hacker software to interfere with RF communications, onto a Cardputer. Which is illegal and immoral.
(Bruce andShark in another post on this community)https://community.m5stack.com/topic/7023/problem-with-stick-c-plus2?_=1732888453159
-
RE: GPIO Pins for Ports A, B and C on Core2 AWS
@SirMichael
https://shop.m5stack.com/products/4pin-buckled-grove-cable
all lengths!
These are actually 'UN-buckled' type but they are an industry standard. -
RE: M5Stickc plus2 Black Screen After Factory Reset
@BizyBee Did you know that interfering with communications is illegal and anybody who aids them is complicit?
-
RE: Problem with Stick C plus2
@BizyBee Did you know that interfering with communications is illegal and anybody who aids them is complicit?
-
RE: issues with my M5 Atom Fly and Joy
@cepics The files are there, they are only edited and compiled with PlatformIO.cpp files:
https://github.com/m5stack/Atom-JoyStick/tree/main/examples/StampFlyController
Here is the main:
https://github.com/m5stack/Atom-JoyStick/blob/main/examples/StampFlyController/src/main.cpp -
RE: Make your own firmware
@colythdev the StickCPlus2 is a significant upgrade from the StickC, but easy to modify your code to suit.
https://github.com/m5stack/M5StickCPlus2/tree/master/examples
You can compare these M5StickCPlus2 basic sketches to the M5StickC.
Mostly, using this include helps:
#include "M5StickCPlus2.h"
-
RE: Trouble with SK6812 LED Strip and M5Stack CoreS3 using PORT A
@nefasto which end of the cable did you plug into the port?
IN or OUT? -
RE: Python development in UIFlow
@sternj Well, the Arduino IDE ver2 IDE is very good.
Just type in C, C++ and download (it compiles automatically.)
This is NOT your grandad's Arduino IDE ver 1 !!!
Here is a sample program to test serial:bool ticktock; //declare ticktock as a boolean flag void setup() { //runs once on start up Serial.begin(115200); //open the serial port for USB cable delay(500); } void loop() { //runs in circles! ticktock = !ticktock; //every pass through reverse the flag if (ticktock) { //test current value of the ticktock flag Serial.println("tick"); } else { //prints one or the other to the USB port Serial.println("tock"); } delay(1000); //wait for a second and run again! }
-
RE: Python development in UIFlow
@sternj Hi!
You sound like you are too advanced for drag and drop.
I think you should stick to micropython for its range and flexibility.
Cheers. -
RE: Env Pro (BME688)
@dnd3ch Most Unit style sensors have a compatibility section, down at the bottom of the sensor's document page:
https://docs.m5stack.com/en/unit/DLight Unit
Go down to the FAQ section near the bottom.Having said that:
All of the unit sensors will work with any M5Stack controller.
The Dial is just a StampS3 for example.The M5 core bases are another story and require research or asking here if they are compatible.
-
RE: myCobot 320 UIFlow comunication problems
@kuriko Why are there 2 UIFlows?
What is the difference between UIFlow1 and UIFLow2?
I see the occasional reference of UIFlow3?