Search found 18 matches

by vebryn
15 Jan 2018 23:50
Forum: Z-Uno
Topic: Serial strange behaviour
Replies: 26
Views: 25557

Re: Serial strange behaviour

AltSoftSerial library seems nice : https://github.com/PaulStoffregen/AltSoftSerial.

However, it is based on an frequency timer (FTM) or an interrupt register (ICR).

What is the easy way to adapt this library ? Is FTM close to GPT ? Is there any ICR available on Z-UNO ?

Best regards.
by vebryn
11 Jan 2018 02:12
Forum: Z-Uno
Topic: Serial strange behaviour
Replies: 26
Views: 25557

Re: Serial strange behaviour

argh! I just saw on Reference page that 9600 is the minimum speed accepted. Sets the data rate in bits per second (baud) for serial data transmission. For USB baudrate is fixed on 115200 bps, on UART it is possible to select baudrate. Valid values are: 9600, 14400, 19200, 38400, 57600, 115200, 23040...
by vebryn
11 Jan 2018 01:29
Forum: Z-Uno
Topic: Serial strange behaviour
Replies: 26
Views: 25557

Serial strange behaviour

Hello, I suspect an issue using baudrate less than 9600. Let me explain some cases : Case 1, 2 and 3: Z-Uno connected to PC using Serial int ByteReceived; void setup(){ Serial.begin(9600); } void loop(){ if (Serial.available() > 0){ ByteReceived = Serial.read(); Serial.print(char(ByteReceived)); } }...
by vebryn
17 Dec 2017 22:43
Forum: Z-Uno
Topic: Serial parity
Replies: 0
Views: 2647

Serial parity

Hi, Z-Uno is awesome. I hope I will migrate from Raspberry to Z-Uno. I'm unavailable to read Serial1 properly. I get following result : DEC BIN BIN HEX CHAR 252 1111111111111100 1111100 7C | 252 1111111111111100 1111100 7C | 248 1111111111111000 1111000 78 x 192 1111111111000000 1000000 40 @ 224 111...
by vebryn
16 Dec 2017 22:05
Forum: Z-Uno
Topic: issue with serial.find
Replies: 1
Views: 2269

Re: issue with serial.find

There is an error into find/findUntil functions, please read https://github.com/Z-Wave-Me/Z-Uno-Core/pull/113.
by vebryn
16 Dec 2017 20:51
Forum: Z-Uno
Topic: issue with serial.find
Replies: 1
Views: 2269

issue with serial.find

Hi, I'm trying following code in order to find a string into Serial : void loop() { char target[] = "abc"; Serial.find(target); } At compilation, I get following error : Compiling file "Stream_ucxx.c" by means of SDCC... Stream_ucxx.c:438: warning 85: in function __cxx__Stream__m...
by vebryn
16 Dec 2017 11:21
Forum: Z-Uno
Topic: oled issue SSD1306
Replies: 2
Views: 3946

Re: oled issue SSD1306

Yeah, working much better with 0x3d i2c address! Thank you! If everything was so easy to solve :)

I didn't set the reset pin. Is this a good solution ?
I'm wondering if we can make text font bigger (as we can do with numbers) ?
by vebryn
16 Dec 2017 02:49
Forum: Z-Uno
Topic: oled issue SSD1306
Replies: 2
Views: 3946

oled issue SSD1306

Hi, I just purchase Z-Uno, it seems amazing! I would like to use my oled screen from adafruit https://www.adafruit.com/product/326 . I load and upload OLEDFrontDemo. Nothing is displayed :? Screen => Z-Uno SDA => pin 10 SCL => pin 9 GND => GND Vin => 3v3 RST => pin 11 Oled screen is working fine wit...