Search found 8 matches

by Nagup14
Mon Jan 13, 2020 8:26 pm
Forum: ESP32 Arduino
Topic: ESP32 Connect with ANCS?
Replies: 4
Views: 5695

Re: ESP32 Connect with ANCS?

Much appreciated,

I'll search around on how to use this example
by Nagup14
Fri Jan 10, 2020 5:02 pm
Forum: ESP32 Arduino
Topic: ESP32 Connect with ANCS?
Replies: 4
Views: 5695

Re: ESP32 Connect with ANCS?

Thank you very much for replying, I think I saw a github thread where you and some other people were discussing this code. I would like to upload it to my esp32, however I get an error that goes like this 'm_remoteBda' is not a member of 'BLEDevice' not sure what this means, I know you said it won't...
by Nagup14
Thu Jan 09, 2020 5:24 pm
Forum: ESP32 Arduino
Topic: ESP32 Connect with ANCS?
Replies: 4
Views: 5695

ESP32 Connect with ANCS?

I am working on a project, this project is a HUD/HMD like google glass. I want to get the esp32 to connect to the ANCS BLE services. I understand the ESP32 needs to "announce" that it is looking for specific characteristics/services then the ESP32 can connect to them. I also think it needs to verify...
by Nagup14
Sat Jan 05, 2019 12:17 pm
Forum: Hardware
Topic: Writing a custom library to mirror/flip text on an SSD1306 OLED display
Replies: 8
Views: 11190

Re: Writing a custom library to mirror/flip text on an SSD1306 OLED display

Ive found a solution, turns out it was in the library I was using already, just had to find all the commands and mix "flipDisplayVertically" and "mirrorScreen" works like a charm.

The library is "SSD1306.h"
by Nagup14
Wed Jan 02, 2019 9:20 pm
Forum: Hardware
Topic: Writing a custom library to mirror/flip text on an SSD1306 OLED display
Replies: 8
Views: 11190

Re: Writing a custom library to mirror/flip text on an SSD1301 OLED display

ESP_Sprite wrote:
Wed Jan 02, 2019 8:21 pm
I just checked the SSD1301 datasheet; it's actually one of the few controllers that does not have a register setting for this, sorry.
my bad, I actually meant 1306 i believe its called "segment re-map" but I dont know how to actually change the register setting
by Nagup14
Wed Jan 02, 2019 11:55 am
Forum: Hardware
Topic: Writing a custom library to mirror/flip text on an SSD1306 OLED display
Replies: 8
Views: 11190

Re: Writing a custom library to mirror/flip text on an SSD1301 OLED display

Also know that it's usually trivial to modify an existing library to either write the pixels mirrored, or change a register setting in the oled controller so the display does the mirroring all by itself. No need to search for a dedicated library for that. That would be really useful, im worried usi...
by Nagup14
Wed Jan 02, 2019 11:51 am
Forum: Hardware
Topic: Writing a custom library to mirror/flip text on an SSD1306 OLED display
Replies: 8
Views: 11190

Re: Writing a custom library to mirror/flip text on an SSD1301 OLED display

costaud wrote:
Wed Jan 02, 2019 6:22 am
How about this one ?
https://github.com/espressif/esp-iot-so ... rs/ssd1306
Do I install this from the preferences menu in the Arduino IDE?
by Nagup14
Tue Jan 01, 2019 8:02 pm
Forum: Hardware
Topic: Writing a custom library to mirror/flip text on an SSD1306 OLED display
Replies: 8
Views: 11190

Writing a custom library to mirror/flip text on an SSD1306 OLED display

I have been searching for a library that will mirror text on an OLED display so that when I try to read the text on the screen from a mirror, it will appear the right way around, i.e. I can read the text on the screen when I look at it through a mirror but will appear flipped on the screen itself. I...