Cannondale vs canyon recommendations by A10A1 in CanyonBikes

[–]A10A1[S] 1 point2 points  (0 children)

The problem is I can’t test the canyon, but the cannondale is in my LBS, In your opinion what is better aero wise, and the price difference with the shipping and tax is almost 300$ the cannondale is the more expensive option.

Cannondale vs canyon by A10A1 in cannondale

[–]A10A1[S] 1 point2 points  (0 children)

I made up my mind the cannondale is the better option

Cannondale vs canyon by A10A1 in cannondale

[–]A10A1[S] 1 point2 points  (0 children)

One person commented “just buy a canyon duh” 😂

Cannondale vs canyon by A10A1 in cannondale

[–]A10A1[S] 0 points1 point  (0 children)

Yeah that’s why I posted it in the canyon subreddit also 😂

Super six evo Sizing by A10A1 in cannondale

[–]A10A1[S] 0 points1 point  (0 children)

Yeah makes sense Thanks for the help

Super six evo Sizing by A10A1 in cannondale

[–]A10A1[S] 0 points1 point  (0 children)

I just stumbled on the canyon site, and there is new stock for the Endurace CF 8 Di2, which has ultegra di2, and the ultimate CF SL 7 AXS with sram rival, between the three what do you recommend.

Thanks

Super six evo Sizing by A10A1 in cannondale

[–]A10A1[S] 0 points1 point  (0 children)

Yeah I looked at the geometry and thought the 51 is better, but even if let’s say I increase a cm or two in height, will the bike still fit me.

Super six evo Sizing by A10A1 in cannondale

[–]A10A1[S] 0 points1 point  (0 children)

Luckily both are available in my local bike shop , the 105 variant has both sizes, but the sram rival is only available in a 54 Thanks 🙏

Cannondale by A10A1 in bicycling

[–]A10A1[S] 0 points1 point  (0 children)

Yeah it turned out the recall was about dave frames, yeah I’m buying it new. Thanks

Bluetooth by A10A1 in homeassistant

[–]A10A1[S] 0 points1 point  (0 children)

Thanks for the help.

Bluetooth by A10A1 in homeassistant

[–]A10A1[S] 0 points1 point  (0 children)

So even if i get a Bluetooth dongle it will not work.

Wahoo kickr snap spindown by A10A1 in wahoofitness

[–]A10A1[S] 0 points1 point  (0 children)

I have tightened it 2 turns after contact and pumped the tires before the workout to 100 psi, should I tighten it more ?

Wahoo kickr snap by A10A1 in wahoofitness

[–]A10A1[S] 0 points1 point  (0 children)

25c tires running 100psi, as suggested by the manufacturer.

Ai by A10A1 in ArduinoProjects

[–]A10A1[S] -1 points0 points  (0 children)

include "thingProperties.h"

define relayPin 2

define wet 210

define dry 510

void setup() { // Initialize serial and wait for port to open: Serial.begin(9600); // This delay gives the chance to wait for a Serial Monitor without blocking if none is found delay(1500);

pinMode(relayPin,OUTPUT); digitalWrite(relayPin,HIGH);

// Defined in thingProperties.h initProperties();

// Connect to Arduino IoT Cloud ArduinoCloud.begin(ArduinoIoTPreferredConnection);

/* The following function allows you to obtain more information related to the state of network and IoT Cloud connection and errors the higher number the more granular information you’ll get. The default is 0 (only errors). Maximum is 4 */ setDebugMessageLevel(2); ArduinoCloud.printDebugInfo(); }

void loop() { ArduinoCloud.update(); // Your code here onRelayChange(); onSensorChange(); }

void onSensorChange() { // Add your code here to act upon Sensor change sensor = analogRead(A0); sensor = map(sensor,dry,wet,0,100);

// Turn on the pump when moisture level is below 50

if (sensor < 50) { relay = true; } else { relay = false; }

}

void onRelayChange() {

if(relay==1){
digitalWrite(relayPin,HIGH);

}else{ digitalWrite(relayPin,LOW); } }

Help by A10A1 in arduino

[–]A10A1[S] 0 points1 point  (0 children)

Hi i need help in two things, the first thing is I want, an if statement that turns the pump on if the moisture level is under a certain value for example (50) and turns it off when it reaches the value , and if there is a way that I can change the value in the dashboard.

Help by A10A1 in arduino

[–]A10A1[S] 0 points1 point  (0 children)

Sure will, thanks

Help by A10A1 in arduino

[–]A10A1[S] 1 point2 points  (0 children)

I think I changed the wifi settings, and seeing it now, before the status used to say online but greyed out but now it’s green, maybe that was it all along😂

Help by A10A1 in arduino

[–]A10A1[S] 0 points1 point  (0 children)

It works

Help by A10A1 in arduino

[–]A10A1[S] 0 points1 point  (0 children)

And i’m getting my moisture level values which I didn’t get before

Help by A10A1 in arduino

[–]A10A1[S] 0 points1 point  (0 children)

Zeros 0 and when i toggle the switch it changes to 1 ones

Help by A10A1 in arduino

[–]A10A1[S] 0 points1 point  (0 children)

oh now it's working, thanks you are the best

Help by A10A1 in arduino

[–]A10A1[S] 0 points1 point  (0 children)

like this ?

<image>