Main public logs

From Pessin randon wiki

Combined display of all available logs of Pessin randon wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 14:35, 3 October 2025 Exf talk contribs created page Lähettimen lähdekoodi v1 (Created page with "Lähettimen lähdekoodi V1<syntaxhighlight lang="c#"> #include <RH_ASK.h> #include <SPI.h> RH_ASK driver(1000); #define TX_PIN 12 #define DIP1 2 #define DIP2 3 #define DIP3 4 #define DIP4 5 byte crc8_dallas(const String &data) { byte crc = 0x00; for (int i = 0; i < data.length(); i++) { crc ^= data[i]; for (int j = 0; j < 8; j++) { crc = (crc & 0x80) ? (crc << 1) ^ 0x31 : (crc << 1); } } return crc; } void setup() { driver.init(); pinMod...") Tag: Visual edit