Search found 89 matches

by dvcam99
Thu Dec 21, 2023 2:55 pm
Forum: Feature Requests
Topic: INA219
Replies: 3
Views: 770

Re: INA219

Hello,

INA219 is I2C device. I´m pretty confident that you can adress this device via the existing I2C component inside FC.

BR
Dirk
by dvcam99
Thu Dec 07, 2023 1:21 pm
Forum: Feature Requests
Topic: ActivLook smart glasses and ESP32 BT LE
Replies: 3
Views: 5726

Re: ActivLook smart glasses and ESP32 BT LE

Hello guys,

many thanks for good informations and feedback. HC-05 could be a work around, not shure if it support Bluetooth LE.

I would prefere the ESP32 BLE direct way via Bluetooth BLE master GATT component. May a good reason to upgrade to FC10 too.

BR

Dirk
by dvcam99
Thu Dec 07, 2023 11:01 am
Forum: Feature Requests
Topic: ActivLook smart glasses and ESP32 BT LE
Replies: 3
Views: 5726

ActivLook smart glasses and ESP32 BT LE

Hello Matrix Team, I´m wondering if it is possible to support ESP32 Bluetooth LE (Low Engergy) master mode. I would like to sent meas data to a ActivLook smart glasses device. Protocol specs can be found under the following link: https://github.com/ActiveLook/Activelook-API-Documentation/blob/main/A...
by dvcam99
Sat Jul 15, 2023 9:54 pm
Forum: Bug Reports
Topic: ESP32 and Software UART
Replies: 4
Views: 685

Re: ESP32 and Software UART

Hello Martin,

many thanks I will it check out next, looks very intersting.

38400Baud is enought, I plan for 19200Baud.

THX
Dirk
by dvcam99
Sat Jul 15, 2023 8:12 pm
Forum: General
Topic: BME280 Barometer Component is not Compiling with ESP32
Replies: 3
Views: 566

Re: BME280 Barometer Component is not Compiling with ESP32

...ah sorry it ist FC Version 9
by dvcam99
Sat Jul 15, 2023 7:18 pm
Forum: General
Topic: BME280 Barometer Component is not Compiling with ESP32
Replies: 3
Views: 566

BME280 Barometer Component is not Compiling with ESP32

Hello Matrix Team,

I have used BME280 component with different PIC project is the past too.

Unfortunatly it is not possible to use this component with ESP32.

Is this a known issue?

BR

Dirk
by dvcam99
Sat Jul 15, 2023 7:14 pm
Forum: Bug Reports
Topic: ESP32 and Software UART
Replies: 4
Views: 685

Re: ESP32 and Software UART

Hi Ben,

I´ll need 3 UARTS for my project. ESP32 UART 2 and 3 are doing fine. UART 1 at the ESP 32 is used for USB flashing too I assume.

If I enable UART-1 for my puroose the ESP is reseting from time to time.

This is the reason why I would like to use software UART.

BR

Dirk
by dvcam99
Fri Jul 14, 2023 1:32 pm
Forum: Bug Reports
Topic: ESP32 and Software UART
Replies: 4
Views: 685

ESP32 and Software UART

Hello FC Team,

is there a known issue/problem in using software UART at a ESP32 device.

As soon as I select the Software UART the compiler will quit with a fault.

BR

Dirk
by dvcam99
Wed Jun 21, 2023 9:08 pm
Forum: General
Topic: CRC calculation inside C-Box
Replies: 5
Views: 1105

Re: CRC calculation inside C-Box

Hello together,

mayn thank for your help. I could sove my problem with your help.

Attached my FC solution:
CRC8_c_code_V_1_2.fcfx
(12.19 KiB) Downloaded 83 times

BR

Dirk
by dvcam99
Fri Jun 16, 2023 11:57 am
Forum: General
Topic: CRC calculation inside C-Box
Replies: 5
Views: 1105

CRC calculation inside C-Box

Hello Matrix Team, question ist it possible to use the follwing C-code inside FC in a C-Box /* Enter C code below this comment */ /* 8-bit CRC polynomial X^8 + X^2 + X + 1 */. #define FCV_POLY 0x07 unsigned char update_crc (unsigned char FCV_CRC, unsigned char FCV_CRC_SEED) { unsigned char FCV_CRC_U...