📜  radiohead (1)

📅  最后修改于: 2023-12-03 15:19:41.443000             🧑  作者: Mango

Radiohead

Radiohead is an English rock band formed in 1985 in Abingdon, Oxfordshire. The band consists of Thom Yorke (lead vocals, guitar, piano), Jonny Greenwood (lead guitar, keyboards, other instruments), Ed O'Brien (guitar, backing vocals), Colin Greenwood (bass), and Phil Selway (drums, percussion). Radiohead became one of the most critically acclaimed and influential bands of the 1990s and 2000s, known for their experimental approach to rock music and their socially and politically conscious lyrics.

Discography

Radiohead has released nine studio albums, one live album, and numerous singles and music videos. Their discography includes:

  1. Pablo Honey (1993)
  2. The Bends (1995)
  3. OK Computer (1997)
  4. Kid A (2000)
  5. Amnesiac (2001)
  6. Hail to the Thief (2003)
  7. In Rainbows (2007)
  8. The King of Limbs (2011)
  9. A Moon Shaped Pool (2016)
Programming References

Radiohead is also the name of a popular open-source library for controlling various kinds of Arduino-compatible wireless communication modules, such as nRF24L01+, RFM69, and LoRa modules. This library allows you to send and receive data between two Arduinos or between an Arduino and a computer through radio frequencies. The Radiohead library supports a variety of modulation types and data rates, making it useful for both short-range and long-range wireless communication.

Here's an example code snippet for using the Radiohead library to send a message from one Arduino to another Arduino:

#include <RH_ASK.h>

RH_ASK driver;

void setup() {
  Serial.begin(9600);
  if (!driver.init()) {
    Serial.println("Radiohead library initialization failed");
  }
}

void loop() {
  const char* message = "Hello, world!";
  driver.send((uint8_t*)message, strlen(message));
  driver.waitPacketSent();
  delay(5000);
}
Conclusion

Whether you're a fan of rock music or of wireless communication, there's something to appreciate about Radiohead. So go ahead and give their music a listen, or try out the Radiohead library in your next Arduino project!