Skip to content

pa-pa/AskSinPP

Folders and files

NameName
Last commit message
Last commit date

Latest commit

21bab8b · Jul 7, 2024
Jul 7, 2024
Oct 23, 2023
Sep 22, 2022
Nov 5, 2019
Jan 13, 2021
May 7, 2024
May 8, 2024
Oct 12, 2023
Sep 2, 2016
Feb 7, 2021
Oct 14, 2023
Sep 21, 2021
Oct 12, 2023
Oct 12, 2023
Jan 15, 2024
May 11, 2021
Jan 3, 2023
Jan 23, 2020
Sep 12, 2023
Jan 20, 2019
Feb 15, 2021
Feb 5, 2021
Aug 5, 2022
Jun 1, 2023
Oct 4, 2019
May 3, 2023
Apr 27, 2023
May 13, 2021
Jul 6, 2017
Jul 6, 2017
May 28, 2019
Jun 29, 2020
Jul 13, 2022
Jan 22, 2017
Mar 17, 2023
Feb 12, 2022
Jan 24, 2024
May 29, 2023
Feb 12, 2021
Jan 16, 2019
May 11, 2021
Jul 7, 2024
Oct 22, 2020
Feb 7, 2024
Dec 27, 2022
Dec 28, 2022
May 29, 2023
Sep 20, 2021
Jul 14, 2021
Oct 6, 2019
Apr 20, 2020
May 3, 2020
Aug 10, 2021
Oct 4, 2021
Jun 15, 2022
Sep 22, 2022
Dec 30, 2019
Oct 5, 2020
Oct 19, 2022
Oct 19, 2022
Sep 12, 2018
Jan 15, 2024

Repository files navigation

AskSin++ .github/workflows/build-sketches.yml

C++ implementation of the AskSin protocol

  • easy configuration of the device channels by using templates
  • direct eeprom access for the channel data
  • AES signature support
  • Supported MCU:

Required additional Arduino libraries:

  • EnableInterrupt
    • For ATMega644 and ATMega1284 the PR #49 needs to be included
  • Low-Power
    • For ATMega644 and ATMega1284 the PR #57 needs to be included

Optional required Sensor Libraries

Enable AES Support

To enable the AES signature support USE_AES needs to be defined. In addition the default key and the default key index has to provided with HM_DEF_KEY and HM_DEF_KEY_INDEX.

#define USE_AES
#define HM_DEF_KEY 0x01,0x02,0x03,0x04,0x05,0x06,0x07,0x08,0x09,0x0a,0x0b,0x0c,0x0d,0x0e,0x0f,0x10
#define HM_DEF_KEY_INDEX 0

In FHEM you can get the key from the hmKey, hmKey2, hmKey3 attributes of the VCCU. The index is the key number multiplied by 2.

Extra Defines for Configuration

All defines has to set in the sketch before any header file is included.

  • USE_WOR - enables WOR listening during idle (burst devices)
  • USE_CCA - enable Clear Channel Assessment / Listen Before Talk
  • DEVICE_CHANNEL_COUNT - set number of device channels, skip calculation
  • USE_HW_SERIAL - generate device id and serial from cpu identifier (ATmega644, ATmega1284, STM32F1 only)
  • USE_OTA_BOOTLOADER - read device id and serial from the OTA bootloader
  • USE_OTA_BOOTLOADER_FREQUENCY - reuse the CC1101 frequence setting from the bootloader
  • HIDE_IGNORE_MSG - do not show ignore-packet dumps of received messages (that are not for our device)

Defines to reduce code size

The following defines can be used to reduce the size of the code. All defines has to set in the sketch before any header file is included.

  • SENSOR_ONLY - save some byte by exclude code for actor devices
  • NORTC - removes code for RTC support
  • NOCRC - removes CRC calculation during startup - The EEPROM will no longer initialized when channel configuration is changed. A extra RESET is needed to initialize it again.
  • SIMPLE_CC1101_INIT - simple CC1101 initialization - No error reporting in case of errors.
  • NDEBUG - no serial (debug) output; no hardware serial initialized/used at all

Alternative Device RESET Method

Normally, a device can be reset to its default settings by pressing and holding down the config button for at least 6 seconds. Alternatively, another reset method can be used with ResetOnBoot.h without pressing the config button (i.e. for devices in hard to reach places):

  • to reset, reboot the device twice within 4 seconds after startup
    • explained in detail:
      • startup: the device led blinks with 5 Hz the first 4 seconds
      • if the device is restarted within this time, the device led blinks with 10 Hz for 4 seconds
      • only if the device is restarted again within this time, the device will do a RESET , otherwise it will proceed normal operation
  • implemented in HM-LC-SW1-BA-PCB.ino to demonstrate the usage
  • at least, an automated pairing can be triggered by uncommenting line #113