Search found 166 matches
- Sat Nov 11, 2017 9:53 am
- Forum: micro:bit boards
- Topic: Installing Mu on Linux
- Replies: 5
- Views: 3421
Installing Mu on Linux
Has anyone got a sucess story? I downloaded the zip from github and un zipped it. I then typed pip3 install -r requirements.txt this nearly worked first time, but i had to use sudo apt-get install ... and re-ran pip3 install ... I now have a partially working Mu ide. Issue 1: file only works if i'm ...
- Sat Nov 11, 2017 2:39 am
- Forum: General Discussion and Questions
- Topic: Library radio
- Replies: 1
- Views: 1027
Library radio
Microbit micropython has a radio module. import radio Do any of these other micro controlers which feature micro python also support it. I'd like to make a remote control robot using my laptop or a raspbery pi as the joystick Does python 3 suport this radio comunication, the only projects i find for...
- Fri Nov 10, 2017 4:30 pm
- Forum: micro:bit boards
- Topic: Bluetooth Pairing Mode Probem
- Replies: 6
- Views: 3370
Re: Bluetooth Pairing Mode Probem
You can only get blue tooth working in languages other than micropython.
It's only the initial program and other downloadable images which csn be used to get pairing mode up and running. Simply holding down a and b then pressing reset wont work if you've flashed a program onto the microbit
It's only the initial program and other downloadable images which csn be used to get pairing mode up and running. Simply holding down a and b then pressing reset wont work if you've flashed a program onto the microbit
- Fri Nov 10, 2017 1:34 pm
- Forum: micro:bit boards
- Topic: radio in micro:bit
- Replies: 6
- Views: 3458
Re: radio in micro:bit
Using google.co.uk search for 'lancaster university microbit' i found c++ resources there. I haven't tried any of it as i don't know c++ and have been unable to get any flashing software for linux
- Fri Nov 10, 2017 11:32 am
- Forum: micro:bit boards
- Topic: Driving a 28BYJ-48 Stepper Motor?
- Replies: 13
- Views: 11052
Re: Driving a 28BYJ-48 Stepper Motor?
3v from 5v can easily be achieved with a voltage divider made up of a 3k resistor and a 2k resistor. Connect the 2 resistors in series between gnd and 5v. The voltage across the 3k resistor will be 3v and similarily 2v across the 2k resistor. Because the current drain of a microbit is a few milli am...
- Wed Nov 08, 2017 12:17 am
- Forum: General Discussion and Questions
- Topic: Help with assignment
- Replies: 5
- Views: 2573
Re: Help with assignment
Bug 1: x=accelerometer.get_values()
Should read x=accelerometer.get_x()
Bug 2:aswell as display.scroll(...) you need to use radio.send("message") also a consumer micro:bit will need message =radio.receive()
Are [code] [/code] tags not valid on this BB
Should read x=accelerometer.get_x()
Bug 2:aswell as display.scroll(...) you need to use radio.send("message") also a consumer micro:bit will need message =radio.receive()
Are [code] [/code] tags not valid on this BB