Skip to content
This repository was archived by the owner on Sep 6, 2023. It is now read-only.

Commit 5ebd5b3

Browse files
committed
updated library.properties and README file
1 parent 4357c34 commit 5ebd5b3

2 files changed

Lines changed: 11 additions & 12 deletions

File tree

README.md

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -34,18 +34,18 @@ Generally I see this issue when I try to open the serial port before it's ready.
3434
The Maqueen robot has 4 Neopixels on PIN 15, currently this is not supported in any Neopixel library that I have seen. The Neopixels do work with the Makecode IDE, so this is a limitation of Arduino/Neopixel Libraries (I believe).
3535

3636
The IR remote sensor works, but not as well as it could. I am using a very old method to read the IR data, using pulseIn. This works, but is limited.
37-
38-
---The biggest issue I've run across so far is no peer-to-peer support in the Arduino IDE. I am not even sure how it works. Again this is a non-issue with Makecode.---
37+
3938
BLE works, and Adafruit does provide an app for Android phones that support BLE. I was able to setup remote control via that app, and using one of Adafruits base sketches.
4039
https://play.google.com/store/apps/details?id=com.adafruit.bluefruit.le.connect
4140
There is probably an app for IOS as well, but I don't own a IOS device.
4241

42+
Peer-To-Peer feature added, see example5a and the related gamepad_sender example
43+
4344
## Usage
4445

4546
General Usage:
4647

47-
'''
48-
#include <Maqueen.h>
48+
```#include <Maqueen.h>
4949
Maqueen bot;
5050
5151
void setup() {
@@ -55,13 +55,11 @@ bot.begin();
5555
5656
void loop() {
5757
//program here
58-
}
59-
'''
58+
}```
6059
6160
The Maqueen library includes both the Adafruit_Microbit.h library and the NewPing.h library, you don't need to include them in your sketch, but you do need to invoke the classes.
6261
63-
'''
64-
#include <Maqueen.h>
62+
```#include <Maqueen.h>
6563
Maqueen bot;
6664
6765
//NewPing.h and Adafruit_Microbit.h are inlcuded the library header
@@ -73,8 +71,8 @@ void setup() {
7371
bot.begin(); //inits the Maqueen robot
7472
microbit.begin(); // inits Adafruits library
7573
}
76-
.....
77-
'''
74+
.....```
75+
7876
7977
These are defined in the library, and can be used as needed in your sketch.
8078
LED1 left led (red).
@@ -179,7 +177,8 @@ https://kd8bxp.blogspot.com/
179177
180178
## Credits
181179
182-
Copyright (c) 2018 LeRoy Miller
180+
Copyright (c) 2018-2020 LeRoy Miller
181+
Ken551 pull request #2 (merged July 18, 2020) Thanks
183182
184183
## License
185184

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=micro Maqueen
2-
version=1.1.0
2+
version=1.1.1
33
author=LeRoy Miller
44
maintainer=LeRoy Miller <kd8bxp@aol.com>
55
sentence=Simple library for the DF Robot micro:Maqueen BBC Micro:Bit Robot

0 commit comments

Comments
 (0)