No response from the m5 team on twitter so I returned it through Amazon.
 
			
			
			
		Posts made by daslolo
- 
    RE: 5V pin not working on a M5Stack coreposted in PRODUCTS
- 
    RE: hardware FFT on the esp32posted in FAQS@m5mpy microcode is very low level, I like how these MCU bring back old memories and old hacks like I used to do on Amiga. And how in general they force into better programming habits. 
 So what I'm trying to do is general purpose signal camera. At the moment, a sound camera will do. From what I was told on eevblog, I need one FFT per microphone to calculate inter-mic delay. So far Arduino FFT switched to uint32 (faster on esp32 than uin8 I'm told) I'm getting 512 bins at 12 ms, which is't very zippy as I'll need 4 cameras at least. Not that big a deal because I don't need 60fps refresh but ... well, that would be nice :D
 As for the frequency, at the moment I'm interested in detecting the origin of low frequency sound as they're notoriously difficult to locate by ear. Eventually I'd like to expand into an EMF camera.
- 
    RE: Is M5Cloud down?posted in FAQSConcise code for sure. I need all the speed I can get so it'll be Arduino for now. 
 I'm surprised you wouldn't see any flicker on the display since you print every frame, also surprised that there is no clearScreen preceding the print. I'm thinking the python print has a background.
- 
    RE: 5V pin not working on a M5Stack coreposted in PRODUCTSSo @JimiT I tested the port, 5V flows through so the lower module has a problem. 
- 
    hardware FFT on the esp32posted in FAQSI noticed that some stm32 have very accelerated FFT and even the Klei library has one included. I was wondering if the esp32 had something good, (Arduino FFT doesn't count) 
- 
    5V pin not working on a M5Stack coreposted in PRODUCTSWhat's the deal with the 5V pin, 0V on it, by design? 
- 
    RE: Is M5Cloud down?posted in FAQS@jimit 在 Is M5Cloud down? ä¸è¯´ï¼š @m5mpy Great to hear... thanks for updating status.... you use cloud? how does it compare with arduino ide or ... platformIO 
 Calun should pop in any time now ;)
- 
    RE: M5Stack MultiApp Firmwareposted in PROJECTS@calin 在 M5Stack MultiApp Firmware ä¸è¯´ï¼š M5Stack MultiApp Advanced released: http://forum.m5stack.com/topic/194/m5stack-multiapp-advanced-firmware 
 Back to PlatformIO IDE :)With Web Radio and wifi auto-connection WPS! 
- 
    RE: How to draw with transparency?posted in FAQSanswer: use the TFT_eSPI library, you can pass transparency color in the sprite draw functions 
- 
    How to draw with transparency?posted in FAQSI see that RED is 255,0,0 so it seems the M5 lcd calls don't have an alpha value. Is it possible to add a transparency? 
- 
    RE: How to avoid text flicker ?posted in FAQSHere is the solution. https://github.com/Bodmer/TFT_eSPI/tree/master/examples/Sprite/Sprite_scroll Thanks to @Calin 
- 
    RE: Displaying text - how to move or change it?posted in PROJECTSAt the moment, clearing the old position then printing is the fastest way to do it http://forum.m5stack.com/topic/173/how-to-avoid-text-flicker/3 you can print to sprite if you use the eSPI library and that'll gain you a few ns on the chip but I think the bottleneck is the SPI protocol, that's what Bodner was saying. 
 You can wrap the clear and print in a function which will make your code as concise as using an object.
- 
    RE: How to avoid text flicker ?posted in FAQSYou can try PrintToSprite in the TFT_eSPI library. https://github.com/Bodmer/TFT_eSPI/issues/116 
- 
    RE: How does multitasking really work with loop()?posted in FAQS@calin freeze with no serial message. 
 What is the IDLE task and how do I control all this?
- 
    RE: How does multitasking really work with loop()?posted in FAQS@calin hahaha... wait, seriously? 
 But I am not trying to replace the delay with something else. I'm trying to understand why the m5 freezes up under certain conditions when using tasks. Oh and if I lower delay below 500 it will freeze much faster.
- 
    RE: How does multitasking really work with loop()?posted in FAQSthe tasks are started the task way from setup 
 loop only contains delay because without delay the program freezes