CubeCell-Arduino icon indicating copy to clipboard operation
CubeCell-Arduino copied to clipboard

Heltec CubeCell Series (based on ASR6501, ASR6502 chip) Arduino support.

Results 112 CubeCell-Arduino issues
Sort by recently updated
recently updated
newest added

**_Added and fixed some function to Arduino format, such as: int analogRead(pin) -- return adc level 0 ~ 4096; float analogReadmV(pin) -- return adc voltage in mV; The ASR650x series...

Board: CubeCell HTCC-AB02S GPS Example: LoRaWan_OnBoardGPS_Air530 After running for a few minutes in the open field, the code gets stuck in the GPS segment

The title is pretty straightfoward... The issue with the current "non-standard" `softSerial.h` library is that when using other libraries which rely on `SoftwareSerial.h` cannot find such library even though it...

According to the [PSoC 4100 family datasheet](https://resource.heltec.cn/download/CubeCell/PSOC_4_PSOC_4100_FAMILY_DATASHEET_PROGRAMMABLE_SYSTEM-ON-CHIP.pdf) the micro controller has an internal temperature sensor. Page 7: _Temperature Sensor PSoC 4100 has one on-chip temperature sensor This consists of a...

Changed "auto start = millis()" to "unsigned long start = millis()" It wouldn´t compile. Arduino complained that `start` was never defined. So I looked at why and it had something...

Everything is in the title. I select `Examples>Basic>serial>TX_test` and hit 'Compile'. This gives the following error: ``` C:\Users\Mbl\Documents\Arduino\hardware\CubeCell\ASR650x-Arduino\libraries\Basics\src\softSerial.cpp: In static member function 'static void softSerial::receiverBegin()': C:\Users\Mbl\Documents\Arduino\hardware\CubeCell\ASR650x-Arduino\libraries\Basics\src\softSerial.cpp:129:7: error: 'start' does not...

I think fracPart function has an issue. Imagine Val = 1.027 and n=3. Result is 27 and not 027. I think fracPart can't return an integer but a string. Then...

Serial.read(serialBuffer,TIMEOUT) worked well on stand alone application , but size = Serial.read(serialBuffer,TIMEOUT) always return 0 under lorawan example (disable AT command) For example : Lorawan void processCmd() { size =...

Hello, I would like to know if it is possible to set a timeout for the Join procedure in order to abort the execution when no messages are received. As...

Did someone manage to get std::queue working? It wont compile due to a cascade of errors. ``` #include #include std::queue test; void setup() { // write your initialization code here...