RF modules can't receive multiple signals?

This page summarizes the projects mentioned and recommended in the original post on /r/arduino

InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
  • RadioHead

    Version of RadioHead library for Teensy boards

  • //Transmitter code /* Reference: https://lastminuteengineers.com/433mhz-rf-wireless-arduino-tutorial/ http://www.airspayce.com/mikem/arduino/RadioHead/ */ #include #include // Not actually used but needed to compile RH_ASK driver; char xData[32] = ""; char yData[32] = ""; String msgX, msgY; void setup() { Serial.begin(9600);  // Debugging only if (!driver.init()) Serial.println("init failed"); } void loop() { // for debugging int xAxis = analogRead(A1);  // Read Joysticks X-axis int yAxis = analogRead(A0);  // Read Joysticks Y-axis Serial.print("X-axis: "); Serial.print(xAxis); Serial.print("\n"); Serial.print("Y-axis: "); Serial.println(yAxis); Serial.print("\n\n");   msgX = analogRead(A1);   msgY = analogRead(A0);   // X value msgX.toCharArray(xData,5); driver.send((uint8_t *)xData, strlen(xData)); driver.waitPacketSent(); delay(10);   // Y value msgY.toCharArray(xData,5); driver.send(yData, strlen(xData)); driver.waitPacketSent(); Serial.println(xData); delay(1000); }

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • The Advantages of Bun: When to Choose it Over Node.js 🔥

    1 project | dev.to | 13 May 2024
  • I built an online PDF management platform using open-source software

    3 projects | news.ycombinator.com | 12 May 2024
  • Ggml: Add Flash Attention

    1 project | news.ycombinator.com | 13 May 2024
  • Barkour Robot: Agile Quadruped Robots by Google DeepMind

    1 project | news.ycombinator.com | 13 May 2024
  • Arrow Flight SQL in Apache Doris for 10X faster data transfer

    2 projects | dev.to | 12 May 2024