Search found 16 matches

by zfm076
Tue Nov 03, 2020 1:58 am
Forum: micro:bit boards
Topic: Microbit DAPlink or Computer or USB drive problem?
Replies: 2
Views: 3322

Re: Microbit DAPlink or Computer or USB drive problem?

shaoziyang wrote:
Mon Nov 02, 2020 2:46 pm
You can try to turn off the power saving option of USB.
Hi, Should not be usb energy saving problem.Because my friend's computer is working all the time, The computer monitor is on all the time, there is no dormant state. Can be the problem that DAPlink:0249 internal interrupt is stuck dead?
by zfm076
Mon Nov 02, 2020 4:35 am
Forum: micro:bit boards
Topic: Microbit DAPlink or Computer or USB drive problem?
Replies: 2
Views: 3322

Microbit DAPlink or Computer or USB drive problem?

my microbit code: while(1) { microbit.serial.send(microbit.thermometer.getTemperature()); microbit.sleep(50); //Send the temperature to the computer every 50ms } Problem: In my computer : It worked all day, The yellow light behind the board also blinks.There is no problem. But it's on my friend's co...
by zfm076
Wed Apr 15, 2020 8:35 am
Forum: micro:bit boards
Topic: Schematic and PCB of v1.5 microbit
Replies: 6
Views: 5048

Re: Schematic and PCB of v1.5 microbit

All right. By the way, how many layers is this microbit PCB? Two layers or four? I don't know... I was going to reply and say "surely it's four layer..." but I took a quick look under the microscope for a few minutes and couldn't see any obvious evidence of more than the top and bottom layers (i.e....
by zfm076
Fri Apr 10, 2020 6:22 am
Forum: micro:bit boards
Topic: Schematic and PCB of v1.5 microbit
Replies: 6
Views: 5048

Re: Schematic and PCB of v1.5 microbit

jimmo wrote:
Thu Apr 09, 2020 6:53 am
zfm076 wrote:
Thu Apr 09, 2020 1:24 am
There is 1.3 schematic,But I didn't find the PCB of 1.3.
There has never been a released PCB design for the "production" micro:bit. Only for the reference design.
All right. By the way, how many layers is this microbit PCB? Two layers or four?
by zfm076
Thu Apr 09, 2020 1:24 am
Forum: micro:bit boards
Topic: Schematic and PCB of v1.5 microbit
Replies: 6
Views: 5048

Re: Schematic and PCB of v1.5 microbit

What do you need to know that isn't on the 1.3 schematic? https://github.com/bbcmicrobit/hardware (As far as I know all htey changed was the accel/mag sensors, which is described in enough detail at https://tech.microbit.org/hardware/) I'm not aware that they ever released anything other than a PDF...
by zfm076
Wed Apr 08, 2020 6:03 am
Forum: micro:bit boards
Topic: Schematic and PCB of v1.5 microbit
Replies: 6
Views: 5048

Schematic and PCB of v1.5 microbit

Who knows where I can download the schematic and PCB of v1.5 microbit hardware? :D
by zfm076
Mon Jan 13, 2020 2:13 am
Forum: micro:bit boards
Topic: What are the open source C++ library for microbit?
Replies: 4
Views: 4867

Re: What are the open source C++ library for microbit?

Yes, the microbit-dal from Lancaster is probably a very good starting point. Really the next step from there is to go directly to either mbed or nrfx, but then you'll be doing everything manually. The microbit-dal is very straightforward to use (especially if you're using it with the mbed tools lik...
by zfm076
Wed Jan 08, 2020 7:19 am
Forum: micro:bit boards
Topic: What are the open source C++ library for microbit?
Replies: 4
Views: 4867

Re: What are the open source C++ library for microbit?

lujo wrote:
Tue Jan 07, 2020 12:09 pm
Hi,

Arduino IDE? See https://github.com/sandeepmistry/arduino-nRF5.

lujo
Thanks. The arduino-nRF5 have PIN define file only . I find another Full open source library :https://github.com/lancaster-university/microbit-dal/ Then,Is there any better library than this?
by zfm076
Tue Jan 07, 2020 10:36 am
Forum: micro:bit boards
Topic: What are the open source C++ library for microbit?
Replies: 4
Views: 4867

What are the open source C++ library for microbit?

Hi,Boy.I don't want to use the micropython library for microbit. Because micropython takes up a lot of space. So,now I'm looking for some C++ libraries for microbit . Do you have any recommendations? :lol:
by zfm076
Tue Jan 07, 2020 10:30 am
Forum: micro:bit boards
Topic: How to get windows disk device instance path by python?
Replies: 4
Views: 4684

Re: How to get windows disk device instance path by python?

stijn wrote:
Thu Jan 02, 2020 1:03 pm
Something like this: https://superuser.com/questions/634842/ ... using-wmic or maybe using the Python psutil module
Thank you very much.Helped me a lot. :D