Search found 38 matches

by rankor
Sun Dec 07, 2014 1:35 pm
Forum: Kickstarter logistics for the Micro Python campaign
Topic: Pyboard for production - How many boards can you order?
Replies: 2
Views: 49690

Pyboard for production - How many boards can you order?

I understand it as Micropython being for hobbyists first, correct? But with a few enhancements like watchdog and brown-out protection and having a proper development environment like a fully integrated Eclipse mode maybe Micropython could be used for real products as well, unsure at this stage. What...
by rankor
Sat Dec 06, 2014 1:08 am
Forum: MicroPython pyboard
Topic: Bluetooth HC05
Replies: 15
Views: 18128

Re: Bluetooth HC05

I have also found different tutorials saying different things. is PIn change: "AT+PINXXXX" or "AT+PSWD=XXXX" I can set the module in different modes because I can see the LED blink differently (1Hz, 2Hz). What does pyb.repl_uart(uart) do? can I use that on Ubuntu, meaning I can get a repl to just se...
by rankor
Sat Dec 06, 2014 12:17 am
Forum: General Discussion and Questions
Topic: UART - sending from pyboard to PC
Replies: 17
Views: 23174

Re: UART - sending from pyboard to PC

>>> from pyb import UART >>> uart=UART(3,9600) >>> pyb.repl_uart(uart) >>> uart.send('AT+PIN3456') >>> >>> y4=pyb.Pin('Y4',pyb.Pin.OUT_PP) >>> y4.low() >>> uart.send('AT+PIN3456') >>> >>> y4.high() >>> ERO:0 File "<stdin>", line 1, column 4 SyntaxError: invalid syntax >>> ERO:0 File "<stdin>", line ...
by rankor
Sat Dec 06, 2014 12:00 am
Forum: MicroPython pyboard
Topic: Bluetooth HC05
Replies: 15
Views: 18128

Re: Bluetooth HC05

>>> from pyb import UART >>> uart=UART(3,9600) >>> pyb.repl_uart(uart) >>> uart.send('AT+PIN3456') >>> >>> y4=pyb.Pin('Y4',pyb.Pin.OUT_PP) >>> y4.low() >>> uart.send('AT+PIN3456') >>> >>> y4.high() >>> ERO:0 File "<stdin>", line 1, column 4 SyntaxError: invalid syntax >>> ERO:0 File "<stdin>", line ...
by rankor
Fri Dec 05, 2014 11:37 pm
Forum: MicroPython pyboard
Topic: Bluetooth HC05
Replies: 15
Views: 18128

Re: Bluetooth HC05

Something happened there but I don't know what.

I plugged in the key to pin Y12 (ADC) and set that to an output pin and then set it high and try to write.
Can't I use the ADC like that?
by rankor
Fri Dec 05, 2014 11:36 pm
Forum: MicroPython pyboard
Topic: Bluetooth HC05
Replies: 15
Views: 18128

Re: Bluetooth HC05

>>> uart.send('AT+PIN2345')
>>> pyb.repl_uart(uart)
>>> uart.send('AT+PIN2345')
>>> ERO:0
File "<stdin>", line 1, column 4
SyntaxError: invalid syntax
>>> EERO:0
File "<stdin>", line 1, column 5
SyntaxError: invalid syntax
>>> ERO:()ERO:()
by rankor
Fri Dec 05, 2014 10:13 pm
Forum: General Discussion and Questions
Topic: How to get the Bluetooth module working (JYMCU...)?
Replies: 15
Views: 14160

Re: How to get the Bluetooth module working (JYMCU...)?

I continued in turbinreiters thread instead. better to keep it in one thread.
by rankor
Fri Dec 05, 2014 10:12 pm
Forum: MicroPython pyboard
Topic: Bluetooth HC05
Replies: 15
Views: 18128

Re: Bluetooth HC05

I did: from pyb import UART uart=UART(3,9600) # Using Y9,Y10. What do I do once I have the: pyb.repl_uart(uart) I tried to send: AT+PINxxxx like this: uart.send("AT+PIN3478") but when I tried to pair it was still the old password. I also tried to change the name with no luck. The module is blinking ...
by rankor
Fri Dec 05, 2014 10:04 pm
Forum: General Discussion and Questions
Topic: How to get the Bluetooth module working (JYMCU...)?
Replies: 15
Views: 14160

Re: How to get the Bluetooth module working (JYMCU...)?

Yes, I cannot get Bluetooth to work on Ubuntu. I know I have the hardware because I had Windows before and that worked fine.

hcitool scan gives me:
No such device.
by rankor
Fri Dec 05, 2014 6:19 pm
Forum: General Discussion and Questions
Topic: Cannot use touch buttons in 'Y' position?
Replies: 2
Views: 3063

Re: Cannot use touch buttons in 'Y' position?

I can 'beep' all connections between board and lcd so the soldering seems fine. So if the connection is good maybe something on the board is damaged I guess.