Search found 288 matches

by Turbinenreiter
Tue Oct 07, 2014 4:48 pm
Forum: Hardware Projects
Topic: Module for MPU9150
Replies: 54
Views: 54358

Re: Module for MPU9150

datasheet
http://dlnmh9ip6v2uc.cloudfront.net/dat ... -9150A.pdf
register map
http://dlnmh9ip6v2uc.cloudfront.net/dat ... 50A-00.pdf

I think the sample rate is pretty irrelevant for us. Lowering it may lower power consumption.
by Turbinenreiter
Tue Oct 07, 2014 1:36 pm
Forum: General Discussion and Questions
Topic: What is basic hardware requirements for micropython
Replies: 27
Views: 35692

Re: What is basic hardware requirements for micropython

there is no documentation of that chip whatsoever, it's dead in the water. some people will try to reverse engineer it, and if they like that, let them have fun, but i don't think this chip will see actual usage anytime soon. everyone using it right now is just in for the fun of figuring it out. if ...
by Turbinenreiter
Sun Oct 05, 2014 12:54 pm
Forum: Hardware Projects
Topic: Module for MPU9150
Replies: 54
Views: 54358

Re: Module for MPU9150

hey, nice to see my second user! I just pushed an update to github. added passthrough mode - you no longer have to connect ESD and ESC changed mode() to wake() and sleep() the default setting after init know is awake, passthrough mode active, accel and gyro range set to 3 added get_*_raw(), so you c...
by Turbinenreiter
Fri Oct 03, 2014 4:13 pm
Forum: General Discussion and Questions
Topic: profiling
Replies: 2
Views: 3369

profiling

I started writing a simple profiler: https://github.com/turbinenreiter/micropython-uprofile Before I did that, I looked into porting 'profile' from Cpython, which is a profiler written in python. However, it relies on 'compile', which isn't implemented yet. In the meantime, this little helper may be...
by Turbinenreiter
Thu Oct 02, 2014 12:50 pm
Forum: Programs, Libraries and Tools
Topic: micropython.js - emscripten
Replies: 3
Views: 6321

micropython.js - emscripten

trying to compile micropython to javascript

https://github.com/micropython/micropython/issues/888
by Turbinenreiter
Tue Sep 30, 2014 8:29 am
Forum: Hardware Projects
Topic: MicroPython on Kite
Replies: 10
Views: 11744

Re: MicroPython on Kite

ha, we are the first two airborne micropythonistas.
by Turbinenreiter
Mon Sep 29, 2014 8:19 am
Forum: MicroPython pyboard
Topic: data write speeds and broken SD cards
Replies: 36
Views: 36224

Re: data write speeds and broken SD cards

I nailed that down to the file.write(). It usually takes 5ms, but then suddenly 5000ms for one time. closing and reopening doesn't help. flushing also doesn't help. /edit: nopes. it's not the file.write(). happens even if i comment that out. //edit: adding a 1ms delay seems to fix that. still no ide...
by Turbinenreiter
Wed Sep 24, 2014 11:35 am
Forum: General Discussion and Questions
Topic: Some MicroPython video from PyConUK 2014
Replies: 1
Views: 2629

Re: Some MicroPython video from PyConUK 2014

Seems like a module for the nRF24 is coming. Nice.
by Turbinenreiter
Tue Sep 23, 2014 5:26 pm
Forum: MicroPython pyboard
Topic: data write speeds and broken SD cards
Replies: 36
Views: 36224

Re: data write speeds and broken SD cards

Have any of you experienced 'hangs'? In my loop, I call gc.collect() on every iteration. Most of the time it runs at constant 200Hz, but sometimes it would hang for about 5s. If I only call gc.collect() on every n-th iteration, it happens more often. At the moment, I collect on every second iteratio...
by Turbinenreiter
Mon Sep 22, 2014 1:23 pm
Forum: MicroPython pyboard
Topic: Expansion boards - pyshields
Replies: 5
Views: 18031

Re: Expansion boards - pyshields

Ok, so I'm working on an IMU shield. First time designing a PCB. IMU shield BMP180 pressure/altitude sensor LSM9DS0 3-axis acceleromter/gyro/magnetometer (maybe: MMA6827 3-axis accelerometer for high g-loads) male pins for the 4 servo channels and pwr/gnd, so you can easily plug in servos Another sh...