Arduinomed.com Announcement
I write to announce the launching of a free Web Portal at arduinomed.com . This online educational resource is dedicated to exploring the Arduino microcontroller platform for medical instrumentation development. Please visit arduinomed.com for more information.
D John Doyle MD PhD DPhil
Professor Emeritus (Anesthesiology)
Cleveland Clinic / Case Western Reserve University
623-632-8315 | djdoyle@hotmail.com | danieljohndoyle.com
xfpd
January 9, 2024, 2:15am
2
Use this: arduinomedical.homesteadcloud.com
Many users have been making PO2 meters and will be happy to see this... and ChatGPT.
Resolves to awsglobalaccelerator dot com - amazon... probably spam.
https://docs.aws.amazon.com/global-accelerator/latest/dg/introduction-how-it-works.html
Not sure why this is not working for you. Try arduinomed.com or arduinomedical.homestead.com
The alternative URL should be arduinomedical.homesteadcloud.com
Sorry ...
xfpd
January 9, 2024, 2:43am
5
When you present code on your web site, put it in any monospace font, and observe nested indentation... for example...
NOT this:
char bang='!';
void setup() {
Serial.begin(9600);
Serial.print(bang);
}
void loop()
{
}
... rather...
char bang = '!';
void setup() {
Serial.begin(9600);
Serial.print(bang);
}
void loop() {
}
Proof read your documents...
MedunoLink
megunolink
When you present code on your website, put it in any monospace font, and observe nested indentation... for example...
Great suggestion ... much appreciated ... I will try to make these corrections and add new material as time permits.
John
system
Closed
July 7, 2024, 4:09am
7
This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.